A simple MCP (Model Context Protocol) server project implementing three services—**math**, **weather**, and **brave search**—using FastAPI, FastMCP, and Docker.
mcpServer
{ "mcpServers": { "math": { "command": "docker", "args": [ "run", "-i", "mcpserver-math_server" ], "transport": "stdio" }, "weather": { "command": "docker", "args": [ "run", "-i", "mcpserver-weather_server" ], "transport": "stdio" }, "brave": { "command": "docker", "args": [ "run", "-i", "-e", "BRAVE_API_KEY= YOUR_API_KEY", "mcpserver-brave_server" ], "transport": "stdio" } } }