
MCP Calculator Server
A simple Model Context Protocol server that evaluates mathematical expressions like 'sqrt(25) + 2**3' sent by MCP clients, with secure evaluation that only allows math functions/constants.
README
MCP Calculator Server
This project is a simple Model Context Protocol (MCP) server that evaluates mathematical expressions sent by MCP clients. It can be used with the official MCP Python client or the VSCode MCP extension.
Features
- Evaluate math expressions using Python's
math
module (e.g.,sqrt(25) + 2**3
). - Secure evaluation: only math functions/constants are available.
- Exposes a
calculate
tool via the MCP protocol. - Compatible with the Model Context Protocol VSCode extension.
Setup
-
Clone the repository and enter the directory:
git clone <your-repo-url> cd calculator-mcp
-
Create and activate a virtual environment (recommended):
python3 -m venv venv source venv/bin/activate
-
Install dependencies:
pip install -r requirements.txt
Running the MCP Server
Start the server (by default, it listens on all interfaces at port 8500, root path):
python app.py
You should see:
MCP server running on 0.0.0.0:8500 (root path)
Using the Python Client
The provided client.py
can be used to test the server:
python client.py
This will send the expression sqrt(25) + 2**3
to the server and print the result.
You can modify client.py
to send other expressions.
Using the MCP Server in VSCode
-
Install the MCP Extension:
- Open VSCode.
- Go to Extensions (
Ctrl+Shift+X
orCmd+Shift+X
). - Search for
Model Context Protocol
orMCP
and install the official extension.
-
Start the MCP server:
- Make sure
python app.py
is running.
- Make sure
-
Connect VSCode to the MCP Server:
- Open the Command Palette (
Ctrl+Shift+P
orCmd+Shift+P
). - Type
MCP: Add Server
orMCP: Connect to Server
. - Enter the server URL:
http://127.0.0.1:8500/
- Give it a name (e.g., "Calculator MCP").
- Open the Command Palette (
-
Use the MCP Tools in VSCode:
- Open the MCP sidebar (look for the MCP icon).
- Select your server.
- You should see the
calculate
tool. - Run the tool, enter a math expression, and see the result in VSCode.
Security Note
- Only math functions/constants are available to evaluated expressions.
- No access to Python built-ins or the file system.
License
MIT
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.