profilarr-mcp
OfficialClick 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
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: nas-mcp-server
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
One tool per Profilarr v1 endpoint:
Tool | Endpoint |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Async jobs
profilarr_create_backup and profilarr_sync_database return {jobId} with
HTTP 202. Poll the result with profilarr_get_job(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
- AlicenseAqualityCmaintenanceMCP server for Proxmox Backup Server. Exposes datastore status, snapshot inventory, garbage collection, verify, and prune over the PBS REST API as 13 LLM-callable tools.17GPL 3.0
- AlicenseAqualityDmaintenanceMCP server for managing a media server stack (Plex, Radarr, Overseerr, Bazarr, Prowlarr, Trakt.tv) using natural language to browse, request, and discover content.12MIT
- 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
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/SavageCore/profilarr-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server