profilarr-mcp
OfficialThis MCP server wraps Profilarr's v1 REST API to inspect and manage a Profilarr instance.
System & Health: Check health (public endpoint, no API key), get overall status (version, uptime, databases, Arr instances sync state, job queue, backups, announcements), and fetch the OpenAPI spec.
Arr Instances: List connected Radarr/Sonarr instances with sync status (API keys stripped).
Database Management: Link/list/get/update/unlink PCD databases, and trigger an async database sync (pulls the DB repository, not an Arr sync).
Jobs: Poll status/results of async operations like backup creation or database sync.
Backups: List, create (async), download, upload (.tar.gz), and delete backups; get/update backup settings (schedule, retention).
Announcements: List visible announcements and get a single announcement with its full markdown body.
Note: Features not exposed by Profilarr's v1 REST API (custom formats, quality profiles, regex, etc.) are not available.
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., "@profilarr-mcpCheck the health of my Profilarr instance"
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.
profilarr-mcp
Part of the arr-mcps collection.
MCP server exposing Profilarr's
v1 REST API (/api/v1, OpenAPI 3.1) as tools, so an
LLM can inspect and manage your Profilarr instance: linked databases, connected
Radarr/Sonarr instances, backups, jobs, announcements, and system status.
Built with FastMCP.
Scope
Profilarr's programmatic API is deliberately small. This server wraps the
documented /api/v1 JSON surface only:
System — health, status, OpenAPI spec
Arr — list connected instances (read-only; sync state via status)
Databases — link/get/update/unlink, trigger PCD sync
Jobs — poll job status
Backups — list/create/download/upload/delete/settings
Announcements — list/get
Many of Profilarr's headline features (custom formats, quality profiles, regular expressions, delay profiles, media management, upgrades, rename, notifications, and triggering an Arr sync) are not exposed by the v1 REST API — they live behind SvelteKit form actions that require a browser session and CSRF token, so they are intentionally not wrapped here. Use the web UI for those.
Related MCP server: mcp-arrstack
Getting the API key
Profilarr accepts X-Api-Key on every /api/v1 request. The active key is
either the PROFILARR_API_KEY environment variable set on the Profilarr server
(≥ 32 characters, takes precedence), or the key generated under
Settings > Security in the web UI (bcrypt-stored, shown once). /health is
the only endpoint that works without a key.
Install
Download a wheel from the latest release
and install it as a uv tool (no repo checkout needed):
uv tool install profilarr_mcp-*.whlThis puts a profilarr-mcp command on your PATH. Register it with Claude Code:
claude mcp add profilarr \
--env PROFILARR_URL=https://your-profilarr-host \
--env PROFILARR_API_KEY=<key> \
-- profilarr-mcpFrom source
uv sync
cp .env.example .env # fill in PROFILARR_URL and PROFILARR_API_KEYclaude mcp add profilarr \
--env PROFILARR_URL=https://your-profilarr-host \
--env PROFILARR_API_KEY=<key> \
-- uv run --directory /path/to/profilarr-mcp profilarr-mcpConfig
Env var | Required | Default |
| yes | - |
| yes* | none (no auth header sent) |
| no | system temp dir |
*Required for every tool except profilarr_health, which is public.
Tools
4 resource-scoped tools, each covering multiple Profilarr v1 endpoints
(20 total) via an operation parameter. 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.
Tool | Operations | Covers |
| 6 | List/create/get/update/delete/sync databases |
| 7 | List/create/download/delete/upload backups, backup settings |
| 2 | Job polling, Arr instance list |
| 5 | Health, status, OpenAPI spec, announcements |
Example: profilarr_databases(operation="profilarr_sync_database", arguments={"id": 3}).
Endpoint-level naming (profilarr_<verb>_<resource>) is preserved as the
operation value:
Operation | Endpoint |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Async jobs
profilarr_create_backup and profilarr_sync_database return {jobId} with
HTTP 202. Poll the result with profilarr_jobs_arr(operation="profilarr_get_job", arguments={"id": jobId}).
Note profilarr_sync_database pulls the linked database repo, not an Arr sync.
Binary endpoints
profilarr_download_backup streams the sanitized archive to a local temp file
(PROFILARR_TEMP_DIR or the system temp dir) and returns {path, filename, size}.
profilarr_upload_backup takes a local file path and POSTs it as multipart form
data. Bytes never enter the LLM context.
Development
make help # list all commandsCommand | Does |
|
|
| Offline tests - one per endpoint, mocked HTTP |
| Tests against the live instance (needs |
| Build wheel + sdist into |
| Bump the version in |
| 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 (health/status/arr/databases/announcements) plus a self-cleaning backup lifecycle (create → poll → download → delete). Database create/delete is intentionally not exercised against a live instance, since linking a database clones a real repository.
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
- Alicense-qualityAmaintenanceA Model Context Protocol server that exposes Sonarr, Radarr, Lidarr, and Jellyfin to any MCP client through a curated tool layer for LLM consumption.MIT
- Alicense-qualityCmaintenanceMCP server that enables local LLMs to manage a home media stack including Radarr, Sonarr, Prowlarr, and others.MIT
- Alicense-qualityBmaintenanceA locally-run, read-only MCP server that lets an LLM client diagnose a self-hosted *arr media stack by aggregating across Sonarr, Radarr, Prowlarr, qBittorrent, Tdarr, and Profilarr.Apache 2.0

dashbrr-mcpofficial
AlicenseAqualityAmaintenanceMCP 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.34MIT
Related MCP Connectors
MCP server exposing the Backtest360 engine API as tools for AI agents.
MCP server for Pentest-Tools.com: run scans, manage findings and reports via your preffered LLM.
Markdown-first MCP server for Notion API with 8 composite tools and 39 actions.
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/arr-mcps/profilarr-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server