Free high-entropy alloy (HEA) and high-entropy oxide calculator: mixing entropy, atomic-size mismatch, VEC, Miedema enthalpy, and the canonical empirical phase-prediction rules. Python library, browser app, desktop app, and MCP server.
claude mcp add hea-bench -- python -m hea-bench{
"mcpServers": {
"hea-bench": {
"command": "python",
"args": ["-m", "pytest"]
}
}
}MCP Servers overview
# hea-bench
<!-- mcp-name: io.github.dfieser/hea-bench -->
Open, interpretable tools for computing the standard **high-entropy-alloy
(HEA) and high-entropy-oxide (HEO) thermodynamic and geometric
descriptors** and the classic empirical **phase-prediction rules**, from
any composition, with no fitted model and no black box. Every number is a
transparent closed-form expression over a curated element-property table,
validated against the primary literature.
**Try it now:** <https://dfieser.github.io/hea-bench/>. No install, it runs
entirely in your browser.
[](https://doi.org/10.3390/ma19143075)
[](https://doi.org/10.5281/zenodo.20346287)
[](./LICENSE)

> **Using an AI coding agent to integrate this?** See
> [AGENTS.md](./AGENTS.md) for a machine-oriented guide to the API,
> exact return types and units, the fastest path to each task, and the
> mistakes to avoid.
## What it computes
For any composition it reports:
- **Core descriptors:** mixing entropy ΔS<sub>mix</sub>, atomic-size
mismatch δ, mean melting temperature T<sub>m</sub>, Miedema mixing
enthalpy ΔH<sub>mix</sub>, valence-electron concentration VEC,
Yang–Zhang Ω, Pauling electronegativity mismatch Δχ, Mansoori excess
entropy S<sub>E</sub>, ΔG<sub>ss</sub>, ΔG<sub>max</sub>, King Φ, Ye φ.
- **Phase-prediction rules:** Yeh entropy, Zhang δ, Guo–Liu VEC,
Yang–Zhang Ω, King Φ, Ye φ.
- **Miedema formation enthalpies** (browser/desktop apps): compound /
solid-solution / amorphous, decomposed into chemical, elastic,
structural, and topological terms.
- **High-entropy oxides** (`hea_bench.oxides` + the apps' Oxides mode):
rock-salt, perovskite, fluorite, and pyrochlore formability
descriptors over Shannon ionic radii with automatic charge-balance
oxidation-state assignment: per-sublattice configurational entropy,
cation size disorder, Goldschmidt t / octahedral μ / Bartel τ, the
fluorite radius-dispersion rule, and the pyrochlore radius-ratio
window.
Element coverage: 55 elements for alloys (Ag Al Au Be Bi Ca Ce Co Cr
Cu Dy Er Fe Ga Gd Ge Hf Ho In Ir La Li Lu Mg Mn Mo Nb Nd Ni Os Pb Pd
Pr Pt Re Rh Ru Sb Sc Si Sm Sn Sr Ta Tb Th Ti Tm U V W Y Yb Zn Zr,
covering the full experimentally active rare-earth HEA palette plus the
nuclear, solder, and HE-BMG corners); the Miedema pair table covers
75 (1484 of our 1485 pairs; the lone Th-U gap is reported, never
zeroed); the oxide module's Shannon table covers 94.
## Four ways to run it
| Surface | Where | Status |
|---|---|---|
| **Python library + CLI** | `pip install hea-bench` | done, tested |
| **Zero-install browser app** | <https://dfieser.github.io/hea-bench/> · `web/index.html` | done, Python-parity-tested |
| **Native desktop app** | a single portable `.exe`, [download (no install)](https://github.com/dfieser/hea-bench/releases/latest/download/HEA-Bench.exe) (Tauri wrapper of the same page) | done, built from the same parity-tested core |
| **MCP server for AI agents** | `pip install "hea-bench[mcp]"`, then `hea-bench-mcp` | done, seven tools over the same core |
The three surfaces share **one calculation core**. The browser/desktop
core (`web/hea-calculator-core.js`) is a pure-JS port of the Python
library, and `tests/test_web_parity.py` guarantees the two match on all
1484 binary pairs and the canonical multi-element fixtures, while
`tests/test_web_oxides_parity.py` does the same for the oxide module,
down to identical warning messages.
## Quick start (Python)
```bash
pip install hea-bench
```
```python
import hea_bench as hb
cantor = {"Co": 0.2, "Cr": 0.2, "Fe": 0.2, "Mn": 0.2, "Ni": 0.2}
hb.smix(cantor) # 13.381 J/(mol·K) = R · ln 5
hb.delta(cantor) # 3.164 % atomic-size mismatch
hb.vec(cantor) # 8.0 valence electrons
hb.mixing_enthalpy(cantor) # -4.16 kJ/mol (Miedema)
hb.omega(cantor) # 5.79 (Yang–Zhang)
hb.delta_chi(cantor) # 0.138 Pauling electronegativity mismatch
hb.s_excess(cantor) # 0.318 J/(mol·K) (Mansoori excess entropy)
hb.delta_g_max(cantor) # -8.00 kJ/mol (most-negative Miedema pair)
hb.phi_king(cantor) # 3.533 (King 2016 proxy)
hb.phi_ye(cantor) # 34.82 (Ye 2015 proxy)
# Apply the canonical rules
from hea_bench.rules import guo_vec, king_phi, yang_omega, ye_phi, zhang_delta
zhang_delta.predict(cantor) # 'single-phase'
yang_omega.predict(cantor) # 'single-phase'
guo_vec.predict(cantor) # 'FCC'
king_phi.predict(cantor) # 'solid_solution'
ye_phi.predict(cantor) # 'solid_solution'
```
These Cantor-alloy values are pinned in the test suite as the canonical
sanity check. The rules are simple empirical surrogates, fast screens
rather than predictions, so treat their output accordingly.
## Quick start (oxides)
```python
from hea_bench import oxides
# Rost 2015 "J14" entropy-stabilized rock salt
j14 = oxides.describe_rock_salt({"Mg": 1, "Co": 1, "Ni": 1, "Cu": 1, "Zn": 1})
j14["descriptors"]["s_config"] # 13.382 J/(mol·K) = R·ln 5
j14["oxidation_states"] # all 2+ by charge balance
# Jiang 2018 single-phase high-entropy perovskite
pvk = oxides.describe_perovskite({"Sr": 1}, {"Zr": 1, "Sn": 1, "Ti": 1, "Hf": 1, "Mn": 1})
pvk["descriptors"]["goldschmidt_t"] # 0.979, inside the 0.92–1.04 window
pvk["verdicts"]["bartel"] # 'perovskite' (τ = 3.72 < 4.18)
```
Each `describe_*` report carries the solved oxidation states, the
Shannon radii actually used, every descriptor, the formability
verdicts with their windows, and any warnings. See
[`examples/02_oxides_walkthrough.py`](./examples/02_oxides_walkthrough.py)
for the full tour, including the fluorite and pyrochlore screens and
oxidation-state overrides.
## Quick start (AI agents, MCP)
LLM agents hallucinate descriptor values; this server grounds them.
`hea_bench.mcp_server` exposes the calculator over the
[Model Context Protocol](https://modelcontextprotocol.io/) as seven
deterministic tools (`parse_composition`, batch `alloy_descriptors` and
`alloy_rules`, `omega_sensitivity`, `oxide_report`, `element_coverage`,
`about`). Every response carries units, the citation key of each
parametrization, and the library version, so an agent's reasoning trace
contains auditable receipts rather than bare floats.
```bash
pip install "hea-bench[mcp]"
```
Register it with any MCP client (Claude Desktop, Cursor, ...), for
example in `claude_desktop_config.json`:
```json
{ "mcpServers": { "hea-bench": { "command": "hea-bench-mcp" } } }
```
The `omega_sensitivity` tool is worth singling out: it reports the
per-pair Miedema contributions and how far Ω moves when the dominant
element's pair enthalpies are shifted within the spread of published
compilations, so an agent can ask not just for a number but for how
much to trust it.
## Quick start (browser, no install)
A self-contained HTML calculator computes every descriptor, applies all
six rules, runs the Miedema decompositions, and covers the oxide mode,
entirely client-side. Two equivalent paths:
- Open the hosted site: **<https://dfieser.github.io/hea-bench/>**. The
page is the calculator.
- Or clone the repo and open `web/index.html`. No install, no
terminal, no server.
The calculator ships its own documentation: a **Theory** view deriving
every alloy and oxide formula with citations, a grouped, filterable
**Equations** reference, and a grouped **References** bibliography.
Deep links open a view directly (`index.html#theory`,
`#equations`, `#refs`). The parity-critical math lives in
`web/hea-calculator-core.js` and is regression-checked against Python
by the two parity test suites.
## A note on Ω near ΔH<sub>mix</sub> ≈ 0
`Ω = Tm·ΔSmix / |ΔHmix|` diverges as ΔH<sub>mix</sub> → 0, so for
near-ideal alloys (|ΔH<sub>mix</sub>| ≲ 1–2 kJ/mol) the Ω *magnitude* is
extremely sensitive to the choice of Miedema pair table (sources
disagree most on Mn). The phase verdict (Ω ≫ 1.1) stays robust even when
the number does not, so read Ω qualitatively in that regime.
## Project layout
```
hea-bench/
├── src/hea_bench/
│ ├── descriptors/ ΔS_mix, δ, VEC, T_m, ΔH_mix, Ω, S_E, φ + data tables
│ ├── rules/ the six empirical phase-prediction rules
│ ├── oxides/ HEO module: families, oxidation-state solver,
│ │ Shannon radii (94 elements, vendored from pymatgen)
│ ├── composition.py formula parser, normalizer
│ ├── constants.py R = 8.314
│ └── cli.py command-line entry point
├── tests/ unit tests + BOTH Python↔JS parity suites
├── web/ landing page + self-contained calculator (+ MathJax)
├── src-tauri/ native desktop wrapper (Rust/Tauri)
├── examples/ Cantor-alloy and oxides walkthroughs (.py + .ipynb)
└── pyproject.toml
```
## Development
```bash
git clone https://github.com/dfieser/hea-bench
cd hea-bench
pip install -e ".[dev]"
python -m pytest tests/ -q # includes the Python↔JS parity test (needs Node)
```
The HTML calculator (`web/index.html` over
`web/hea-calculator-core.js`) is an independent JavaScript
implementation of the same descriptors and rules. When you modify the
Python descriptor code, update the JS core to match and re-run
`tests/test_web_parity.py` and `tests/test_web_oxides_parity.py` so the
surfaces don't drift. The element data tables inside the JS core are
generated from the Python library by `tests/data/_sync_js_tables.py`
and `tests/data/_sync_js_oxide_tables.py`. Regenerate them, never
hand-edit them.
## License
[MIT](./LICENSE). The vendored
[matminer Miedema data files](./src/hea_bench/descriptors/data/) remain
under their upstream BSD-3-Clause license, preserved at
[`deWhat people ask about hea-bench
What is dfieser/hea-bench?
+
dfieser/hea-bench is mcp servers for the Claude AI ecosystem. Free high-entropy alloy (HEA) and high-entropy oxide calculator: mixing entropy, atomic-size mismatch, VEC, Miedema enthalpy, and the canonical empirical phase-prediction rules. Python library, browser app, desktop app, and MCP server. It has 0 GitHub stars and was last updated today.
How do I install hea-bench?
+
You can install hea-bench by cloning the repository (https://github.com/dfieser/hea-bench) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is dfieser/hea-bench safe to use?
+
dfieser/hea-bench has not been audited yet by our security agent. Review the original repository on GitHub before using it in production.
Who maintains dfieser/hea-bench?
+
dfieser/hea-bench is maintained by dfieser. The last recorded GitHub activity is from today, with 0 open issues.
Are there alternatives to hea-bench?
+
Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.
Deploy hea-bench to your cloud
Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.
Maintain this repo? Add a badge to your README
Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.
[](https://claudewave.com/repo/dfieser-hea-bench)<a href="https://claudewave.com/repo/dfieser-hea-bench"><img src="https://claudewave.com/api/badge/dfieser-hea-bench" alt="Featured on ClaudeWave: dfieser/hea-bench" width="320" height="64" /></a>More MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
The fastest path to AI-powered full stack observability, even for lean teams.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!