Skip to content
VS Code

rachio mcp for VS Code

io.github.rwestergren/rachio-mcp

MCP server for Rachio sprinkler controllers — schedules, zones, and live watering control

client:VS Code transport:stdio runtime:pypi

Install rachio mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "rachio-access-token",
      "description": "RACHIO_ACCESS_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "rachio-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "rachio-mcp"
      ],
      "env": {
        "RACHIO_ACCESS_TOKEN": "${input:rachio-access-token}"
      }
    }
  }
}

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

rachio mcp in other clients