A Model Context Protocol server for Axiom Lean Engine — exposes Lean verification and manipulation tools to AI agents.
-
Create a free API key: https://axle.axiommath.ai/app/console.
-
Add the MCP server to your client:
Claude Code:
Replace your_api_key_here with the API key you created in step 1:
claude mcp add axle -e AXLE_API_KEY=your_api_key_here -- uvx --from axiom-axle-mcp axle-mcp-serverOther MCP clients (Cursor, Windsurf, Claude Desktop, VS Code, Cline, etc.):
Add the following to your client's MCP config file. Replace your_api_key_here
with the API key you created in step 1:
{
"mcpServers": {
"axle": {
"command": "uvx",
"args": ["--from", "axiom-axle-mcp", "axle-mcp-server"],
"env": {
"AXLE_API_KEY": "your_api_key_here"
}
}
}
}