Scarmonit/my-mcp-server
3.2
If you are the rightful owner of my-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.
FastMCP server with FastAPI for Claude.ai integration.
Tools
1
Resources
0
Prompts
0
My MCP Server
FastMCP server with FastAPI for Claude.ai integration.
Features
- Tool:
add(a, b)- Adds two integers - Resource:
greeting://{name}- Personalized greeting - Prompt:
stock_analyst_prompt- Stock market analyst persona
Deployment
Render (Free Tier)
- Connect this repo to Render
- It will auto-detect the
render.yamland deploy on the free tier - Your MCP endpoint will be:
https://<your-app>.onrender.com/mcp
Local Development
# Install dependencies
uv sync
# Run HTTP server
uv run main.py
# Server available at http://localhost:8000/mcp
# Or run via stdio (for Claude Desktop)
uv run server.py
Connecting to Claude
Claude.ai (Web)
- Deploy to Render (see above)
- Go to Claude.ai > Settings > Integrations > Add Custom Connector
- Enter your Render URL:
https://<your-app>.onrender.com/mcp
Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"my-mcp-server": {
"command": "uv",
"args": ["run", "server.py"],
"cwd": "/path/to/my-mcp-server"
}
}
}