Sympy-MCP is a Model Context Protocol server for allowing LLMs to autonomously perform symbolic mathematics and computer algebra. It exposes numerous
If you want an AI assistant working directly with Sympy MCP, the sympy mcp mcp server is the bridge. Sympy-MCP is a Model Context Protocol server for allowing LLMs to autonomously perform symbolic mathematics and computer algebra. It exposes numerous tools from SymPy's core functionality to MCP clients for manipulating mathematical expressions and equations.
Sympy-MCP is a Model Context Protocol server for allowing LLMs to autonomously perform symbolic mathematics and computer algebra. It exposes numerous tools from SymPy's core functionality to MCP clients for manipulating mathematical expressions and equations.
Once connected, the assistant can call these 14 tools directly:
Homebrew — brew install uvCurl — curl -LsSf https://astral.sh/uv/install.sh | shSimplifier — simplify_expressionSubstitution — substitute_expressionIntegration — integrate_expressionDifferentiation — differentiate_expressionCoordinates — create_coordinate_systemDivergence — calculate_divergenceGradient — calculate_gradientDeterminant — matrix_determinantEigenvalues — matrix_eigenvaluesEigenvectors — matrix_eigenvectorsProperty — Valuecommutative — trueThe server is distributed via a container image as ghcr.io/sdiehl/sympy-mcp, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.
Developer-tool servers are usually the first ones people connect, because they turn "help me with this code" into an assistant that can actually read the repo and act on it. Sympy MCP sits in that group, and the shape of its toolset — Homebrew, Curl, Simplifier among others — tells you what it is really for. Worth comparing against the other developer tools servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.
| Tool | What it does |
|---|---|
| Homebrew | brew install uv |
| Curl | curl -LsSf https://astral.sh/uv/install.sh | sh |
| Simplifier | simplify_expression |
| Substitution | substitute_expression |
| Integration | integrate_expression |
| Differentiation | differentiate_expression |
| Coordinates | create_coordinate_system |
| Divergence | calculate_divergence |
| Gradient | calculate_gradient |
| Determinant | matrix_determinant |
| Eigenvalues | matrix_eigenvalues |
| Eigenvectors | matrix_eigenvectors |
| Property | Value |
| commutative | true |
{
"mcpServers": {
"sympy-mcp": {
"command": "/opt/homebrew/bin/uv",
"args": [
"run",
"--with",
"einsteinpy",
"--with",
"mcp[cli]",
"--with",
"pydantic",
"--with",
"sympy",
"mcp",
"run",
"/ABSOLUTE_PATH_TO_SYMPY_MCP/server.py"
]
}
}
}Configuration as documented by the project. Restart the client after saving.
Your assistant inside the workspace — read channels, search history, post messages and tame the noise.
Inbox intelligence — search, read, draft and send Gmail through your assistant with OAuth auto-setup.
Read and write Jira, Confluence, Bitbucket, JSM and Compass from your AI client — with your own permissions.
Read and send Telegram messages through your assistant — chats, channels and history via the client API.
Enables Discord bot integration with Model Context Protocol (MCP) compatible applications like Claude Desktop.
Exposes REST APIs defined by OpenAPI specifications as Model Context Protocol (MCP) tools, facilitating seamless integration into MCP-based workflows.