MCP Simple Server
A minimal reference implementation of an MCP server with two basic math tools (add and multiply), designed as a starting point for learning MCP protocol and deploying remote servers to cloud platforms.
README
MCP Simple Server
A minimal, reference implementation of a Model Context Protocol server with streamable HTTP transport. Built with FastMCP following the official Anthropic MCP specification 2025-06-18. Perfect starting point for building remote MCP servers.
🎯 Purpose
This project serves as a simple, well-documented reference for developers who want to:
- Build their first MCP server
- Deploy MCP servers to cloud platforms (Railway, Heroku, Render)
- Understand the MCP protocol implementation
- Create a foundation for more sophisticated MCP solutions
Features
- ✅ Two Math Tools:
addandmultiplyfunctions - ✅ Streamable HTTP Transport: Modern MCP protocol with SSE support
- ✅ Session Management: Proper MCP initialization flow
- ✅ Remote Deployment: Railway, Heroku, Render deployment configs
- ✅ Automated Testing: Complete protocol validation and debugging tools
- ✅ Claude Desktop Integration: Ready for AI assistant integration
- ✅ Reference Implementation: Well-documented code for learning
Quick Start
Local Development
git clone https://github.com/oleksandrsirenko/mcp-simple-server.git
cd mcp-simple-server
uv sync
source .venv/bin/activate
python main.py
Server starts at: http://localhost:8000/mcp/
Test the Server
python test_server.py
Expected output:
🧪 Starting MCP Server Tests
✅ Initialize successful - Server: Simple Server
✅ Initialized notification sent
✅ Found 2 tools: add, multiply
✅ Add tool returned correct result
✅ Multiply tool returned correct result
🎉 All tests passed!
Available Tools
add(a, b)
Adds two numbers together.
Example:
{"name": "add", "arguments": {"a": 25, "b": 17}}
→ Returns: 42
multiply(a, b)
Multiplies two numbers together.
Example:
{"name": "multiply", "arguments": {"a": 8, "b": 6}}
→ Returns: 48
Manual Testing with curl
Local Testing (Development)
For testing your local development server running on localhost:8000:
1. Initialize Session
curl -X POST http://localhost:8000/mcp/ \
-H "Content-Type: application/json" \
-H "MCP-Protocol-Version: 2025-06-18" \
-H "Accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-06-18","capabilities":{"tools":{}},"clientInfo":{"name":"test-client","version":"1.0.0"}}}'
2. Send Initialized Notification
curl -X POST http://localhost:8000/mcp/ \
-H "Content-Type: application/json" \
-H "MCP-Protocol-Version: 2025-06-18" \
-H "Accept: application/json, text/event-stream" \
-H "Mcp-Session-Id: YOUR_SESSION_ID" \
-d '{"jsonrpc":"2.0","method":"notifications/initialized"}'
3. List Tools
curl -X POST http://localhost:8000/mcp/ \
-H "Content-Type: application/json" \
-H "MCP-Protocol-Version: 2025-06-18" \
-H "Accept: application/json, text/event-stream" \
-H "Mcp-Session-Id: YOUR_SESSION_ID" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/list"}'
4. Call Add Tool
curl -X POST http://localhost:8000/mcp/ \
-H "Content-Type: application/json" \
-H "MCP-Protocol-Version: 2025-06-18" \
-H "Accept: application/json, text/event-stream" \
-H "Mcp-Session-Id: YOUR_SESSION_ID" \
-d '{"jsonrpc":"2.0","id":3,"method":"tools/call","params":{"name":"add","arguments":{"a":25,"b":17}}}'
Remote Testing (Production)
For testing your deployed server, replace localhost:8000 with your deployment URL:
# Example with Railway deployment
curl -X POST https://your-app.railway.app/mcp/ \
-H "Content-Type: application/json" \
-H "MCP-Protocol-Version: 2025-06-18" \
-H "Accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-06-18","capabilities":{"tools":{}},"clientInfo":{"name":"test-client","version":"1.0.0"}}}'
Note: For comprehensive remote testing, use the automated test script:
python test_deployment.py your-app.railway.app
Deployment
Railway (Recommended)
-
Push to GitHub:
git add . git commit -m "ready for deployment" git push origin main -
Deploy to Railway:
- Go to railway.app
- Click "Deploy from GitHub repo"
- Select your repository
- Railway auto-detects Dockerfile and deploys
-
Test your deployment:
python test_deployment.py your-app-name.up.railway.app -
Your MCP URL:
https://your-app.railway.app/mcp/
Heroku
heroku create your-mcp-server
git push heroku main
Your MCP URL: https://your-mcp-server.herokuapp.com/mcp/
Render
- Connect GitHub repository to Render
- Render auto-detects
render.yamland Dockerfile - Deploys automatically
Your MCP URL: https://your-service.onrender.com/mcp/
Docker
docker build -t mcp-simple-server .
docker run -p 8000:8000 mcp-simple-server
Claude Desktop Integration
Local Server Configuration
{
"mcpServers": {
"simple-server": {
"command": "python",
"args": ["main.py"],
"cwd": "/path/to/mcp-simple-server"
}
}
}
Remote Server Configuration (Recommended)
For remote servers deployed to Railway, Heroku, or Render, use the mcp-remote package:
{
"mcpServers": {
"simple-server-remote": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://your-app.railway.app/mcp/",
"--allow-http",
"--header",
"Accept: application/json, text/event-stream"
]
}
}
}
Key Configuration Notes:
- Use
npxwith the-yflag to auto-installmcp-remote - Include the trailing slash in the URL:
/mcp/ - Add the
--allow-httpflag for HTTP connections - Include the Accept header for proper SSE support
Alternative: Direct Python Proxy (Advanced)
For advanced users or debugging purposes, you can create a custom Python proxy:
{
"mcpServers": {
"simple-server-proxy": {
"command": "python",
"args": ["claude_mcp_proxy.py"],
"cwd": "/path/to/mcp-simple-server"
}
}
}
Note: This requires the claude_mcp_proxy.py script from the repository and is mainly for debugging purposes. Use mcp-remote for production.
Configuration File Locations:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
Test with Claude
After integration, ask Claude:
- "Can you add 42 and 18 for me?"
- "What's 7 times 9?"
- "What tools do you have available?"
Claude will use your MCP server to perform calculations! 🎉
Development
Adding New Tools
@mcp.tool()
def subtract(a: float, b: float) -> float:
"""Subtract two numbers"""
return a - b
@mcp.tool()
def divide(a: float, b: float) -> float:
"""Divide two numbers"""
if b == 0:
raise ValueError("Cannot divide by zero")
return a / b
Environment Variables
HOST: Server host (default: 127.0.0.1, use 0.0.0.0 for deployment)PORT: Server port (default: 8000, Railway sets this automatically)
HOST=0.0.0.0 PORT=3000 python main.py
Note: For Railway deployment, FastMCP will automatically bind to 0.0.0.0:$PORT.
Project Structure
mcp-simple-server/
├── main.py # MCP server (~25 lines)
├── test_server.py # Local server tests (~300 lines)
├── test_deployment.py # Remote deployment tests
├── test_host_binding.py # Host binding tests
├── test_proxy_script.py # Proxy testing script
├── test_streamable_app.py # Streamable HTTP tests
├── test_tool_verification.py # Tool verification tests
├── debug_railway_server.py # Railway debugging utilities
├── debug_fastmcp.py # FastMCP debugging utilities
├── claude_mcp_proxy.py # Claude Desktop proxy (optional)
├── start.sh # Shell startup script
├── pyproject.toml # Project configuration
├── README.md # This documentation
├── uv.lock # Dependency lock file
├── .gitignore # Git ignore patterns
├── .python-version # Python version specification
├── Dockerfile # Docker deployment
├── railway.toml # Railway configuration
├── Procfile # Heroku configuration
└── render.yaml # Render configuration
Architecture
- FastMCP: High-level MCP implementation from Anthropic
- Streamable HTTP: Modern transport with SSE streaming support
- Session Management: Stateful connections with session IDs
- JSON-RPC 2.0: Standard protocol for message exchange
- Protocol 2025-06-18: Latest MCP specification
- Port 8000: Default FastMCP server port (configurable via PORT env var)
Technical Details
Server Implementation
- Framework: FastMCP (official Anthropic library)
- Transport: Streamable HTTP with Server-Sent Events
- Protocol: MCP 2025-06-18 specification
- Dependencies:
httpx>=0.28.1,mcp>=1.9.4
MCP Protocol Flow
- Client sends
initializerequest - Server responds with capabilities and session ID
- Client sends
initializednotification - Normal operations begin (tools/list, tools/call, etc.)
Tool Response Format
Tools return simple Python values (float, int, str) which FastMCP automatically wraps in the proper MCP response format.
Troubleshooting
Server Won't Start
# Check if port is in use
lsof -i :8000
# Try different port
PORT=3000 python main.py
MCP Protocol Errors
# Run automated test
python test_server.py
# Check server logs for detailed errors
Claude Desktop Not Connecting
- Verify JSON configuration syntax - Use a JSON validator
- Check server URL accessibility - Test with
curlor browser - Restart Claude Desktop after config changes
- Ensure proper MCP endpoint path - Use
/mcp/with trailing slash - Use
mcp-remotefor remote servers - Don't usecurlfor remote connections
Test Remote Deployment
Test your deployed server with the provided script:
# Test your deployed server (replace with your URL)
python test_deployment.py your-app.railway.app
# Or with full URL
python test_deployment.py https://your-app.railway.app
This will run the complete MCP protocol test suite against your remote server.
Common Issues
- Wrong endpoint: Use
/mcp/(with trailing slash) - Missing headers: Include all required MCP headers
- Session management: Must send
initializednotification afterinitialize - Remote connections: Use
mcp-remote, notcurlfor Claude Desktop - Port binding: Use
0.0.0.0:$PORTfor deployment, not127.0.0.1
Dependencies
dependencies = [
"httpx>=0.28.1", # HTTP client for testing
"mcp>=1.9.4", # Official Anthropic MCP library
]
The project uses:
- mcp: Official Anthropic MCP Python SDK
- httpx: Modern HTTP client for automated testing
- Python: Requires Python >=3.10
Contributing
- Fork the repository
- Make your changes
- Run tests:
python test_server.py - Test deployment:
python test_deployment.py your-test-url - Ensure all tests pass
- Submit a pull request
License
MIT License
Resources
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。