Wraps the free mathjs.org API for evaluating mathematical expressions and performing calculations. Good for when you need Claude to handle arbitrary math operations without writing custom evaluation logic. Uses Pipeworx's gateway infrastructure, which hosts 673+ MCP connectors and includes an ask_pipeworx tool that maps natural language questions to the right API calls. No authentication required. The source doesn't enumerate specific tools, but mathjs.org typically handles expression parsing, unit conversions, symbolic computation, and matrix operations. You can connect to just the mathjs endpoint or use the full Pipeworx gateway if you need access to their other data sources.
Math.js MCP — wraps the mathjs.org API (free, no auth)
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"mathjs": {
"url": "https://gateway.pipeworx.io/mathjs/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Mathjs data" })
The gateway picks the right tool and fills the arguments automatically.
MIT