Click on "Install 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., "@MathServeradd 15 and 27"
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.
π MathServer β MCP Project
MathServer is a simple Model Context Protocol (MCP) server built in Python that provides math operations (addition, subtraction, multiplication, division, etc.) through an API. It is designed to be connected with MCP-compatible clients like chatbots or automation tools.
This project demonstrates how to create a custom MCP server for handling computations.
π Features
β Supports basic math operations: addition, subtraction, multiplication, division
β Written in pure Python
β Easy to extend with new math functions (power, square root, modulo, etc.)
β Works as a local MCP server that clients can connect to
β Clean project structure with virtual environment setup
π Project Structure mathserver/ βββ server.py # Main MCP math server (math logic lives here) βββ requirements.txt # Dependencies (install with pip) βββ README.md # Documentation βββ .gitignore # Ignore .env, venv, cache files
server.py β contains the Python code for math operations
requirements.txt β contains libraries to install before running
.gitignore β ignores virtual environments and secret files
π οΈ Installation
Clone the repository git clone https://github.com/your-username/mathserver.git cd mathserver
Create a virtual environment python -m venv .venv
Activate the virtual environment
Windows (Command Prompt):
.venv\Scripts\activate
Windows (PowerShell):
.venv\Scripts\Activate.ps1
Linux/Mac:
source .venv/bin/activate
Install dependencies pip install -r requirements.txt
βΆοΈ Usage
Run the math server with:
python server.py
Once running, clients can send math requests.
Example Request { "operation": "add", "numbers": [5, 10] }
Example Response { "result": 15 }
Other Supported Operations
sub β subtraction
mul β multiplication
div β division (handles divide-by-zero safely)
π§© Extending the Server
You can easily add more operations inside server.py. For example, to add power (^):
def power(a, b): return a ** b
Then update your request handler to support "operation": "power".
π€ Contributing
Contributions are welcome! π If youβd like to add new math operations, improve the server, or fix bugs:
Fork the repo
Create a feature branch (git checkout -b feature-new-operation)
Commit your changes (git commit -m "Add power operation")
Push to the branch (git push origin feature-new-operation)
Open a Pull Request