Remote MCP 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 MCP Serveradd 10 and 20"
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 MCP Server
A Python-based Model Context Protocol (MCP) server built with FastMCP that exposes mathematical operations, helper tools, and server metadata.
Features
Tools
add_two_numbers: Takes two floating-point numbersaandb, and returns their sum.generate_random_number: Generates a random integer between 1 and 100 (inclusive).
Resources
info://server_info: Contains information/metadata about the running server (name, version, capabilities, status, and supported transports).
Related MCP server: MCP Playground Server
Installation
Ensure you have Python 3.13+ and the dependencies installed:
# Install dependencies using uv (or pip)
uv syncRunning the Server
You can run the server in two modes:
1. Stdio Mode (Default)
Standard input/output mode is ideal for local integration with MCP clients (like Claude Desktop).
# Direct run
.venv\Scripts\python main.py
# Or via FastMCP CLI
.venv\Scripts\fastmcp run main.py2. SSE Mode (Remote/HTTP Mode)
To host the server as a web service accessible over HTTP via Server-Sent Events (SSE):
.venv\Scripts\fastmcp run main.py --transport sse --host 0.0.0.0 --port 8000This will start the server binding on 0.0.0.0 at port 8000.
Verification & Testing
You can use the FastMCP inspect/dev tool to view and test the tools/resources:
.venv\Scripts\fastmcp dev main.pyThis spins up a local web inspector where you can interactively invoke add_two_numbers and generate_random_number, and view the info://server_info resource.
This server cannot be deployed
Maintenance
Related MCP Connectors
This MCP server enables users to perform scientific computations regarding linear algebra and vect…
A simple MCP server built with FastMCP and python
Educational MCP server with 17 math/stats tools, visualizations, and persistent workspace
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceA basic educational MCP server that provides simple tools for mathematical calculations, text manipulation, and time retrieval. Designed for learning MCP implementation patterns and development purposes.-
- FlicenseNot gradedqualityDmaintenanceA simple educational MCP server providing basic math operations, string manipulation, and greeting functionality. Demonstrates how to implement MCP tools for learning purposes.-
- FlicenseDqualityDmaintenanceA basic MCP server that provides arithmetic calculation tools and system information retrieval capabilities, including platform, CPU, and memory details.2-
- AlicenseBqualityDmaintenanceA Python-based MCP server providing mathematical computation tools and plotting utilities for a wide range of math topics including calculus, matrix operations, statistics, and more.225MIT