Weather MCP Server

Provide weather data: it can fetch active weather alerts for a US state and get short-term forecasts (temperature, wind, and conditions) for a given latitude/longitude.

Data Services WeatherForecastLocation

Configuration

MCP Settings Configuration

{
  "weather": {
    "stdio": {
        "command": "python3",
        "args": [
            "-m", "mcpuniverse.mcp.servers.weather"
        ]
    },
    "sse": {
        "command": "python3",
        "args": [
            "-m", "mcpworld.mcp.servers.weather",
            "--transport", "sse",
            "--port", "{{PORT}}"
        ]
    }
  }
}

Available Tools & Methods

get_alerts(state)
Get weather alerts for a US state.
Parameters: state (string): US state code (e.g., 'CA', 'NY')
get_forecast(latitude, longitude)
Get short-term weather forecast for coordinates
Parameters: latitude (float), longitude (float)