home / mcp / fastmcp quickcalc server
A live HTTP MCP server exposing add and subtract functions for quick, math-powered automation.
Configuration
View docs{
"mcpServers": {
"isaramadunika-fast-mcp": {
"url": "https://web-production-de9a.up.railway.app/mcp/",
"headers": {
"PYTHONPATH": "path/to/your/project"
}
}
}
}FastMCP QuickCalc Server provides two simple math endpoints exposed over MCP: add and subtract. It runs as an HTTP MCP service and can also be started locally via Python, making it convenient for testing, demos, and automation tasks that need quick arithmetic operations.
You can access the add and subtract functions through any MCP client by pointing the client at the server URL. Use add(a, b) to compute the sum of two integers and subtract(a, b) to compute the difference (first parameter minus the second). These operations are available over HTTP for easy deployment and can be integrated into your workflows or AI assistants.
Prerequisites: Python 3.11 or newer, and a terminal or command prompt.
Step by step setup for local development and testing.
Add two integers: returns the sum of a and b.
Subtract the second integer from the first: returns a - b.