| name | materials-databases |
| description | Expert assistant for accessing materials databases (AFLOW and Materials Project) - query crystal structures, materials properties, thermodynamic data, and computational results from comprehensive databases |
| allowed-tools | ["*"] |
Materials Databases Access Skill
You are an expert assistant for accessing and querying materials science databases, specifically AFLOW and Materials Project. Help users retrieve crystal structures, materials properties, and computational data efficiently.
Overview
This skill enables access to two major materials databases:
-
AFLOW (Automatic Flow for Materials Discovery)
- 3.5+ million calculated materials
- Crystal structures, thermodynamic properties, elastic properties
- No API key required for basic access
- REST API with simple URL-based queries
-
Materials Project (MP)
- 150,000+ inorganic compounds
- Electronic structure, phonons, elasticity, surfaces, batteries
- Requires free API key
- Python client library (mp-api) with rich functionality
Installation Requirements
Materials Project (mp-api)
pip install mp-api
conda install -c conda-forge mp-api
AFLOW
AFLOW uses REST API - no Python package installation required. However, for convenience:
pip install requests
pip install aflow
Additional Recommended Packages
pip install pymatgen ase
pip install pandas numpy matplotlib
API Key Setup
Materials Project API Key
-
Get an API key:
-
Set up authentication:
Option A: Environment variable (recommended)
export MP_API_KEY="your_api_key_here"
Option B: Configuration file
echo '{"MAPI_KEY": "your_api_key_here"}' > ~/.config/.mpapi.json
Option C: Pass directly in code
from mp_api.client import MPRester
with MPRester("your_api_key_here") as mpr:
pass
AFLOW
No API key required - AFLOW API is publicly accessible.
Core Functionality
Materials Project - Common Queries
Search by formula:
from mp_api.client import MPRester
with MPRester(api_key="YOUR_API_KEY") as mpr:
docs = mpr.materials.summary.search(formula="Si")
docs = mpr.materials.summary.search(
formula="Fe2O3",
fields=["material_id", "formula_pretty", "band_gap", "energy_per_atom"]
)
Search by material ID:
with MPRester() as mpr:
structure = mpr.get_structure_by_material_id("mp-149")
doc = mpr.materials.summary.get_data_by_id("mp-149")
Search by criteria:
with MPRester() as mpr:
docs = mpr.materials.summary.search(
band_gap=(1, 3),
elements=["O", "Ti"],
num_elements=2
)
docs = mpr.materials.summary.search(
energy_above_hull=(0, 0.01),
fields=["material_id", "formula_pretty", "energy_above_hull"]
)
Available data types:
materials.summary - General materials properties
materials.thermo - Thermodynamic data
materials.electronic_structure - Band structures, DOS
materials.phonon - Phonon band structures
materials.elasticity - Elastic tensors
materials.surface_properties - Surface energies
molecules - Molecular structures and properties
AFLOW - REST API Queries
Basic URL structure:
http://aflowlib.duke.edu/AFLOWDATA/ICSD_WEB/<system>/<file>?<directives>
Common queries using REST:
import requests
url = "http://aflowlib.duke.edu/AFLOWDATA/ICSD_WEB/FCC/Ag1/?keywords"
response = requests.get(url)
data = response.text
url = "http://aflowlib.duke.edu/AFLOWDATA/ICSD_WEB/FCC/Ag1/?enthalpy_formation_atom"
response = requests.get(url)
url = "http://aflowlib.duke.edu/search/API/?species(Au),Egap(5*),catalog(ICSD)"
response = requests.get(url)
Using aflow Python package (optional):
import aflow
results = aflow.search(filter='species(Au),Egap(5*)')
for result in results:
print(result.enthalpy_formation_atom)
print(result.Egap)
structure = result.atoms
Common AFLOW directives:
?keywords - List all available properties
?enthalpy_formation_atom - Formation enthalpy per atom
?Egap - Band gap
?volume_cell - Unit cell volume
?geometry - Crystal structure (POSCAR format)
?files - List all available files
AFLUX search syntax:
species(element1,element2) # Chemical system
Egap(min*,max*) # Band gap range (eV)
enthalpy_formation_atom(min*,max*) # Formation enthalpy range
catalog(ICSD) # Database catalog
Workflow Guidance
When to Use Materials Project
- You need electronic structure data (band structures, DOS, Fermi surfaces)
- Battery materials research (voltage, capacity calculations)
- Surface properties and adsorption energies
- Detailed phonon calculations
- Integration with pymatgen workflows
- Phase stability analysis (phase diagrams, energy above hull)
When to Use AFLOW
- Large-scale materials screening (millions of entries)
- Elastic properties and mechanical data
- No API key setup possible/desired
- ICSD-based structures (experimental references)
- Quick property lookups (simple REST calls)
Combining Both Databases
from mp_api.client import MPRester
import requests
with MPRester() as mpr:
mp_docs = mpr.materials.summary.search(
formula="TiO2",
fields=["material_id", "band_gap", "energy_per_atom"]
)
aflow_url = "http://aflowlib.duke.edu/search/API/?species(Ti,O),nspecies(2)"
aflow_data = requests.get(aflow_url).json()
Best Practices
-
Use specific queries - Request only needed fields to reduce data transfer
docs = mpr.materials.summary.search(
formula="Li",
fields=["material_id", "formula_pretty", "band_gap"]
)
-
Paginate large results - Use chunk_size for large queries
docs = mpr.materials.summary.search(
elements=["O"],
num_chunks=10,
chunk_size=1000
)
-
Cache results locally - Save API results to avoid repeated queries
import pickle
with open("mp_results.pkl", "wb") as f:
pickle.dump(docs, f)
-
Handle structures properly - Convert between formats as needed
from pymatgen.io.ase import AseAtomsAdaptor
atoms = AseAtomsAdaptor.get_atoms(structure)
structure = AseAtomsAdaptor.get_structure(atoms)
-
Check API status - Materials Project has rate limits (typically generous)
Error Handling
from mp_api.client import MPRester
from mp_api.client.core import MPRestError
try:
with MPRester() as mpr:
docs = mpr.materials.summary.search(formula="InvalidFormula")
except MPRestError as e:
print(f"API Error: {e}")
except Exception as e:
print(f"Unexpected error: {e}")
Common Tasks
Task 1: Find Band Gap of a Material
with MPRester() as mpr:
docs = mpr.materials.summary.search(
formula="GaN",
fields=["material_id", "band_gap", "is_gap_direct"]
)
for doc in docs:
print(f"{doc.material_id}: {doc.band_gap} eV (direct: {doc.is_gap_direct})")
import requests
url = "http://aflowlib.duke.edu/search/API/?species(Ga,N),Egap"
response = requests.get(url)
Task 2: Get Crystal Structure
with MPRester() as mpr:
structure = mpr.get_structure_by_material_id("mp-149")
structure.to(filename="POSCAR")
url = "http://aflowlib.duke.edu/AFLOWDATA/ICSD_WEB/FCC/Ag1/?geometry"
poscar = requests.get(url).text
Task 3: Screen for Stable Materials
with MPRester() as mpr:
docs = mpr.materials.summary.search(
elements=["O"],
energy_above_hull=(0, 0.05),
band_gap=(1.0, 4.0),
num_elements=(2, 3),
fields=["material_id", "formula_pretty", "band_gap", "energy_above_hull"]
)
References
- See
references/materials-project.md for detailed MP API documentation
- See
references/aflow.md for AFLOW REST API and AFLUX syntax
- See
examples/ for complete working scripts
Key Points
- Materials Project requires API key (free); AFLOW does not
- MP has better Python integration; AFLOW uses REST API
- MP: 150k materials, rich electronic/phonon data; AFLOW: 3.5M materials, elastic properties
- Always specify fields in MP queries for efficiency
- Use pymatgen for structure manipulation and analysis
- Both databases are continuously updated with new calculations