MCP showcase

Symbolic Math Tools for AI Agents

A small computer-algebra toolkit exposed over MCP and an OpenAPI-described REST API. Solve equations and systems analytically, simplify, expand, factor, substitute, differentiate, and integrate — from any MCP-capable client or plain HTTP.

MCP endpoint
/api/mcp
POST · Streamable HTTP
OpenAPI spec
/api/openapi.json
GET
REST base
/api/v1/{tool}
POST

Solve equation

POST /api/v1/solve_equation

Analytically solve a single equation for a variable. Accepts 'lhs = rhs' or an expression equal to zero.

curl

curl -X POST $ORIGIN/api/v1/solve_equation \
  -H 'Content-Type: application/json' \
  -d '{"equation":"x^2 - 5*x + 6 = 0","variable":"x"}'

Example gallery

12 ready-to-run problems

Click any card to load its payload into the playground above.

solve_equation

Solve equation

solve_system

Solve system

simplify

Simplify

expand

Expand

factor

Factor

substitute

Substitute

differentiate

Differentiate

integrate

Integrate