A Model Context Protocol server for calculating. This server enables LLMs to use calculator for precise numerical calculations. - calculate - Calculates/evaluates the given expression. - expression (string, required): Expression to be calculated When using uv no specific installation is needed. We will use uvx to directly run mcp-server-calculator. Alternatively you can install mcp-server-calculat
Add this skill
npx mdskills install githejie/mcp-server-calculatorClean documentation but significantly over-scoped permissions for a simple calculation tool
1# Calculator MCP Server23A Model Context Protocol server for calculating. This server enables LLMs to use calculator for precise numerical calculations.45### Available Tools67- `calculate` - Calculates/evaluates the given expression.8 - `expression` (string, required): Expression to be calculated910## Installation1112### Using uv (recommended)1314When using [`uv`](https://docs.astral.sh/uv/) no specific installation is needed. We will15use [`uvx`](https://docs.astral.sh/uv/guides/tools/) to directly run *mcp-server-calculator*.1617```bash18curl -LsSf https://astral.sh/uv/install.sh | sh19```2021### Using PIP2223Alternatively you can install `mcp-server-calculator` via pip:2425```bash26pip install mcp-server-calculator27```2829After installation, you can run it as a script using:3031```bash32python -m mcp_server_calculator33```3435## Configuration3637### Using uv (recommended)3839Add this to your MCP client settings:4041```json42"mcpServers": {43 "calculator": {44 "command": "uvx",45 "args": ["mcp-server-calculator"]46 }47}48```4950### Using PIP5152Alternatively add this to your MCP client settings:5354```json55"mcpServers": {56 "calculator": {57 "command": "python",58 "args": ["-m", "mcp_server_calculator"]59 }60}61```6263## License6465mcp-server-calculator is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.66
Full transparency — inspect the skill content before installing.