Skip to main content
Glama
ptbsare

overseerr-mcp-server

by ptbsare

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
OVERSEERR_URLYesThe URL of your Overseerr instance (e.g., http://localhost:5055)
OVERSEERR_API_KEYYesYour 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

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
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.

Args:
    status (Optional[str]): Filter by media availability status (e.g., "pending", "available", "approved"). Valid values: "all", "approved", "available", "pending", "processing", "unavailable", "failed". Defaults to all if omitted or invalid.
    start_date (Optional[str]): Filter for requests created on or after this date, formatted as 'YYYY-MM-DDTHH:MM:SS.mmmZ'.
    take (Optional[int]): The number of results to return (page size). Defaults to 7.
    skip (Optional[int]): The number of results to skip (for pagination). Defaults to 0.
overseerr_tv_requestsA

Get a paginated list of TV show requests that satisfy the filter arguments.

Args:
    status (Optional[str]): Filter by media availability status (e.g., "pending", "available", "approved"). Valid values: "all", "approved", "available", "pending", "processing", "unavailable", "failed". Defaults to all if omitted or invalid.
    start_date (Optional[str]): Filter for requests created on or after this date, formatted as 'YYYY-MM-DDTHH:MM:SS.mmmZ'.
    take (Optional[int]): The number of results to return (page size). Defaults to 7.
    skip (Optional[int]): The number of results to skip (for pagination). Defaults to 0.
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.

Args:
    query (str): The search term (e.g., movie or TV show title).
    page (int): The page number for pagination (default is 1).
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

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.9/5.0

Scored across 8 tools

Disambiguation5/5

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.

Naming Consistency4/5

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.

Tool Count5/5

8 tools is well-scoped for an Overseerr media request management server. Each tool covers a necessary function without redundancy.

Completeness4/5

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.

Maintenance

ActivityMaintained
ResponsivenessNo issues