
Jellyseerr MCP Server
Enables interaction with Jellyseerr media request systems through natural language. Supports searching for media, creating requests, checking request status, and managing your media library workflow.
README
Jellyseerr MCP Server
An MCP (Model Context Protocol) server for Jellyseerr that exposes Jellyseerr API functionality as MCP tools usable by LLM clients. It includes colorful, emoji-forward logging and clear console output.
Features
- Exposes key Jellyseerr endpoints as MCP tools (search, request, get request status, etc.)
- Async HTTP client with robust error handling and timeouts
- Colorful, structured logging via Rich with emoji indicators
- Configuration via environment variables (
.env
supported)
Requirements
- Python 3.10+
- Packages in
requirements.txt
Setup
- Create and activate a virtualenv.
pip install -r requirements.txt
- Copy
.env.example
to.env
and set your values.
JELLYSEERR_URL=https://your-jellyseerr.example.com
JELLYSEERR_API_KEY=your_api_key_here
JELLYSEERR_TIMEOUT=15
Running the MCP server
This server supports stdio (default) and optional HTTP transports.
Stdio (recommended for MCP clients):
python -m jellyseerr_mcp
You should see colorful logs indicating the server is ready over stdio.
HTTP (SSE) with Bearer token auth (for tools that prefer HTTP + OAuth-style auth):
FASTMCP_HOST=127.0.0.1 FASTMCP_PORT=8797 MCP_TRANSPORT=sse \
AUTH_ENABLED=true AUTH_ISSUER_URL=http://localhost:8797 \
AUTH_RESOURCE_SERVER_URL=http://localhost:8797 \
AUTH_BEARER_TOKENS=devtoken123 python -m jellyseerr_mcp
Then connect your MCP client to http://127.0.0.1:8797
and pass Authorization: Bearer devtoken123
.
Exposed tools (initial set)
search_media(query: str)
— Search Jellyseerr for media by query.request_media(media_id: int, media_type: str)
— Create a media request.get_request(request_id: int)
— Fetch a request’s details/status.ping()
— Liveness check with server/transport info.
More tools can be added easily — see jellyseerr_mcp/server.py
.
Notes
- The previous FastAPI stub has been replaced with a proper MCP server scaffold.
- HTTP transport (SSE) is available with optional bearer token auth. Full OAuth 2.0 flows require an external issuer or a provider implementation — tell me your preferred OAuth provider and I’ll wire it in.
- The bearer token authentication is a simple implementation and not a full OAuth 2.0 flow. It is suitable for local development or simple deployments until an external issuer is used.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
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.

E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
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.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.