calc-mcp-server
An MCP server that performs exact arithmetic calculations, avoiding the pitfalls of float64 and unsafe eval, with resource limits for safe execution.
README
Calculator MCP Server
<!-- mcp-name: io.github.slettmayer/calc-mcp-server -->
An MCP server that does arithmetic, exactly — so an LLM does not have to do it mentally.
One tool, calculate, evaluating expressions against a hand-rolled AST allowlist. No eval(), no
sympy, no unbounded dependencies.
2 + 3 * (4 - 1) / 2 ** 2 -> 4.25
sqrt(16) + sin(pi/2) -> 5.0
123456789 * 987654321 -> 121932631112635269
Why this exists
The widely-used mcp-server-calculator package is abandoned (last commit May 2025) and declares
mcp>=1.4.1 with no upper bound. When the MCP Python SDK released v2 and removed
mcp.server.fastmcp, every uvx …@latest install of it started crashing on import — which took down
the entire MCP proxy hosting it, and every other server alongside it.
No maintained Python replacement exists. The one actively-maintained npm calculator computes in
float64, so 123456789 * 987654321 comes back as 121932631112635260 — off by 9. That is a poor
trait in a tool whose whole purpose is that the model should not be doing the arithmetic itself.
So this server:
- bounds its one dependency (
mcp[cli]>=2,<3) — the failure above cannot recur here; - keeps integers exact at any size, never coercing to float;
- bounds resource use, not just code execution — see below.
Safety
Two problems, and most calculator servers only solve the first.
Code execution. Expressions are parsed with ast.parse and walked against an explicit allowlist of
node types. Attribute is not on it, so (1).__class__.__bases__ is rejected. A Call is only
evaluated when its target is a bare name in the function allowlist, so __import__('os').system(…) is
rejected before any argument is even evaluated.
Resource exhaustion. An allowlist alone still lets 9**9**9 occupy the process for minutes on
unbounded bignum exponentiation — the incumbent hangs for over five seconds on it. Four caps close
that: expression length (500 chars), nesting depth (32), result size (4300 digits, checked on the
operands before exponentiating), and factorial argument (1000).
Full detail in docs/tech/SAFE-EVALUATION.md.
Install
uvx calc-mcp-server
Pin it. Do not add @latest — that is how the package this replaces broke.
Configure
As a stdio MCP server:
{
"mcpServers": {
"calculator": {
"command": "uvx",
"args": ["calc-mcp-server"]
}
}
}
The calculate tool
| Argument | Type | Description |
|---|---|---|
expression |
str |
The expression to evaluate |
Returns the result as a string, or a line starting with Error: explaining why the expression was
rejected. The tool never raises, so a bad expression is an answer the agent can read back rather than a
tool-call failure.
Operators — + - * / // % **, parentheses, unary +/-. ^ is accepted as a power
operator, and × · ÷ − are accepted as their ASCII equivalents (speech-to-text produces them).
Constants — pi, e, tau.
Functions — abs round min max sqrt exp log log2 log10 sin cos tan asin
acos atan atan2 degrees radians hypot floor ceil factorial gcd lcm.
Results — integer arithmetic returns an exact integer of any size. Floats are rendered at 12
significant digits, which removes IEEE-754 representation noise (0.1 + 0.2 reads 0.3, not
0.30000000000000004) while keeping far more precision than a calculator result is used at. A whole
float keeps its .0, so 8 / 2 reads 4.0 and stays distinct from the exact integer 4.
Development
uv sync
uv run pytest tests/ -v
uv run ruff check .
uv run ruff format .
See AGENTS.md for the project guide and docs/ for the full documentation set.
License
MIT — see LICENSE.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.