MCP Calculator Server
A simple Model Context Protocol (MCP) server that provides calculator functions.
## Overview
This MCP server implements basic arithmetic operations as tools that can be called by Large Language Models (LLMs) through the Model Context Protocol.
## Features
- Addition: Add two numbers together
- Subtraction: Subtract one number from another
- Multiplication: Multiply two numbers together
- Division: Divide one number by another (with validation to prevent division by zero)
## Installation
```bash
npm install
```
## Usage
### Running the server
```bash
npm run dev
```
This starts the MCP server in development mode with auto-restart on file changes.
For production:
```bash
npm start
```
### Testing with MCP Inspector
You can test the server using the MCP Inspector:
```bash
npx @modelcontextprotocol/inspector node src/index.js
```
This will open a web interface where you can:
- View available tools
- Test each calculator function with custom inputs
- See the responses from the server
## Available Tools
| Tool | Parameters | Description |
|------|------------|-------------|
| add | a: number, b: number | Adds two numbers |
| subtract | a: number, b: number | Subtracts b from a |
| multiply | a: number, b: number | Multiplies two numbers |
| divide | a: number, b: number (non-zero) | Divides a by b |
## Example Usage
When connected to an LLM through MCP, the model can call these tools to perform calculations. For example:
- To add 5 and 3, the LLM would call the `add` tool with parameters `a: 5, b: 3`
- To divide 10 by 2, the LLM would call the `divide` tool with parameters `a: 10, b: 2`
## License
MIT
MCP Calculator Server
276
Project Details
- githubpradeep/calc-mcp72
- Last Updated: 3/25/2025
Recomended MCP Servers
Postman Tool Generation Server
Lulu Print
MCP server for lulu-print-mcp - Part of the master-mcps collection
🧩
ASR Graph of Thoughts Server
The Advanced Scientific Research (ASR) Graph of Thoughts (GoT) MCP server is a highly efficient implementation of the...
🧩
AIHub
Conexión con Smithery
AnyPixel
A web-friendly way for anyone to build unusual displays
Vercel API Integration
Lightweight MCP server to give your Cursor Agent access to the Vercel API.
🧩
Kali MCP Servers
awsome kali MCPServers is a set of MCP servers tailored for Kali Linux, designed to empower AI Agents...
Vidu Video Generation Server
MCP server for Vidu video generation API
Monday.com Server
AppBuilder-SDK
appbuilder-sdk, 千帆AppBuilder-SDK帮助开发者灵活、快速的搭建AI原生应用
Weibo MCP Server
A MCP Server for Sina Weibo
Tinyman MCP Server
TinyMan MCP Server - Algorand batteries included





