mcparr
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., "@mcparrsearch for movies with 'dune' in the title"
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.
mcparr
MCPify your *arr stack. mcparr is a self-hosted Model Context Protocol gateway that lets AI assistants (Claude, ChatGPT, GitHub Copilot, Cursor, ...) drive your media services - Radarr, Sonarr, and more - through a single, authenticated MCP endpoint.
What it does
mcparr runs as one Docker container exposing two ports:
7475 - config UI: a small web app to add service connections, test them, toggle tools, and copy the MCP connection details. Protected by an admin password.
7474 - MCP endpoint: a Streamable HTTP MCP server that AI clients connect to. Always requires a bearer token.
Each enabled service contributes a set of namespaced tools (for example
radarr_search_movies, sonarr_list_series). Toggling a service in the UI adds
or removes its tools live, without restarting the container.
Status
Early development. The v1 surface ships the gateway core plus Radarr and Sonarr; more services (Prowlarr, Plex, Overseerr/Seerr, Maintainerr, Lidarr) are planned.
Quick start
docker compose up -dThen:
Open
http://localhost:7475and set an admin password.Add a service (base URL + API key), test the connection, and enable it.
Open the Connect page to copy the MCP URL and bearer token into your AI client.
The config UI is published on localhost only by default. The MCP endpoint is exposed but always requires the token.
Connecting a client (VS Code / GitHub Copilot)
{
"servers": {
"mcparr": {
"type": "http",
"url": "http://your-host:7474/mcp",
"headers": { "Authorization": "Bearer <token-from-connect-page>" }
}
}
}For Claude Desktop, use the mcp-remote bridge (snippet on the Connect page).
Hosted connectors (Claude.ai, ChatGPT) require HTTPS - put mcparr behind a TLS
reverse proxy.
Configuration
All state lives in the /data volume (SQLite database, encryption key, MCP
token, audit log). Useful environment variables:
Variable | Default | Purpose |
|
| Bind address for both ports |
|
| Config UI port |
|
| MCP endpoint port |
|
| State directory |
| (generated) | Fernet key for secrets at rest |
| (generated) | MCP bearer token (env wins; rotation disabled) |
| (unset) | Set the admin password headlessly on first run |
|
| Optional service seed file |
You can pre-populate services declaratively with a seed file - see config.yaml.example.
Security
The MCP endpoint always requires a token; the UI always requires a password. Service keys are encrypted at rest. See SECURITY.md and the threat model for details.
Development
python -m venv .venv && source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install -e ".[dev]"
pytest -q
ruff check .
python -m mcparr.main # runs both servers locallyTranslations are managed with Babel (babel.cfg); compile catalogs with
pybabel compile -d mcparr/ui/locales -D messages.
Adding a service
Create a ServiceModule subclass under mcparr/services/, declare its metadata
and tools, and decorate it with @register. The base class provides the HTTP
client, pagination, result shaping, and error mapping. Radarr and Sonarr are the
reference implementations.
License
See LICENSE.
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.
Latest Blog Posts
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/PhillyUrbs/mcparr'
If you have feedback or need assistance with the MCP directory API, please join our Discord server