PluginBench
MCP Server
Active
MIT

Smarter Weather MCP Server

io.github.smarterweather/weather

What is the Smarter Weather MCP server?

Smarter Weather MCP: forecasts, alerts, outlooks, observations, AQI, grids, and map imagery.

How to install Smarter Weather

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • SMARTERWEATHER_API_KEY
    secret

    Smarter Weather API key (sw_live_* or sw_test_*) with the 'mcp' scope. When set, the bridge skips the OAuth flow and forwards the key as 'Authorization: Bearer <key>' on every proxied request. When unset, the bridge runs the full MCP OAuth 2.1 + PKCE client and caches tokens at ~/.mcp-auth/. Mint keys at https://smarterweather.com/developers/api-keys.

  • SMARTERWEATHER_MCP_URL

    Override the target MCP endpoint. Useful for development or staging against a non-production sw-mcp deployment. Precedence: positional argument > SMARTERWEATHER_MCP_URL > package default (https://mcp.smarterweather.com/mcp).

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "weather": {
      "command": "npx",
      "args": [
        "-y",
        "@smarterweather/mcp-weather"
      ],
      "env": {
        "SMARTERWEATHER_API_KEY": "<YOUR_SMARTERWEATHER_API_KEY>",
        "SMARTERWEATHER_MCP_URL": "<YOUR_SMARTERWEATHER_MCP_URL>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "weather": {
      "command": "npx",
      "args": [
        "-y",
        "@smarterweather/mcp-weather"
      ],
      "env": {
        "SMARTERWEATHER_API_KEY": "<YOUR_SMARTERWEATHER_API_KEY>",
        "SMARTERWEATHER_MCP_URL": "<YOUR_SMARTERWEATHER_MCP_URL>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "weather": {
      "command": "npx",
      "args": [
        "-y",
        "@smarterweather/mcp-weather"
      ],
      "env": {
        "SMARTERWEATHER_API_KEY": "<YOUR_SMARTERWEATHER_API_KEY>",
        "SMARTERWEATHER_MCP_URL": "<YOUR_SMARTERWEATHER_MCP_URL>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "weather": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@smarterweather/mcp-weather"
      ],
      "env": {
        "SMARTERWEATHER_API_KEY": "<YOUR_SMARTERWEATHER_API_KEY>",
        "SMARTERWEATHER_MCP_URL": "<YOUR_SMARTERWEATHER_MCP_URL>"
      }
    }
  }
}
Claude Code
claude mcp add weather --env SMARTERWEATHER_API_KEY=<YOUR_SMARTERWEATHER_API_KEY> --env SMARTERWEATHER_MCP_URL=<YOUR_SMARTERWEATHER_MCP_URL> -- npx -y @smarterweather/mcp-weather

Related MCP servers

Agent-first onboarding to Smarter Weather: plans, docs, signup, API keys, MCP config, billing.

1
TypeScript
MIT
View repository →