dashbrr-mcp
MCP server exposing Dashbrr's REST API as tools, so an LLM can read and manage a dashbrr instance: configured services, per-service health, and summary panels for many apps. Write tools cover settings management, download-queue deletes, Overseerr approvals, UI preferences, and the Plex auth PIN flow.
README
dashbrr-mcp
Part of the arr-mcps collection. MCP server exposing Dashbrr's REST API as tools, so an LLM can read and manage a dashbrr instance: configured services, per-service health, and the summary panels for autobrr, Plex, Jellyfin, Sonarr, Radarr, Lidarr, Readarr, Prowlarr, Overseerr, Traefik, Bazarr, SABnzbd, NZBGet, Uptime Kuma, Maintainerr, and Tailscale. Write tools cover settings management, download-queue deletes, Overseerr approvals, UI preferences, and the Plex auth PIN flow.
Built with FastMCP.
Auth
Dashbrr uses session auth, not an API key. Two ways to use this server:
- Run dashbrr with
DASHBRR_AUTH_BYPASS=true— the API treats any caller as the builtin user. SetDASHBRR_API_KEYto any value (or leave it unset; the server still starts and no auth header is sent). - Obtain a session token (e.g. extract the
dashbrr_user_sessioncookie after logging in to the UI) and setDASHBRR_API_KEYto it — it is sent asAuthorization: Bearer <token>.
Install
Download a wheel from the latest release
and install it as a uv tool (no repo checkout needed):
uv tool install dashbrr_mcp-*.whl
This puts a dashbrr-mcp command on your PATH. Register it with Claude Code:
claude mcp add dashbrr \
--env DASHBRR_URL=https://your-dashbrr-host \
--env DASHBRR_API_KEY=<token-or-empty> \
-- dashbrr-mcp
From source
uv sync
cp .env.example .env # fill in DASHBRR_URL and optionally DASHBRR_API_KEY
claude mcp add dashbrr \
--env DASHBRR_URL=https://your-dashbrr-host \
--env DASHBRR_API_KEY=<token-or-empty> \
-- uv run --directory /path/to/dashbrr-mcp dashbrr-mcp
Config
| Env var | Required | Default |
|---|---|---|
DASHBRR_URL |
yes | - |
DASHBRR_API_KEY |
no | none (no auth header sent; requires DASHBRR_AUTH_BYPASS=true on the instance) |
Tools
5 resource-scoped tools, each covering multiple Dashbrr API endpoints (34
total) via an operation parameter. Grouping here is per-service rather
than per-resource, since Dashbrr's endpoint shape is one summary/action per
third-party service. Call a tool with operation set to one of its listed
operations and an arguments dict matching that operation's parameters — the
tool's own description (visible to your MCP client) lists every operation,
its signature, and a one-line doc. Per-service operations take
instance_id, the type-prefixed instance id from dashbrr_list_settings
(operation dashbrr_list_settings, e.g. sonarr-1, plex-main, autobrr-0).
| Tool | Operations | Covers |
|---|---|---|
dashbrr_other_services |
13 | autobrr, Jellyfin, Uptime Kuma, Maintainerr, Overseerr, Traefik, Bazarr, SABnzbd, NZBGet, Tailscale |
dashbrr_arr_queues |
11 | Sonarr/Radarr/Lidarr/Readarr queues, Prowlarr stats/indexers |
dashbrr_settings |
5 | List/save/delete settings, UI preferences |
dashbrr_plex |
3 | Plex auth pin, sessions |
dashbrr_health |
2 | Liveness probe, per-service health |
Example: dashbrr_arr_queues(operation="dashbrr_delete_sonarr_queue_item", arguments={"instance_id": "sonarr-1", "id": 42}).
Endpoint-level naming is preserved as the operation value:
| Operation | Endpoint |
|---|---|
dashbrr_list_settings |
GET /api/settings |
dashbrr_get_ui_preferences_collapse |
GET /api/ui/preferences/collapse |
dashbrr_get_health |
GET /health |
dashbrr_check_service_health |
GET /api/health/{service} |
dashbrr_get_plex_pin |
GET /api/plex/auth/pin/{pinId} |
dashbrr_get_plex_sessions |
GET /api/plex/sessions |
dashbrr_get_autobrr_stats |
GET /api/autobrr/stats |
dashbrr_get_autobrr_irc |
GET /api/autobrr/irc |
dashbrr_get_autobrr_releases |
GET /api/autobrr/releases |
dashbrr_get_jellyfin_summary |
GET /api/jellyfin/summary |
dashbrr_get_uptimekuma_summary |
GET /api/uptimekuma/summary |
dashbrr_get_maintainerr_collections |
GET /api/maintainerr/collections |
dashbrr_get_overseerr_requests |
GET /api/overseerr/requests |
dashbrr_get_sonarr_queue |
GET /api/sonarr/queue |
dashbrr_get_sonarr_stats |
GET /api/sonarr/stats |
dashbrr_get_radarr_queue |
GET /api/radarr/queue |
dashbrr_get_lidarr_queue |
GET /api/lidarr/queue |
dashbrr_get_readarr_queue |
GET /api/readarr/queue |
dashbrr_get_prowlarr_stats |
GET /api/prowlarr/stats |
dashbrr_get_prowlarr_indexers |
GET /api/prowlarr/indexers |
dashbrr_get_traefik_summary |
GET /api/traefik/summary |
dashbrr_get_bazarr_summary |
GET /api/bazarr/summary |
dashbrr_get_sabnzbd_summary |
GET /api/sabnzbd/summary |
dashbrr_get_nzbget_summary |
GET /api/nzbget/summary |
dashbrr_get_tailscale_devices |
GET /api/tailscale/devices |
dashbrr_create_plex_pin |
POST /api/plex/auth/pin |
dashbrr_delete_sonarr_queue_item |
DELETE /api/sonarr/queue/{id} |
dashbrr_delete_radarr_queue_item |
DELETE /api/radarr/queue/{id} |
dashbrr_delete_lidarr_queue_item |
DELETE /api/lidarr/queue/{id} |
dashbrr_delete_readarr_queue_item |
DELETE /api/readarr/queue/{id} |
dashbrr_set_overseerr_request_status |
POST /api/services/{instanceId}/overseerr/request/{requestId}/{status} |
dashbrr_save_settings |
POST /api/settings/{instance} |
dashbrr_delete_settings |
DELETE /api/settings/{instance} |
dashbrr_set_ui_preference_collapse |
PUT /api/ui/preferences/collapse |
dashbrr_set_overseerr_request_status takes status as the literal string
2 (approve) or 3 (decline). Queue deletes only send options
(remove_from_client, blocklist, skip_redownload, change_category) when
set to true. dashbrr_save_settings omits api_key when blank so the stored
key is retained on update.
Development
make help # list all commands
| Command | Does |
|---|---|
make sync |
uv sync |
make test |
Offline tests - one per endpoint, mocked HTTP |
make test-integration |
Tests against the live instance (needs DASHBRR_URL/DASHBRR_API_KEY) |
make build |
Build wheel + sdist into dist/ |
make bump-patch / bump-minor / bump-major |
Bump the version in pyproject.toml + uv.lock |
make clean |
Remove build artifacts |
The release workflow (.github/workflows/release.yml) builds and publishes to
Releases whenever a v*
tag is pushed - so the usual flow is make bump-patch, commit, then tag and
push.
The integration suite is read-only and never writes to your instance.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。