PluginBench
MCP Server

io.github.rwestergren/rachio-mcp MCP Server

io.github.rwestergren/rachio-mcp

What is the io.github.rwestergren/rachio-mcp MCP server?

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

How to install io.github.rwestergren/rachio-mcp

Copy-paste configuration for popular MCP clients.

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

    Long-lived Rachio OAuth access token. Mint one with `rachio-mcp-token` (or `uvx --from rachio-mcp rachio-mcp-token`). The token lasts ~25 years and replaces sending your password to the MCP process.

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "rachio-mcp": {
      "command": "uvx",
      "args": [
        "rachio-mcp"
      ],
      "env": {
        "RACHIO_ACCESS_TOKEN": "<YOUR_RACHIO_ACCESS_TOKEN>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "rachio-mcp": {
      "command": "uvx",
      "args": [
        "rachio-mcp"
      ],
      "env": {
        "RACHIO_ACCESS_TOKEN": "<YOUR_RACHIO_ACCESS_TOKEN>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "rachio-mcp": {
      "command": "uvx",
      "args": [
        "rachio-mcp"
      ],
      "env": {
        "RACHIO_ACCESS_TOKEN": "<YOUR_RACHIO_ACCESS_TOKEN>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "rachio-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "rachio-mcp"
      ],
      "env": {
        "RACHIO_ACCESS_TOKEN": "<YOUR_RACHIO_ACCESS_TOKEN>"
      }
    }
  }
}
Claude Code
claude mcp add rachio-mcp --env RACHIO_ACCESS_TOKEN=<YOUR_RACHIO_ACCESS_TOKEN> -- uvx rachio-mcp

Related MCP servers

MCP server for Cronometer nutrition tracking — food logs, diary, macros, fasting

View repository →

Hosted/gateway-ready Hevy fitness MCP: workouts, routines, templates.

View repository →

MCP server for InBody body-composition data — scans, body fat, muscle mass, body water

View repository →