Remote Calculator FastMCP Server
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Remote Calculator FastMCP Servermultiply 12.5 by 4 and then divide the result by 2"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Remote Calculator FastMCP Server
A Model Context Protocol (MCP) server built with FastMCP specifically configured to run remotely over HTTP / SSE (Server-Sent Events).
Remote MCP clients (e.g., Claude Desktop, Cursor, LibreChat, Open WebUI, and custom MCP clients) can connect to this server across the network or internet.
🛠 Available Tools
Tool | Description | Parameters |
| Add two numbers together |
|
| Subtract |
|
| Multiply two numbers together |
|
| Divide |
|
| Generate a random integer in a range |
|
Related MCP server: Math Operations MCP Server
🚀 Running the Remote Server
Option 1: Direct Run (FastMCP Runner)
Runs on all network interfaces (0.0.0.0) by default on port 8000:
uv run python main.pyOption 2: Production ASGI Server (Uvicorn)
The Starlette ASGI application app is exported in main.py:
uv run uvicorn main:app --host 0.0.0.0 --port 8000Option 3: Using the FastMCP CLI
uv run fastmcp run main.py --transport sse --host 0.0.0.0 --port 8000⚙️ Configuration (Environment Variables)
Variable | Default | Description |
|
| Host/network interface to bind to |
|
| Port number to listen on |
|
| Transport protocol: |
🔌 Connecting Remote MCP Clients
1. Connecting via SSE (Recommended for Remote Clients)
Endpoint URL:
http://<SERVER_IP_OR_DOMAIN>:8000/sse
Example client configuration (e.g., Claude Desktop / Cursor / LibreChat):
{
"mcpServers": {
"remote-calculator": {
"url": "http://your-server-ip:8000/sse"
}
}
}2. Connecting via Streamable HTTP
If using MCP_TRANSPORT=http:
Endpoint URL:
http://<SERVER_IP_OR_DOMAIN>:8000/mcp
This server cannot be deployed
Maintenance
Related MCP Connectors
Remote MCP server exposing SMI Aware tools, resources, and skills over Streamable HTTP.
QuLab MCP remote server (Streamable HTTP) for computational science and lab tools.
This MCP server enables users to perform scientific computations regarding linear algebra and vect…
Math.js MCP — wraps the mathjs.org API (free, no auth)
Related MCP Servers
- FlicenseNot gradedqualityNot gradedmaintenanceProvides basic arithmetic calculation tools through an HTTP-accessible MCP server. Supports mathematical operations like addition with streamable responses for integration with MCP clients.-
- FlicenseNot gradedqualityDmaintenanceEnables performing arithmetic operations (add, subtract, multiply, divide, power, modulo) via natural language through HTTP SSE transport, allowing integration with Claude or other MCP clients for AI-powered calculations.-
- FlicenseNot gradedqualityDmaintenanceMCP server that offers basic arithmetic operations (addition, subtraction, multiplication, division) via HTTP.-
- AlicenseNot gradedqualityBmaintenanceEnables MCP clients to perform basic arithmetic operations such as addition, subtraction, multiplication, and division through a remotely hosted HTTP endpoint.3 npmMIT