Overseerr MCP
Alternative media server where requested content becomes available after download completion.
Media server where requested content becomes available after download completion.
Movie download automation; media requests submitted through Overseerr are forwarded to Radarr for download fulfillment.
TV show download automation; media requests submitted through Overseerr are forwarded to Sonarr for download fulfillment.
Provides movie and TV show details (cast, synopsis, release date, etc.) via TMDB API, used to inform media requests.
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., "@Overseerr MCPSearch for Dune"
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.
Overseerr MCP
MCP server for searching Overseerr media, retrieving TMDB-backed details, and submitting movie or TV requests from Claude, Codex, or any MCP client.
Overview
The server talks to an existing Overseerr instance via its REST API and exposes MCP tools over stdio (default) or HTTP transports. All Overseerr API authentication is handled server-side — clients only need a Bearer token for the MCP endpoint itself when using HTTP transport.
What this repository ships
overseerr_mcp/: FastMCP server and Overseerr HTTP client.claude-plugin/,.codex-plugin/,gemini-extension.json: client manifestsskills/: Claude-facing skill docs for Overseerr and bundled media servicesbin/: plugin executables (load-env,sync-urls,extract-keys, etc.)docker-compose.yml,Dockerfile,entrypoint.sh: container deploymentdocs/: ENV variable reference and upstream API spec
Tools
Tool | Purpose |
| Search movies or TV shows by title |
| Fetch full movie details by TMDB ID |
| Fetch full TV show details (including seasons) by TMDB ID |
| Submit a movie request |
| Submit a TV request, optionally scoped to specific seasons |
| List failed requests with pagination |
| Return built-in markdown help for all tools |
The server also exposes GET /health (unauthenticated) for liveness checks.
search_media
Search for movies or TV shows by title.
Parameter | Type | Required | Default | Description |
| string | yes | — | Title or keyword to search |
| string | no |
|
|
Response schema — each item in the returned list:
Field | Type | Description |
| int | TMDB integer ID (use this for all subsequent tool calls) |
| string |
|
| string | Display title (falls back to |
| string | Release or first-air year (e.g. |
| string | Plot summary |
| string | TMDB poster path (relative, e.g. |
Examples:
search_media(query="Dune")
search_media(query="Breaking Bad", media_type="tv")
search_media(query="Inception", media_type="movie")Returns an error string if no results match or if the Overseerr API fails.
get_movie_details
Fetch detailed information for a movie from Overseerr. Returns the full Overseerr/TMDB movie object including cast, genres, runtime, status, and current request state.
Parameter | Type | Required | Description |
| int | yes | TMDB integer ID from |
Key response fields:
Field | Type | Description |
| int | TMDB ID |
| string | Movie title |
| string | ISO date ( |
| int | Runtime in minutes |
| string | Plot summary |
| list | Genre objects with |
| string | TMDB release status (e.g. |
| object | Overseerr request/availability state (see below) |
| object |
|
| string | TMDB poster path |
mediaInfo fields:
Field | Type | Description |
| int | Overseerr media status code (see Request Status) |
| list | Existing request objects for this media |
| list | Radarr/Sonarr download state |
Example:
get_movie_details(tmdb_id=438631)get_tv_show_details
Fetch detailed information for a TV show from Overseerr. Includes season list — use the season numbers here to scope a request_tv_show call.
Parameter | Type | Required | Description |
| int | yes | TMDB integer ID from |
Key response fields:
Field | Type | Description |
| int | TMDB ID |
| string | Show title |
| string | ISO date of first episode |
| int | Total season count |
| int | Total episode count |
| string | Plot summary |
| list | Genre objects with |
| string | TMDB show status (e.g. |
| list | Season objects with |
| object | Overseerr request/availability state |
Example:
get_tv_show_details(tmdb_id=1396)request_movie
Submit a movie request to Overseerr. Overseerr forwards the request to Radarr for download.
Parameter | Type | Required | Description |
| int | yes | TMDB integer ID for the movie to request |
Response fields:
Field | Type | Description |
| int | Overseerr request ID |
| int | Request status code (see Request Status) |
| object | Media object with |
| object | User who submitted the request |
| string | ISO timestamp |
| string | ISO timestamp of last status change |
Example:
request_movie(tmdb_id=438631)request_tv_show
Submit a TV show request. Optionally request specific seasons. Omitting seasons requests all seasons.
Parameter | Type | Required | Default | Description |
| int | yes | — | TMDB integer ID for the TV show |
| list[int] | no |
| Season numbers to request; omit to request all |
Examples:
# Request all seasons
request_tv_show(tmdb_id=1396)
# Request only seasons 1 and 2
request_tv_show(tmdb_id=1396, seasons=[1, 2])
# Request a single season
request_tv_show(tmdb_id=1396, seasons=[4])Season numbers come from get_tv_show_details → seasons[].seasonNumber. Season 0 is typically specials; omit it unless specifically wanted.
list_failed_requests
List media requests that have entered a failed state. Results are sorted by most recently modified.
Parameter | Type | Required | Default | Description |
| int | no |
| Number of results to return |
| int | no |
| Number of results to skip (for pagination) |
Response fields — each item in the returned list:
Field | Type | Description |
| int | Overseerr request ID |
| int | Request status code (see Request Status) |
| string |
|
| int | TMDB ID of the media |
| string | Media title |
| string | Display name of the requesting user |
| string | ISO timestamp of initial request |
| string | ISO timestamp of last status change |
Pagination examples:
# First page
list_failed_requests(count=20)
# Second page
list_failed_requests(count=20, skip=20)
# Third page
list_failed_requests(count=20, skip=40)Returns the string "No failed requests found." when the list is empty.
overseerr_help
Returns the built-in markdown help document covering all tools and parameters.
overseerr_help()TMDB ID
The TMDB ID is The Movie Database's integer identifier for a specific title. It is the primary key used by Overseerr and all tools in this server.
Always search first with
search_media. ThetmdbIdfield in each result is what you pass to all other tools.Never guess or construct a TMDB ID manually.
The same integer is used for both movies and TV shows — the
mediaTypefield distinguishes them.
Example: searching for "Dune: Part Two" returns tmdbId: 693134. Use that value directly in get_movie_details(tmdb_id=693134) and request_movie(tmdb_id=693134).
Request Status
Overseerr uses integer status codes for request and media state. These appear in request_movie / request_tv_show responses and list_failed_requests output.
Code | Name | Meaning |
|
| Request submitted, awaiting admin approval |
|
| Approved; sent to Radarr/Sonarr for download |
|
| Request was rejected by an admin |
|
| Media is available in Plex/Jellyfin |
|
| Some seasons/episodes are available |
|
| Download or processing error in Radarr/Sonarr |
Approval workflow:
After request_movie or request_tv_show, the request enters pending (1) unless the Overseerr instance has auto-approval enabled for the requesting user. Once approved (2), Overseerr sends the request to Radarr (movies) or Sonarr (TV). When the download completes and Plex/Jellyfin picks it up, the status advances to available (4). A failed (8) status means an error in the download pipeline — report the title and request ID to the admin.
Complete Workflow Example
# 1. Search by title
search_media(query="Dune: Part Two")
# → returns [{tmdbId: 693134, mediaType: "movie", title: "Dune: Part Two", year: "2024", ...}]
# 2. Inspect details to confirm and check existing request status
get_movie_details(tmdb_id=693134)
# → returns full movie object with mediaInfo.status showing current state
# 3. Submit the request
request_movie(tmdb_id=693134)
# → returns {id: 42, status: 1, media: {tmdbId: 693134, ...}, ...}
# status 1 = pending approval
# 4. For a TV show, check seasons first
get_tv_show_details(tmdb_id=1396)
# → returns show object with seasons list showing seasonNumber values
# 5. Request specific seasons
request_tv_show(tmdb_id=1396, seasons=[1, 2, 3])
# 6. Review any download failures
list_failed_requests(count=20)Installation
Marketplace
/plugin marketplace add jmagar/claude-homelab
/plugin install overseerr-mcp @jmagar-claude-homelabLocal development
uv sync --dev
uv run overseerr-mcp-serverAlternative entrypoint:
uv run python -m overseerr_mcpConfiguration
All credentials live in a single dotfile:
~/.config/overseerr-mcp/.envBootstrap it from the example:
just setup # mkdir -p ~/.config/overseerr-mcp && cp .env.example ~/.config/overseerr-mcp/.envThen edit ~/.config/overseerr-mcp/.env and fill in OVERSEERR_URL and OVERSEERR_API_KEY.
See docs/ENV.md for the full variable reference including media service vars, Docker vars, and how each deployment mode loads the file.
Key variables
Variable | Required | Default | Description |
| yes | — | Base URL of your Overseerr instance (e.g. |
| yes | — | Overseerr API key (Settings → General → API Key) |
| no |
|
|
| no |
| Port for HTTP transport |
| no | — | Bearer token for HTTP auth; generate with |
| no |
| Disable bearer auth on HTTP transport (only if network-level auth is in place) |
| no |
|
|
Transport modes
Mode | When to use |
| Claude Code plugin, |
| Docker, standalone server, any HTTP MCP client |
For HTTP transport, the MCP endpoint is at /mcp. Requests must include Authorization: Bearer <OVERSEERR_MCP_TOKEN> unless OVERSEERR_MCP_NO_AUTH=true. The /health endpoint is always unauthenticated.
Authentication
just gen-token # generates: openssl rand -hex 32Set OVERSEERR_MCP_TOKEN in ~/.config/overseerr-mcp/.env.
Error handling
All tools return an error string beginning with "Error:" when something goes wrong. Common errors:
Error pattern | Cause |
|
|
| TMDB ID does not exist in Overseerr |
| Request already exists for this media |
|
|
| Server startup failed (check logs) |
| Search returned zero matches |
Always check whether the return value is a string before treating it as a dict or list.
Development
just dev # run server locally
just lint # ruff check
just fmt # ruff format
just typecheck # ty check
just test # run tests
just up # docker compose up -d
just logs # docker compose logs -f
just health # curl /health
just test-live # end-to-end live test (requires running server)
just gen-token # generate a bearer token
just check-contract # plugin contract lintVerification
Run after changes:
just lint
just typecheck
just test
just healthFor a live end-to-end check against a running server:
just test-liveRelated plugins
Plugin | Category | Description |
core | Core agents, commands, skills, and setup/health workflows for homelab management. | |
infrastructure | Query, monitor, and manage Unraid servers: Docker, VMs, array, parity, and live telemetry. | |
infrastructure | Monitor and manage UniFi devices, clients, firewall rules, and network health. | |
utilities | Send and manage push notifications via a self-hosted Gotify server. | |
infrastructure | Create, edit, and manage SWAG nginx reverse proxy configurations. | |
infrastructure | Docker management (Flux) and SSH remote operations (Scout) across homelab hosts. | |
infrastructure | Manage Docker environments, containers, images, volumes, networks, and GitOps via Arcane. | |
infrastructure | Receive, index, and search syslog streams from all homelab hosts via SQLite FTS5. | |
dev-tools | Scaffold, review, align, and deploy homelab MCP plugins with agents and canonical templates. |
License
MIT
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/jmagar/overseerr-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server