mcp-math-server
Verified Safeby Suraj-Varade
Overview
A minimal Model Context Protocol (MCP) server designed to expose basic mathematical tools to AI models.
Installation
uv run mcp-serverSecurity Notes
The server implements a single, simple 'add' function that performs basic integer arithmetic. No dynamic code execution, file system access, network calls, or hardcoded secrets are present in the provided source code. Input types are strictly defined as integers, mitigating common injection vectors. This is a very safe and minimal implementation.
Similar Servers
mcp-server-demo
This server acts as an AI assistant tool provider (MCP server) offering calculator functions, data logging, and reporting capabilities via SQLite, demonstrating how AI can interact with external services.
mcpserver_example
Provides an MCP (Mathematical Computation Protocol) server exposing a simple integer addition function as a tool.
mcp-server
This server provides a simple mathematical 'add' tool via the Multi-tool Coordination Protocol (MCP) framework, designed for integration into a larger MCP ecosystem.
mcp_calculator
A beginner-friendly Model Context Protocol (MCP) server exposing a simple calculator tool (add, subtract, multiply, divide) over WebSocket using FastAPI.