overseerr-mcp-server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| OVERSEERR_URL | Yes | The URL of your Overseerr instance (e.g., http://localhost:5055) | |
| OVERSEERR_API_KEY | Yes | Your Overseerr API key (found in Overseerr Settings → API Keys) |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| overseerr_statusA | Get the status of the Overseerr server. No arguments required. |
| overseerr_movie_requestsA | Get a paginated list of movie requests that satisfy the filter arguments. |
| overseerr_tv_requestsA | Get a paginated list of TV show requests that satisfy the filter arguments. |
| overseerr_request_movie_to_libraryA | Submit a movie request to a specific Overseerr library identified by its name, on behalf of a specific user. Args: tmdb_id (int): The The Movie Database (TMDB) ID of the movie to request. library_name (str): The name of the target Radarr (Movie) library configured in Overseerr. Must match exactly. Available: None fetched. user_display_name (str): The exact display name of the Overseerr user making the request. Available: None fetched (or duplicates exist). |
| overseerr_request_tv_to_libraryA | Submit a TV show request to a specific Overseerr library identified by its name, on behalf of a specific user. Args: tmdb_id (int): The The Movie Database (TMDB) ID of the TV show to request. library_name (str): The name of the target Sonarr (TV) library configured in Overseerr. Must match exactly. Available: None fetched. user_display_name (str): The exact display name of the Overseerr user making the request. Available: None fetched (or duplicates exist). seasons (Optional[List[int]]): List of season numbers to request. If omitted or empty, all seasons will be requested. |
| overseerr_search_mediaB | Search for movies and TV shows available on Overseerr. |
| overseerr_get_available_librariesA | Get the configured Sonarr (TV) and Radarr (Movie) server IDs and names from Overseerr. |
| overseerr_get_usersA | Get a list of all users configured in Overseerr. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 8 tools
Each tool has a clear, distinct purpose: user management, server status, request retrieval for movies/TV, request submission for movies/TV, media search, and library configuration. No overlapping tools.
All tools share the 'overseerr_' prefix, and most follow a verb_noun pattern (get_users, search_media, request_movie_to_library). However, 'status' and 'movie_requests' are nouns without a leading verb, making the pattern slightly inconsistent.
8 tools is well-scoped for an Overseerr media request management server. Each tool covers a necessary function without redundancy.
The tool set covers core workflows: searching, requesting, listing requests, and fetching context (users, libraries, status). Missing update/delete or approval actions for requests, but the primary request lifecycle is represented.