Skip to content
VS Code

weatherai for VS Code

io.github.weatherai-io/weatherai

WeatherAI — 11 live weather tools for Claude, Cursor, Windsurf and any MCP AI assistant

client:VS Code transport:stdio runtime:npm

Install weatherai in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "your-api-key",
      "description": "YOUR_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "weatherai": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@weatherai/mcp-server"
      ],
      "env": {
        "YOUR_API_KEY": "${input:your-api-key}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

weatherai in other clients