Steel Brain
MCP serverAI & modelsTrade-verified steel grade properties, substitution verdicts, and mill-cert guidance for AI agents.
Available today. Use it from your connected AI after setup.
No other account needed.
Add ahel to your AI once: Claude, ChatGPT, Cursor, Claude Code or Codex. Then ask it to use this.
Then ask your AI: use Steel Brain
Install Steel Brain
The server’s own address, for the clients that take one directly. Or connect ahel onceand every client you use reads it from one address, with the account kept on ahel rather than in each client’s config.
Claude Code
claude mcp add --transport http --scope user steel-brain 'https://api.steelbrain.dev/mcp'Run it once in your project, then open /mcp to approve any sign-in the server asks for.
Claude Desktop
https://api.steelbrain.dev/mcpAdd a custom connector in Settings, paste this address, and approve the sign-in.
Cursor
cursor://anysphere.cursor-deeplink/mcp/install?name=steel-brain&config=eyJ1cmwiOiJodHRwczovL2FwaS5zdGVlbGJyYWluLmRldi9tY3AifQ==Open the link and Cursor adds the server at that address.
ChatGPT
https://api.steelbrain.dev/mcpIn Settings, enable Developer mode, create an MCP app, and paste this address. Your plan and workspace must allow custom apps.
Codex
codex mcp add steel-brain --url 'https://api.steelbrain.dev/mcp'Run it once, then sign in with codex mcp login steel-brain if the server asks for an account.
From the project's README
As published by dryow1/steel-brain in README.md.
An MCP server providing steel domain knowledge to AI agents — grade properties, substitution verdicts, and mill-cert guidance, delivered as MCP tools your agent can call.
Also available as a REST API at https://api.steelbrain.dev.
MCP server
Steel Brain is a Model Context Protocol server. It exposes three MCP tools, over remote streamable HTTP (no install) or local stdio:
| MCP Tool | What it does |
|---|---|
grade_lookup | Properties, chemistry, forms, applications, weldability for a steel grade. Aliases resolved (4140 = 42CrMo4 = SCM440; S355 = ST52). |
substitution_check | Given from_grade, to_grade, application, returns a verdict (valid / conditional / invalid) with reasoning on whether one grade can substitute another. |
cert_guide | Which mill certificate applies for a grade + use case (EN 10204 3.1/3.2, class certs ABS/DNV/LR/BV/NK) and what to check. |
Remote (no install, free)
Point any MCP client that supports streamable HTTP at:
https://api.steelbrain.dev/mcp
{
"mcpServers": {
"steel-brain": { "type": "http", "url": "https://api.steelbrain.dev/mcp" }
}
}
Claude Code: claude mcp add --transport http steel-brain https://api.steelbrain.dev/mcp
No API key needed. There is a shared daily cap to keep the server healthy.
Local (stdio)
pip install -r requirements.txt
python -m steel_brain.mcp_server
Starts the MCP server on stdio transport, ready for any MCP client (Claude Desktop, Claude Code, or any MCP-compatible agent).
Example MCP client config
{
"mcpServers": {
"steel-brain": {
"command": "python",
"args": ["-m", "steel_brain.mcp_server"]
}
}
}
Built with the official MCP SDK (mcp package), registering three tools via the standard MCP tool interface.
Why Steel Brain
LLMs guess at steel. They will tell you 4140 annealed can stand in for 4140 pre-hardened, and scrap the job. Steel Brain answers from a human-verified knowledge base built by a working steel trader, and returns an honest "not in knowledge base" rather than a confident guess.
The valuable part is the substitution and cert logic:
- 4140RB to 4140QT (annealed vs pre-hardened): invalid, same alloy, opposite heat-treat
- 316L to 304L for marine: invalid, different corrosion class
- EH36 to S355 structural: valid one way, conditional the other
- Seamless vs ERW for pressure service: never interchangeable
Coverage
23 grades across carbon, alloy, stainless. Round bar, hollow bar, plate, pipe. 39 substitution rules, 4 cert guides.
REST API (alternative to MCP)
Same knowledge over REST at https://api.steelbrain.dev :
curl "https://api.steelbrain.dev/v1/grade/4140QT" -H "X-API-Key: YOUR_KEY"
curl "https://api.steelbrain.dev/v1/substitution?from_grade=316L&to_grade=304L&application=machined" -H "X-API-Key: YOUR_KEY"
Free tier at launch. Contact: dryow.jt@gmail.com
Honesty by design
- Grade properties: published-standard ranges (ASTM/EN/JIS/API/ABS), labelled as such.
- Substitution + cert logic: trade-verified, dated rulings from a working trader.
- Unknown grades: honest "not in knowledge base," never fabricated.
Development
python -m pytest tests/ # 15 tests (10 acceptance + 5 domain-safety guards)
License
Code: MIT (see LICENSE). Knowledge base (kb/): proprietary (see NOTICE).
Signals
- Last commit
- Sep 2026
Advanced
- Delivery
- steel-brain MCP server → your ahel connector (mcp.ahel.ai) → your AI.
- Catalog kind
- mcp-server
- Key
io-github-dryow1-steel-brain- Source
- github.com/dryow1/steel-brain
- Hosted endpoint
https://api.steelbrain.dev/mcp