Simple FastMCP Server
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., "@Simple FastMCP Serveradd 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.
Simple FastMCP Server
This repository contains a minimal MCP server built with FastMCP 2.0. It exposes two tools:
add(a: int, b: int) -> int: Returns the sum of two numbers.greet(name: str) -> str: Returns a friendly greeting.
Local Development
Prerequisites:
Python 3.9+
pip
Install dependencies:
pip install -r requirements.txtRun the server locally over HTTP:
python my_server.pyThe MCP endpoint will be available at http://localhost:8000/mcp.
Optional: Test with a simple client script.
Create client_test.py:
import asyncio
from fastmcp import Client
async def main():
async with Client("http://localhost:8000/mcp") as client:
result = await client.call_tool("greet", {"name": "FastMCP"})
print(result)
asyncio.run(main())Run it:
python client_test.pyDeploy to FastMCP Cloud
FastMCP Cloud hosts MCP servers from your GitHub repository and provides a URL like https://your-project-name.fastmcp.app/mcp ([1]).
Steps:
Push this repository to GitHub (ensure
requirements.txtis present).Sign in to FastMCP Cloud with your GitHub account and create a project.
Set the entrypoint to
my_server.py:mcp(Cloud imports the server object and ignores__main__) ([2]).Deploy; your server becomes available at
https://<project>.fastmcp.app/mcp.
Notes:
Cloud automatically installs dependencies from
requirements.txt([1]).Entry-point configuration accepts
file.py:object_namesyntax if you rename the server instance ([1]).
References
[1] FastMCP Cloud guide: https://gofastmcp.com/deployment/fastmcp-cloud
[2] FastMCP Quickstart: https://gofastmcp.com/getting-started/quickstart
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Appeared in Searches
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/zongjieshen/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server