seerr-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@seerr-mcpadd Dune to my library"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
seerr-mcp
A remote MCP server that lets an AI assistant search your media catalog and add movies and shows to Overseerr or Jellyseerr. Ask for a title in plain language, the assistant finds it, confirms the match, and requests it. Radarr and Sonarr take it from there.
It runs as a single Cloudflare Worker with no database and no build step. Any MCP client that speaks Streamable HTTP can connect: Claude Code, Claude Desktop, a hosted voice agent that answers a phone number, or your own code.
MCP client -> POST /mcp on your Worker (bearer gated by MCP_TOKEN)
-> Overseerr / Jellyseerr (/api/v1, X-Api-Key)
-> Radarr / Sonarr addTools
Tool | What it does |
| Search the catalog. Returns up to five matches with title, year, type, current availability, and a tmdb_id |
| Add a confirmed movie or show. TV defaults to all seasons. Approved automatically unless you turn that off |
| Report whether a title is already available, downloading, or already requested |
Related MCP server: Overseerr MCP Server
What you need
A running Overseerr or Jellyseerr that this Worker can reach over the public internet, plus an admin api key from Settings, General, API Key.
A Cloudflare account. The free plan is enough.
Node 18 or newer, for
npx wrangler.
The api key should belong to an admin. Requests then approve themselves, and the availability lookups that stop duplicate requests are allowed to run.
Setup
git clone https://github.com/Neoo-Blue/seerr-mcp.git
cd seerr-mcp
npm installGenerate a bearer token. This is the only thing standing between the open internet and write access to your media stack, so make it a real random value and keep it out of shell history you share:
openssl rand -hex 24Set the three secrets. Wrangler prompts for each value and never writes it to disk:
npx wrangler secret put MCP_TOKEN # the value you just generated
npx wrangler secret put SEERR_URL # e.g. https://seerr.example.com
npx wrangler secret put SEERR_APIKEY # Seerr Settings, General, API KeyDeploy:
npx wrangler deployYou get back a url like https://seerr-mcp.your-subdomain.workers.dev. That is
already public https, so it works as is. To serve it from your own hostname
instead, uncomment the routes block in wrangler.jsonc and set your zone.
Check it works
export SEERR_MCP=https://seerr-mcp.your-subdomain.workers.dev
export MCP_TOKEN=the-token-you-generated
# health, no auth needed
curl $SEERR_MCP/
# list the tools
curl -s -X POST $SEERR_MCP/mcp \
-H "Authorization: Bearer $MCP_TOKEN" \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
# search the catalog
curl -s -X POST $SEERR_MCP/mcp \
-H "Authorization: Bearer $MCP_TOKEN" \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"search_media","arguments":{"query":"Dune"}}}'A wrong token returns unauthorized with a 401. If tools/list works but
search_media says it could not reach the library, the Worker cannot see your
SEERR_URL or the api key is wrong.
Connect a client
Claude Code
claude mcp add --transport http seerr https://seerr-mcp.your-subdomain.workers.dev/mcp \
--header "Authorization: Bearer YOUR_MCP_TOKEN"Then just ask: "add Dune to the library" or "is The Bear available yet".
Claude Desktop and other MCP clients
Add a remote MCP server with the url https://your-worker/mcp and an
Authorization: Bearer YOUR_MCP_TOKEN header. Clients that only speak stdio can
reach it through mcp-remote:
{
"mcpServers": {
"seerr": {
"command": "npx",
"args": [
"-y", "mcp-remote",
"https://seerr-mcp.your-subdomain.workers.dev/mcp",
"--header", "Authorization: Bearer YOUR_MCP_TOKEN"
]
}
}
}A voice agent on a phone number
The same three tools turn this into a phone line people can call to add a movie. See docs/voice-agent.md for the wiring and a ready made concierge prompt.
Local development
cp .dev.vars.example .dev.vars # fill in the three values
npm run dev.dev.vars is gitignored. Point your curl calls at http://localhost:8787.
Configuration
Name | Where | Meaning |
| secret | Bearer every client must present on |
| secret | Base url of your Overseerr or Jellyseerr, no trailing path |
| secret | Admin api key, sent as |
| var in |
|
Notes on behaviour
Overseerr accepts repeat requests for titles that are already available or already downloading, with no error, which quietly creates duplicate rows.
request_mediatherefore checks real availability first and only posts a request when the title is genuinely absent. If it is already there, it says so instead of pretending it started a download.search_mediareturns the tmdb_id in its text so the model can pass it torequest_media, and the tool description tells the model never to read that number out loud. Worth keeping if you edit the prompts.The Worker never exposes your Seerr UI. It only calls
/api/v1server side, soSEERR_URLand the api key stay on Cloudflare and never reach the client.
Security
Anyone holding MCP_TOKEN can add anything to your library. Treat it like a
password: rotate it with npx wrangler secret put MCP_TOKEN if it ever lands in
a chat log, a screenshot, or a repo. Set SEERR_AUTOAPPROVE to 0 if you would
rather approve each request by hand.
License
MIT. See LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceEnables interaction with Jellyseerr media request systems through natural language. Supports searching for media, creating requests, checking request status, and managing your media library workflow.7
- Flicense-qualityDmaintenanceEnables interaction with Overseerr media request management through natural language. Supports searching for movies/TV shows, managing media requests, approving/denying requests, and monitoring server status.
- AlicenseAqualityAmaintenanceEnables AI assistants to interact with Overseerr for automated media discovery, requests, and management in your Plex ecosystem, including searching for movies/TV shows, requesting media, checking request status, and managing approvals.611819MIT
- Alicense-qualityCmaintenanceEnables AI assistants to manage media automation services like Sonarr, Radarr, Prowlarr, Bazarr, Overseerr, and Plex through natural language commands.7MIT
Related MCP Connectors
Connect AI assistants to your GitHub-hosted Obsidian vault to seamlessly access, search, and analy…
Search your knowledge bases from any AI assistant using hybrid RAG.
SEO research, audits, backlinks, GSC, and content workflow tools for AI agents.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Neoo-Blue/seerr-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server