blueiris-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., "@blueiris-mcpShow me a live snapshot from the front door camera"
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.
blueiris-mcp
An MCP server for Blue Iris, the Windows NVR/camera-management software. Lets an LLM check camera health, pull live or historical snapshots, search the clip/alert archive, and drive PTZ cameras — all through Blue Iris's existing JSON API, no extra software on the Blue Iris box required.
Blue Iris's JSON API is undocumented enough that its session-handshake auth scheme (a custom two-step MD5 challenge, not a bearer token or HTTP digest) has to be reverse-engineered by reading network traffic. This package does that once so you don't have to.
Why
Blue Iris already has a web UI and a JSON API, but neither is something an LLM agent can use directly. This wraps the API as MCP tools so an agent can answer questions like:
"Is the front door camera actually seeing anything right now, or is it stuck on the no-signal placeholder?"
"Show me what the driveway camera saw at 6pm yesterday."
"Who showed up at the front door today?" (Blue Iris's own AI recognition results are in the alert log's
memofield, e.g."John:74%")"Pan the workshop camera left for a second and grab a frame."
Related MCP server: mcp-hs4
Tools
Tool | Description |
| Configured cameras with live health: |
| Live or historical JPEG frame ( |
| Recorded segments for a camera, newest first, across Blue Iris's full retention window for that camera. |
| Motion/AI alerts for a camera, newest first, including Blue Iris's own recognition |
| Directional nudge, home, zoom in/out, stop, or jump to a saved preset. |
Setup
Requires a Blue Iris account with JSON API access (the same username/password as the web UI login).
pip install blueiris-mcp
# or: uvx blueiris-mcpConfigure via environment variables:
Variable | Required | Default |
| no |
|
| yes | — |
| yes | — |
Claude Code / Claude Desktop (~/.claude.json or claude_desktop_config.json)
{
"mcpServers": {
"blueiris": {
"command": "uvx",
"args": ["blueiris-mcp"],
"env": {
"BI_URL": "http://192.168.1.50:81",
"BI_USER": "your-username",
"BI_PASSWORD": "your-password"
}
}
}
}Hermes (~/.hermes/config.yaml)
Hermes' mcp_servers config supports the same stdio transport:
mcp_servers:
blueiris:
command: uvx
args: ["blueiris-mcp"]
env:
BI_URL: "http://192.168.1.50:81"
BI_USER: "your-username"
BI_PASSWORD: "your-password"Notes on the Blue Iris API
Auth:
POST /json {"cmd":"login"}returns asessiontoken. ThenPOST /json {"cmd":"login","session":<id>,"response":<hash>}wherehash = md5(f"{user}:{session}:{password}")— a single MD5 pass, no realm string. This client re-authenticates on every call rather than caching a session, since call volume through an MCP tool is inherently low.list_clips/list_alerts(Blue Iris'scliplist/alertlistcommands) have no date-range parameters — they return everything currently retained on disk for that camera. Retention is whatever Blue Iris is configured to keep (commonly a few days to a couple of weeks, storage-dependent).If your setup has another process also driving a camera's PTZ (e.g. an automated monitoring script), avoid sending PTZ commands to that camera at the same time from here — Blue Iris does not arbitrate between simultaneous PTZ sources, and the result is erratic movement.
Development
uv venv && uv pip install -e ".[dev]"
uv run pytestTests are fully mocked (via respx) — no live Blue Iris instance needed.
License
MIT
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
AlicenseAqualityBmaintenanceThis is an MCP server for the BillingServ API. Once it's set up, your AI assistant can look up customers, invoices, orders, packages, and reports straight from your BillingServ installation3182MIT- AlicenseBqualityCmaintenanceMCP server for controlling HomeSeer HS4 with safe, auditable, and guarded write operations.631MIT
- AlicenseAqualityCmaintenanceMCP server for configuring Axis IP cameras via VAPIX, supporting device info, snapshots, image settings, overlays, network, PTZ, and system management.37121GPL 3.0
Related MCP Connectors
MCP server for Clipkit — gives AI agents a video toolbox via the Clipkit schema.
Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.
MCP server wrapping the Tesla Fleet API and TeslaMate API
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/smaniktahla/blueiris-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server