- ๐ 99% fewer API calls for batch operations (150-300 โ 1) - โก 88% token reduction with compact response formats - ๐ฏ Batch Dedupe Mode - Check 50-100 titles in one operation - ๐ Smart Caching - 70-85% API call reduction - ๐ก๏ธ Safety Features - Multi-season confirmation, validation - ๐ฆ 4 Powerful Tools - Consolidated from 8 for clarity - ๐ค Automated Security Scanning - Dependabot for dependenc
Add this skill
npx mdskills install jhomen368/overseerr-mcpWell-documented MCP server with powerful batch operations, smart caching, and comprehensive media management tools
A Model Context Protocol (MCP) server for Overseerr and Seerr (the unified successor) that enables AI assistants to search, request, and manage media through the Model Context Protocol.
| Tool | Purpose | Key Features |
|---|---|---|
| search_media | Search & dedupe | Single/batch search, dedupe mode for 50-100 titles, franchise awareness |
| request_media | Request movies/TV | Batch requests, season validation, multi-season confirmation, dry-run mode |
| manage_media_requests | Manage requests | List/approve/decline/delete, filtering, summary statistics |
| get_media_details | Get media info | Batch lookup, flexible detail levels (basic/standard/full) |
npm install -g @jhomen368/overseerr-mcp
Configure with Claude Desktop:
Add to your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json{
"mcpServers": {
"seerr": {
"command": "npx",
"args": ["-y", "@jhomen368/overseerr-mcp"],
"env": {
"SEERR_URL": "https://seerr.example.com",
"SEERR_API_KEY": "your-api-key-here"
}
}
}
}
Legacy Overseerr Users: If you're still using Overseerr (not Seerr), you can continue using the legacy variables:
{ "env": { "OVERSEERR_URL": "https://overseerr.example.com", "OVERSEERR_API_KEY": "your-api-key-here" } }Both
OVERSEERR_*andSEERR_*variables are supported for backward compatibility. Legacy variables will be removed in v3.0.0.
docker run -d \
--name seerr-mcp \
-p 8085:8085 \
-e SEERR_URL=https://your-seerr-instance.com \
-e SEERR_API_KEY=your-api-key-here \
ghcr.io/jhomen368/overseerr-mcp:latest
Docker Compose:
services:
seerr-mcp:
image: ghcr.io/jhomen368/overseerr-mcp:latest
container_name: seerr-mcp
ports:
- "8085:8085"
environment:
- SEERR_URL=https://your-seerr-instance.com
- SEERR_API_KEY=your-api-key-here
restart: unless-stopped
Test the server:
curl http://localhost:8085/health
Connect MCP clients:
http://localhost:8085/mcpgit clone https://github.com/jhomen368/overseerr-mcp.git
cd overseerr-mcp
npm install
npm run build
node build/index.js
// Check 50-100 titles in ONE API call
search_media({
dedupeMode: true,
titles: [
"Frieren: Beyond Journey's End",
"My Hero Academia Season 7",
"Demon Slayer Season 4",
// ... 47 more titles
],
autoNormalize: true // Strips "Season N", "Part N", etc.
})
Response:
{
"summary": {
"total": 50,
"pass": 35,
"blocked": 15,
"passRate": "70%"
},
"results": [
{ "title": "Frieren", "status": "pass", "id": 209867 },
{ "title": "My Hero Academia S7", "status": "pass", "franchiseInfo": "S1-S6 in library" },
{ "title": "Demon Slayer S4", "status": "blocked", "reason": "Already requested" }
]
}
// Single movie request
request_media({
mediaType: "movie",
mediaId: 438631
})
// TV show with specific seasons
request_media({
mediaType: "tv",
mediaId: 82856,
seasons: [1, 2]
})
// All seasons (excludes season 0 by default)
request_media({
mediaType: "tv",
mediaId: 82856,
seasons: "all"
})
// List with filters
manage_media_requests({
action: "list",
filter: "pending",
take: 20
})
// Batch approve
manage_media_requests({
action: "approve",
requestIds: [123, 124, 125]
})
// Get summary statistics
manage_media_requests({
action: "list",
summary: true
})
Simply ask your AI assistant:
Required:
SEERR_URL - Your Seerr/Overseerr instance URLSEERR_API_KEY - API key from Settings โ GeneralLegacy (deprecated, will be removed in v3.0.0):
OVERSEERR_URL - Use SEERR_URL insteadOVERSEERR_API_KEY - Use SEERR_API_KEY insteadOptional (with defaults):
CACHE_ENABLED=true # Enable caching
CACHE_SEARCH_TTL=300000 # Search cache: 5 min
CACHE_MEDIA_TTL=1800000 # Media cache: 30 min
CACHE_REQUESTS_TTL=60000 # Request cache: 1 min
CACHE_MAX_SIZE=1000 # Max cache entries
REQUIRE_MULTI_SEASON_CONFIRM=true # Confirm >24 episodes
HTTP_MODE=false # Enable HTTP transport
PORT=8085 # HTTP server port
# Check logs
docker logs seerr-mcp
# Verify health
curl http://localhost:8085/health
# Restart container
docker restart seerr-mcp
# Ensure Node.js 18+
node --version
# Clean rebuild
rm -rf node_modules build
npm install
npm run build
Contributions welcome! Please see CONTRIBUTING.md for guidelines.
MIT License - see LICENSE for details
Install via CLI
npx mdskills install jhomen368/overseerr-mcpSeerr MCP Server is a free, open-source AI agent skill. - ๐ 99% fewer API calls for batch operations (150-300 โ 1) - โก 88% token reduction with compact response formats - ๐ฏ Batch Dedupe Mode - Check 50-100 titles in one operation - ๐ Smart Caching - 70-85% API call reduction - ๐ก๏ธ Safety Features - Multi-season confirmation, validation - ๐ฆ 4 Powerful Tools - Consolidated from 8 for clarity - ๐ค Automated Security Scanning - Dependabot for dependenc
Install Seerr MCP Server with a single command:
npx mdskills install jhomen368/overseerr-mcpThis downloads the skill files into your project and your AI agent picks them up automatically.
Seerr MCP Server works with Claude Code, Claude Desktop, Cursor, Vscode Copilot, Windsurf, Continue Dev, Gemini Cli, Amp, Roo Code, Goose. Skills use the open SKILL.md format which is compatible with any AI coding agent that reads markdown instructions.