A collection of MCP (Model Context Protocol) servers.
A simple math server that provides basic arithmetic operations:
add(a, b)- Add two numbersmultiply(a, b)- Multiply two numbers
A weather server that provides weather information:
get_weather(location)- Get weather information for a specified location
Note: Currently returns a mock response for demonstration purposes.
Run the math server:
python math_server.pyRun the weather server:
python weather_server.py- Math Server: Uses
stdiotransport for standard input/output communication - Weather Server: Uses
streamable-httptransport for HTTP-based communication