What is the Overseerr MCP MCP server?
MCP server for Overseerr media requests and discovery.
How to install Overseerr MCP
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
OVERSEERR_URLrequiredBase URL of your Overseerr instance, e.g. https://overseerr.example.com.
OVERSEERR_API_KEYrequiredsecretOverseerr API key (Settings > General > API Key).
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"overseerr-mcp": {
"command": "uvx",
"args": [
"overseerr-mcp"
],
"env": {
"OVERSEERR_URL": "<YOUR_OVERSEERR_URL>",
"OVERSEERR_API_KEY": "<YOUR_OVERSEERR_API_KEY>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"overseerr-mcp": {
"command": "uvx",
"args": [
"overseerr-mcp"
],
"env": {
"OVERSEERR_URL": "<YOUR_OVERSEERR_URL>",
"OVERSEERR_API_KEY": "<YOUR_OVERSEERR_API_KEY>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"overseerr-mcp": {
"command": "uvx",
"args": [
"overseerr-mcp"
],
"env": {
"OVERSEERR_URL": "<YOUR_OVERSEERR_URL>",
"OVERSEERR_API_KEY": "<YOUR_OVERSEERR_API_KEY>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"overseerr-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"overseerr-mcp"
],
"env": {
"OVERSEERR_URL": "<YOUR_OVERSEERR_URL>",
"OVERSEERR_API_KEY": "<YOUR_OVERSEERR_API_KEY>"
}
}
}
}Claude Code
claude mcp add overseerr-mcp --env OVERSEERR_URL=<YOUR_OVERSEERR_URL> --env OVERSEERR_API_KEY=<YOUR_OVERSEERR_API_KEY> -- uvx overseerr-mcpRelated MCP servers
MCP server for self-hosted Gotify push notifications and message management.
View repository →MCP server for Unraid API — provides tools to interact with an Unraid server's GraphQL API.
View repository →