PluginBench
MCP Server
Active
MIT

Smarter Weather Developer Onboarding MCP Server

io.github.smarterweather/onboarding

What is the Smarter Weather Developer Onboarding MCP server?

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

How to install Smarter Weather Developer Onboarding

Copy-paste configuration for popular MCP clients.

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

    Set to 'required' to opt into OAuth 2.1 + PKCE sign-in and unlock account-scoped tools (API key minting, usage, billing). Unset, the bridge serves the anonymous discovery tools (get_plans, get_documentation, sign_up) with no credentials at all.

  • SMARTERWEATHER_ONBOARDING_MCP_URL

    Override the target MCP endpoint for development or staging. Precedence: positional argument > SMARTERWEATHER_ONBOARDING_MCP_URL > package default.

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

Related MCP servers

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

1
TypeScript
MIT
View repository →