FastMCP server for Overseerr

by ptbsare

1 stars
139 downloads
Not rated
GitHub

About

FastMCP server to interact with the Overseerr API for movie and TV show requests management, built using the fastmcp library.

Details

Author
ptbsare
GitHub stars
1
Downloads
139
Categories
Other

- Get the status of the Overseerr server.
- Search for movies and TV shows available on Overseerr.
- Submit movie and TV show requests to specific libraries.
- List movie and TV requests with filtering by status and date.
- Retrieve configured Sonarr/Radarr libraries and all users.
- Request TV shows with optional season selection.

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name FastMCP server for Overseerr
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Run the server using uvx (recommended) or clone the repository for local development. Set the OVERSEERR_API_KEY and OVERSEERR_URL environment variables. Add the server to Claude Desktop’s configuration. Then instruct an AI assistant to use the provided tools.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "fastmcp server for overseerr": {
            "overseerr-mcp-server-ptbsare": {
                "command": "uv",
                "args": [
                    "venv"
                ]
            }
        }
    }
}

McpServers

{
    "overseerr-mcp-server-ptbsare": {
        "command": "uv",
        "args": [
            "venv"
        ]
    }
}

FastMCP server for Overseerr

FastMCP server to interact with the Overseerr API for movie and TV show requests management, built using the fastmcp library.

Project Repository: https://github.com/ptbsare/overseerr-mcp-server

Components

Tools

The server implements the following tools to interact with Overseerr:

- overseerr_status: Get the status of the Overseerr server.
- overseerr_movie_requests: Get a paginated list of movie requests. Accepts optional status, start_date (YYYY-MM-DDTHH:MM:SS.mmmZ format), take (default 7), and skip (default 0).
- overseerr_tv_requests: Get a paginated list of TV show requests. Accepts optional status, start_date (YYYY-MM-DDTHH:MM:SS.mmmZ format), take (default 7), and skip (default 0).
- overseerr_request_movie_to_library: Submit a movie request using its TMDB ID to a specific library, on behalf of a specific user. Requires tmdb_id, library_name, and user_display_name. Available library names and user display names (unique ones only) are fetched at server startup and included in the tool's argument descriptions.
- overseerr_request_tv_to_library: Submit a TV show request using its TMDB ID to a specific library, on behalf of a specific user. Requires tmdb_id, library_name, and user_display_name. Optionally accepts seasons (list of integers). Available library names and user display names (unique ones only) are fetched at server startup and included in the tool's argument descriptions.
- overseerr_search_media: Search for movies and TV shows available on Overseerr. Accepts query and optional page (default 1).
- overseerr_get_available_libraries: Get the configured Sonarr (TV) and Radarr (Movie) server IDs and names from Overseerr.
- overseerr_get_users: Get a list of all users configured in Overseerr, including their ID, username, email, displayName, etc.

Example prompts

It's good to first instruct your AI assistant (e.g., Claude) to use the Overseerr tools. Then it can call the appropriate tool when needed.

Try prompts like these:

- Get the status of our Overseerr server.
- Show me the first 5 movie requests that are currently pending.
- List all TV show requests from 2024-01-01 that are now available.
- What movies have been requested but are not available yet?
- What TV shows have recently become available in our library?
- Search for the movie "Dune: Part Two" on Overseerr.
- What movie and TV libraries are configured in Overseerr?
- List all users in Overseerr.
- Request the movie with TMDB ID 693134 for the user 'John Doe' in the 'Movies HD' library. (Uses user_display_name='John Doe', library_name='Movies HD')
- Request seasons 1 and 2 for the TV show with TMDB ID 1396 for user 'Jane Smith' in the 'TV Shows 4K' library. (Uses user_display_name='Jane Smith')

Quickstart

Prerequisites

- uv (installation instructions: https://github.com/astral-sh/uv)
- An Overseerr instance running.
- API Key from your Overseerr instance (Settings → API Keys).

Run with uvx (Recommended - No Installation Required)

You can run the server directly from the git repository using uvx — no clone or install needed:

uvx --from git+https://github.com/ptbsare/overseerr-mcp-server.git overseerr-mcp-server

Claude Desktop Configuration

Add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "overseerr-mcp-server": {
      "command": "uvx",
      "args": [
        "--from",
        "git+https://github.com/ptbsare/overseerr-mcp-server.git",
        "overseerr-mcp-server"
      ],
      "env": {
        "OVERSEERR_API_KEY": "<your_api_key_here>",
        "OVERSEERR_URL": "<your_overseerr_url>"
      }
    }
  }
}

Replace <your_api_key_here> and <your_overseerr_url> with your actual Overseerr API key and URL.

Environment Variables

The following environment variables are required:

- OVERSEERR_API_KEY: Your Overseerr API key (found in Overseerr Settings → API Keys)
- OVERSEERR_URL: The URL of your Overseerr instance (e.g., http://localhost:5055)

For clients like Claude Desktop, add these to the env field as shown above. For local use, you can export them or use a .env file:

OVERSEERR_API_KEY=your_api_key_here
OVERSEERR_URL=http://localhost:5055

Local Development Installation

If you prefer to install locally for development:

git clone https://github.com/ptbsare/overseerr-mcp-server.git
cd overseerr-mcp-server
uv venv
source .venv/bin/activate # On Windows use .venv\Scripts\activate
uv pip install -e .

Development

Setup

Follow the installation steps using uv pip install -e . for an editable install.

Dependencies

Install or sync dependencies using uv:

```bash
uv sync

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.