Overseerr MCP Server

Overseerr MCP Server

Allows Claude to interact with Overseerr, enabling users to search, request, and manage media for their Plex library through natural language.

jmagar

Entertainment & Media
Search
Visit Server

Tools

example_tool

An example tool that processes messages

get_daily_treasury_statement

Get the daily treasury statement for a specific day

get_media_details

Get detailed information about a specific movie or TV show

get_requests

Get a list of media requests from Overseerr

request_media

Request a movie or TV show to be added to the media server

search_media

Search for movies and TV shows in Overseerr

README

Overseerr MCP

A Model Context Protocol (MCP) integration for Overseerr that enables natural language interaction with your media request system through Claude AI. This server allows you to search for movies and TV shows, make media requests, and manage your Overseerr instance using conversational language.

Example Conversations

Here are some example conversations you can have with Claude using this server:

You: Can you find any recent sci-fi movies?
Claude: Let me search for recent science fiction films...
[Uses overseerr:search to find recent sci-fi movies]

You: That looks good! Can you request the second one?
Claude: I'll request that movie for you...
[Uses overseerr:request to submit the media request]

You: What TV shows are available about cooking?
Claude: I'll search for cooking-related TV shows...
[Uses overseerr:search with type='tv' to find cooking shows]

Features

Media Search

  • Search across movies, TV shows, and people
  • Get detailed information about media including:
    • Title and release date
    • Plot overview
    • Availability status
    • Request status
  • Filter by media type (movie/TV/person)
  • Natural language queries (e.g., "find recent sci-fi movies" or "search for shows like Breaking Bad")

Media Requests

  • Request movies and TV shows
  • Specify individual seasons for TV shows
  • Track request status
  • Get notifications about request updates
  • Natural language requests (e.g., "request the latest Batman movie" or "add Succession to my watchlist")

Integration

  • Seamless Claude AI integration through stdio transport
  • Real-time interaction with your Overseerr instance
  • Secure API key handling
  • Rate limiting and error handling
  • Easy configuration through environment variables

Setup

Prerequisites

  • Node.js
  • pnpm
  • Claude Desktop
  • Overseerr instance

Quick Start

  1. Install dependencies:
pnpm install
  1. Build the project:
pnpm build
  1. Configure environment:
# Copy template
cp .env.template .env

# Edit .env with your values
OVERSEERR_URL=your_overseerr_url
OVERSEERR_API_KEY=your_api_key
  1. Configure Claude Desktop:

Linux/Mac:

{
  "overseerr": {
    "command": "node",
    "args": ["/path/to/overseerr/packages/server/dist/index.js"],
    "cwd": "/path/to/overseerr",
    "transport": {
      "type": "stdio"
    },
    "env": {
      "OVERSEERR_URL": "your_overseerr_url",
      "OVERSEERR_API_KEY": "your_api_key"
    }
  }
}

Windows (note the double backslashes):

{
  "overseerr": {
    "command": "node",
    "args": ["C:\\path\\to\\overseerr\\packages\\server\\dist\\index.js"],
    "cwd": "C:\\path\\to\\overseerr",
    "transport": {
      "type": "stdio"
    },
    "env": {
      "OVERSEERR_URL": "your_overseerr_url",
      "OVERSEERR_API_KEY": "your_api_key"
    }
  }
}
  1. Start the server:
pnpm start

Technical Details

Project Structure

packages/
├── config/      # Configuration management
├── overseerr/   # Overseerr API client
├── server/      # MCP server implementation
└── shared/      # Shared types and utilities

Available Tools

Search Media (overseerr:search)

Search for movies, TV shows, and people in the Overseerr database.

{
  // The search query - can be a title, person, or general description
  query: string,
  
  // Optional: Filter by type
  // - 'movie': Only search movies
  // - 'tv': Only search TV shows
  // - 'person': Only search people
  type?: 'movie' | 'tv' | 'person'
}

Example queries:

  • "Search for Inception"
  • "Find TV shows from 2023"
  • "Look for movies with Tom Hanks"

Request Media (overseerr:request)

Request movies or TV shows to be added to your media library.

{
  // The TMDB ID of the media to request
  mediaId: number,
  
  // Type of media being requested
  // - 'movie': Request a movie
  // - 'tv': Request a TV show
  mediaType: 'movie' | 'tv',
  
  // Optional: For TV shows, specify which seasons to request
  // If not provided, requests all available seasons
  seasons?: number[]
}

Example requests:

  • Request a movie: "Request The Matrix"
  • Request specific seasons: "Add seasons 1-3 of The Office"
  • Request all seasons: "Request the complete series of Breaking Bad"

Configuration

Environment Variables

  • OVERSEERR_URL: Your Overseerr instance URL
  • OVERSEERR_API_KEY: Your Overseerr API key

Error Handling

The server implements robust error handling:

  • API errors with meaningful messages
  • Rate limiting protection
  • Request validation
  • Connection error recovery

Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Commit your changes
  4. Push to the branch
  5. Create a Pull Request

License

MIT

Recommended Servers

Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
YouTube Transcript MCP Server

YouTube Transcript MCP Server

This server retrieves transcripts for given YouTube video URLs, enabling integration with Goose CLI or Goose Desktop for transcript extraction and processing.

Featured
Python
serper-search-scrape-mcp-server

serper-search-scrape-mcp-server

This Serper MCP Server supports search and webpage scraping, and all the most recent parameters introduced by the Serper API, like location.

Featured
TypeScript
The Verge News MCP Server

The Verge News MCP Server

Provides tools to fetch and search news from The Verge's RSS feed, allowing users to get today's news, retrieve random articles from the past week, and search for specific keywords in recent Verge content.

Featured
TypeScript
Google Search Console MCP Server

Google Search Console MCP Server

A server that provides access to Google Search Console data through the Model Context Protocol, allowing users to retrieve and analyze search analytics data with customizable dimensions and reporting periods.

Featured
TypeScript
Crypto Price & Market Analysis MCP Server

Crypto Price & Market Analysis MCP Server

A Model Context Protocol (MCP) server that provides comprehensive cryptocurrency analysis using the CoinCap API. This server offers real-time price data, market analysis, and historical trends through an easy-to-use interface.

Featured
TypeScript
MCP Spotify Server

MCP Spotify Server

Enables interaction with Spotify's music catalog via the Spotify Web API, supporting searches, artist information retrieval, playlist management, and automatic token handling.

Featured
TypeScript
mcp-server-youtube-transcript

mcp-server-youtube-transcript

A Model Context Protocol server that enables retrieval of transcripts from YouTube videos. This server provides direct access to video captions and subtitles through a simple interface.

Featured
JavaScript
MCP PubMed Search

MCP PubMed Search

Server to search PubMed (PubMed is a free, online database that allows users to search for biomedical and life sciences literature). I have created on a day MCP came out but was on vacation, I saw someone post similar server in your DB, but figured to post mine.

Featured
Python