rachio-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@rachio-mcpIs anything watering right now?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
What it does
Exposes your Rachio irrigation system to any MCP client (Claude Code, Claude Desktop, etc.) so you can ask "is anything watering right now?", "run the front lawn for 10 minutes", or "put it on a 2-day rain delay" in natural language.
Uses the Rachio public API — cloud, token-based, works from anywhere (no need to be on the same network as the controller).
Related MCP server: opensprinkler-mcp
Tools
Tool | Purpose |
| all controllers on the account, with status and zone summary |
| one-shot: online, on/paused, rain sensor & delay, what's watering now |
| zones on a controller (number, name, enabled) |
| stored schedule rules (watering times) |
| run one zone for N minutes (max 180) |
| run several zones in sequence |
| stop everything now |
| set/clear a rain delay (0–7 days) |
| start a stored schedule rule by name or id |
| take the controller out of / into standby |
Zones and devices can be referenced by name or number, not just their API ids.
Requirements
Python 3.12+
A Rachio account and an API token
Get your API token
In the Rachio mobile app: Profile → Get API Key → Copy.
It's a single bearer token tied to your account — treat it like a password.
Install
git clone https://github.com/rudy325/rachio-mcp.git
cd rachio-mcp
uv syncConfigure
export RACHIO_API_TOKEN=your-api-tokenSee .env.example.
Register with Claude Code
claude mcp add rachio \
--env RACHIO_API_TOKEN=your-api-token \
-- uv --directory /path/to/rachio-mcp run server.pyOr with Claude Desktop, in claude_desktop_config.json:
{
"mcpServers": {
"rachio": {
"command": "uv",
"args": ["--directory", "/path/to/rachio-mcp", "run", "server.py"],
"env": { "RACHIO_API_TOKEN": "your-api-token" }
}
}
}Use with other clients (OpenAI, local models, etc.)
This is a standard MCP server — it speaks the open protocol over stdio and doesn't care which model or client drives it. Anything that supports MCP works:
OpenAI — the Agents SDK and Responses API accept MCP servers. Point them at:
command: "uv",args: ["--directory", "/path/to/rachio-mcp", "run", "server.py"], withRACHIO_API_TOKENin the environment.Local / open-source models — via any MCP-capable client (Cline, Continue, LibreChat, Open WebUI, Goose, Zed, Cursor) running Ollama, Llama, Qwen, etc.
Any other MCP client — same stdio command as the Claude examples above.
The only requirement is a model that's competent at tool/function calling; the large hosted models and stronger local ones (Llama 3.1+, Qwen 2.5+) handle it well.
Notes
Multiple controllers: every tool takes an optional
deviceargument (name or id), required only when the account has more than one controller.Durations: zone runs are capped at 180 minutes and rain delays at 7 days, matching the API limits.
Standby:
set_device_power(on=false)puts the controller in standby, pausing all scheduled watering until turned back on.Rate limits: the Rachio API allows 1700 calls/day per token; these tools are all single calls, so normal use is nowhere near the limit.
How it fits together
MCP client ──stdio──> server.py ──HTTPS──> api.rach.io/1 ──> your Rachio controllerLicense
MIT. Not affiliated with or endorsed by Rachio, Inc. "Rachio" is a trademark of Rachio, Inc.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseBqualityNot gradedmaintenanceEnables interaction with Homey smart home devices through natural language, allowing users to control devices, manage zones, and trigger automation flows.64
- FlicenseNot gradedqualityFmaintenanceEnables managing OpenSprinkler irrigation controllers via Claude Desktop, including starting/stopping stations, setting rain delays, and viewing controller status.
- AlicenseNot gradedqualityCmaintenanceEnables natural language queries about Ambient Weather personal weather station data, including current conditions and device info.MIT
- FlicenseAqualityCmaintenanceQuery and control Orbit B-Hyve irrigation systems from MCP-compatible clients like Claude Code and Cursor.12
Related MCP Connectors
Connect your Oura Ring account and enable access to your wellness data in apps and automations. In…
Streamline your Attio workflows using natural language to search, create, update, and organize com…
WHOOP recovery, strain, sleep and workouts in Claude via official WHOOP OAuth. Free, open source.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/rudy325/rachio-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server