rainbird-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., "@rainbird-mcprun zone 3 for 10 minutes"
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 Rain Bird controller to any MCP client (Claude Code, Claude Desktop, etc.) so you can ask things like "is the sprinkler running?", "run zone 3 for 10 minutes", or "set a 2-day rain delay" in natural language.
It speaks the controller's local encrypted SIP-command protocol via
pyrainbird — the same protocol the
Rain Bird mobile app uses on your LAN.
Related MCP server: Bosch Smart Home Camera MCP Server
Tools
Tool | Purpose |
| configured controllers, hosts, and detected transport URL |
| model, firmware version, serial number |
| one-shot: irrigating?, active zones, remaining runtime, rain sensor, rain delay, clock |
| per-zone on/off map |
| programs, run days, start times, per-zone durations |
| remaining rain delay in days |
| LNK WiFi status and parameters |
| run one zone for N minutes (validated against available zones) |
| stop everything now |
| skip to the next zone in the running program |
| set/clear rain delay (0–14 days) |
| start stored program 1–4 (A/B/C on the TM2) |
| push this machine's local date/time to the controller |
Requirements
Python 3.12+
A Rain Bird controller with an LNK/LNK2 WiFi module on the same reachable network
The controller's device password (see below)
Install
git clone https://github.com/rudy325/rainbird-mcp.git
cd rainbird-mcp
uv syncConfigure
The password is the controller's device password — set/shown in the Rain Bird app under the controller's settings. It is not your WiFi password and not your Rain Bird account login. If you don't know it, remove and re-add the WiFi module in the app to set a new one (this keeps your zones and schedules).
Single controller:
export RAINBIRD_HOST=192.168.1.50
export RAINBIRD_PASSWORD=your-device-passwordMultiple controllers (each tool then takes an optional controller argument, required
when more than one is configured):
export RAINBIRD_CONTROLLERS='{"front":{"host":"192.168.1.50","password":"pw1"},
"back":{"host":"192.168.1.51","password":"pw2"}}'See .env.example for all variables.
Register with Claude Code
claude mcp add rainbird \
--env RAINBIRD_HOST=192.168.1.50 \
--env RAINBIRD_PASSWORD=your-device-password \
-- uv --directory /path/to/rainbird-mcp run server.pyOr with Claude Desktop, in claude_desktop_config.json:
{
"mcpServers": {
"rainbird": {
"command": "uv",
"args": ["--directory", "/path/to/rainbird-mcp", "run", "server.py"],
"env": {
"RAINBIRD_HOST": "192.168.1.50",
"RAINBIRD_PASSWORD": "your-device-password"
}
}
}
}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/rainbird-mcp", "run", "server.py"], withRAINBIRD_HOST/RAINBIRD_PASSWORDin 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.
Transport (HTTP vs HTTPS)
Newer LNK modules (certificate CN fw-cc20.rainbird.com) serve the SIP endpoint over
HTTPS on port 443 and refuse port 80, with a self-signed Rain Bird certificate.
Older modules are plain HTTP on 80. pyrainbird hardcodes http://, so this server
probes 443 then 80 per host and rewrites the client URL accordingly. Certificate
verification is disabled — the device is LAN-local, addressed by IP, and its certificate
is self-signed by Rain Bird, so verification cannot succeed.
Skip the probe by forcing it: RAINBIRD_SCHEME=https (or http).
Notes & gotchas
One connection at a time. The LNK module accepts a single connection; expect slow or failed calls if the Rain Bird mobile app is open against the same controller.
WiFi quality matters. The module is 2.4 GHz WiFi 4, 1×1. A weak signal shows up as intermittent timeouts, not clean errors. Check RSSI / TX retries in your AP if calls are flaky.
run_programuses theManuallyRunProgramRequestSIP command; some firmware revisions NACK it. If it fails, drive zones individually withstart_zone.The controller clock drifts and has no NTP.
sync_clockis worth running occasionally.Isolated IoT VLANs (UniFi and similar). If the controller is on an isolated VLAN, the router's isolation feature typically drops the controller's replies to your LAN, which no user "allow" rule reliably overrides. Disabling isolation on that network (and optionally re-adding your own outbound-only block rule) is what actually restores access.
How it fits together
MCP client ──stdio──> server.py ──pyrainbird──> HTTP(S) /stick ──> LNK WiFi module ──> controllerCredits
pyrainbird— the protocol implementation.Model Context Protocol — the server framework.
License
MIT. Not affiliated with or endorsed by Rain Bird Corporation. "Rain Bird" is a trademark of Rain Bird Corporation.
This server cannot be installed
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
- AlicenseBqualityCmaintenanceEnables control of Fibaro Home Center devices, scenes, variables, and system administration through natural language.8152MIT
- AlicenseAqualityAmaintenanceEnables MCP clients to control Bosch Smart Home Cameras via natural language, including snapshots, motion events, privacy mode, and pan/tilt, using a reverse-engineered cloud API.55MIT
- FlicenseAqualityCmaintenanceEnables AI assistants to control Roku TVs on the local network via natural language commands.6
- AlicenseNot gradedqualityCmaintenanceEnables natural language queries about Ambient Weather personal weather station data, including current conditions and device info.MIT
Related MCP Connectors
Greet people by name and check local forecasts and weather alerts across the U.S. Switch to a play…
Control Android TV from any AI. 38 MCP tools: playback, recap, recommend, smart-home, schedules.
Self-hosted MCP gateway: turn any API, database or MCP server into AI connectors — no code.
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/rainbird-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server