Steel Brain
Steel Brain
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 stdio transport:
MCP Tool | What it does |
| Properties, chemistry, forms, applications, weldability for a steel grade. Aliases resolved (4140 = 42CrMo4 = SCM440; S355 = ST52). |
| Given from_grade, to_grade, application, returns a verdict (valid / conditional / invalid) with reasoning on whether one grade can substitute another. |
| 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. |
Running the MCP server
pip install -r requirements.txt
python -m steel_brain.mcp_serverStarts 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.
Related MCP server: simpson-strong-agent
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).
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceMCP server for Agent Zone — vendor-neutral infrastructure knowledge, K8s validation, and execution templates for AI agents. 200+ articles, 10 tools, no API key required.10MIT
- AlicenseNot gradedqualityDmaintenanceHeadless MCP server for Simpson Strong-Tie product data. Provides AI agents with structural connector lookups, load calculations, code compliance verification, and engineering specifications.MIT
- FlicenseNot gradedqualityDmaintenanceMCP server that exposes CAD geometry reasoning over STEP files to LLMs, allowing natural language queries about parts, assemblies, dimensions, holes, and mass properties.
- AlicenseNot gradedqualityBmaintenanceA local MCP server that gives AI coding assistants retrieval access to your personal knowledge base of books, standards, and docs, grounding their answers in sources you trust.MIT
Related MCP Connectors
MCP server exposing Kettle Logic insight articles & industry guidance as tools + resources.
AI Reasoning Cache & Consensus Layer with 11 MCP tools via Streamable HTTP.
Hosted Amazon Seller and Vendor MCP server for Claude, ChatGPT, Cursor, Codex, Gemini, Copilot.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dryow1/steel-brain'
If you have feedback or need assistance with the MCP directory API, please join our Discord server