mcp-mediastack

mcp-mediastack

Provides 45 tools for monitoring and managing a Docker-based media stack, including Sonarr, Radarr, and other services.

Category
Visit Server

README

mcp-mediastack

An MCP server that provides 45 tools for monitoring and managing a Docker-based media stack. Built with FastMCP and httpx.

Supported Services

  • Sonarr - TV series management
  • Radarr - Movie management
  • SABnzbd - Usenet downloader
  • qBittorrent - Torrent client
  • Prowlarr - Indexer management
  • Readarr - Book management
  • Bazarr - Subtitle management
  • Seerr - Media requests
  • Gluetun - VPN status monitoring

Quick Start

Docker Run

docker run -d \
  --name mediastack-mcp \
  -p 8888:8888 \
  -e MCP_TRANSPORT=sse \
  -e NAS_HOST=192.168.1.100 \
  -e SONARR_API_KEY=your_key \
  -e RADARR_API_KEY=your_key \
  -e SABNZBD_API_KEY=your_key \
  ghcr.io/aderaaij/mcp-mediastack:latest

Docker Compose

services:
  mediastack-mcp:
    image: ghcr.io/aderaaij/mcp-mediastack:latest
    container_name: mediastack-mcp
    restart: unless-stopped
    ports:
      - 8888:8888
    environment:
      - MCP_TRANSPORT=sse
      - MCP_PORT=8888
      - NAS_HOST=192.168.1.100
      - SONARR_API_KEY=${SONARR_API_KEY}
      - RADARR_API_KEY=${RADARR_API_KEY}
      - SABNZBD_API_KEY=${SABNZBD_API_KEY}
      - PROWLARR_API_KEY=${PROWLARR_API_KEY}
      - READARR_API_KEY=${READARR_API_KEY}
      - BAZARR_API_KEY=${BAZARR_API_KEY}
      - SEERR_API_KEY=${SEERR_API_KEY}
      - QBITTORRENT_USERNAME=${QBITTORRENT_USERNAME}
      - QBITTORRENT_PASSWORD=${QBITTORRENT_PASSWORD}

Environment Variables

Variable Default Description
MCP_TRANSPORT stdio Transport mode: stdio or sse
MCP_PORT 8888 Port for SSE transport
NAS_HOST 192.168.1.100 IP/hostname of your server running the media stack
SONARR_API_KEY Sonarr API key (Settings > General)
SONARR_PORT 8989 Sonarr port
RADARR_API_KEY Radarr API key
RADARR_PORT 7878 Radarr port
SABNZBD_API_KEY SABnzbd API key
SABNZBD_PORT 8080 SABnzbd port
QBITTORRENT_USERNAME admin qBittorrent username
QBITTORRENT_PASSWORD adminadmin qBittorrent password
QBITTORRENT_PORT 8090 qBittorrent port
PROWLARR_API_KEY Prowlarr API key
PROWLARR_PORT 9696 Prowlarr port
READARR_API_KEY Readarr API key
READARR_PORT 8787 Readarr port
BAZARR_API_KEY Bazarr API key
BAZARR_PORT 6767 Bazarr port
SEERR_API_KEY Seerr API key
SEERR_PORT 5055 Seerr port
GLUETUN_PORT 8005 Gluetun control API port
ENABLED_SERVICES Only load these services (comma-separated, e.g. sonarr,radarr)
DISABLED_SERVICES Skip these services (comma-separated, e.g. vpn,qbittorrent)

Selective tool loading

Tools are automatically loaded based on which API keys are set. Only set the keys for the services you use — tools for unconfigured services won't be registered.

  • API key services (Sonarr, Radarr, Readarr, Prowlarr, Bazarr, SABnzbd, Seerr): enabled when their API key is non-empty
  • qBittorrent and VPN: enabled by default (no API key). Use DISABLED_SERVICES=vpn,qbittorrent to disable
  • ENABLED_SERVICES: override auto-detection with an explicit whitelist (e.g. ENABLED_SERVICES=sonarr,radarr)

Tools

Monitoring (28 tools)

Tool Description
get_system_overview Combined status of all services
get_vpn_status Current VPN connection info via Gluetun
check_vpn_health Verify VPN is working (IP leak check)
get_sonarr_status Sonarr system status
get_sonarr_queue Active download queue
get_sonarr_calendar Upcoming episodes
get_sonarr_activity Recent download history
get_sonarr_missing Missing episodes
search_sonarr_series Search existing library
get_sonarr_library_stats Library statistics
get_radarr_status Radarr system status
get_radarr_queue Active download queue
get_radarr_calendar Upcoming movies
get_radarr_activity Recent download history
get_radarr_missing Missing movies
search_radarr_movies Search existing library
get_radarr_library_stats Library statistics
get_sabnzbd_status SABnzbd queue and status
get_sabnzbd_history Download history
get_qbittorrent_status qBittorrent transfer info
get_qbittorrent_torrents List torrents with filters
get_prowlarr_status Indexer status and stats
get_readarr_status Readarr system status
get_readarr_queue Readarr download queue
get_bazarr_status Bazarr system status
get_bazarr_wanted Missing subtitles
get_seerr_status Pending requests and stats

Actions (17 tools)

Tool Description
lookup_sonarr_series Search for new series to add
add_sonarr_series Add series by TVDB ID
sonarr_search_missing Trigger search for missing episodes
sonarr_remove_from_queue Remove stuck queue items
lookup_radarr_movies Search for new movies to add
add_radarr_movie Add movie by TMDB ID
radarr_search_missing Trigger search for missing movies
radarr_remove_from_queue Remove stuck queue items
send_arr_command Send a command to Sonarr/Radarr/Readarr (e.g. RefreshSeries, CheckHealth)
sabnzbd_pause_resume Pause or resume SABnzbd
sabnzbd_delete_job Delete a download job
sabnzbd_retry_failed Retry a failed download
qbittorrent_pause_torrents Pause torrents
qbittorrent_resume_torrents Resume torrents
qbittorrent_delete_torrents Delete torrents
seerr_approve_request Approve a media request
seerr_decline_request Decline a media request

Claude Desktop Integration

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):

Direct (stdio, same machine)

{
  "mcpServers": {
    "mediastack": {
      "command": "docker",
      "args": [
        "run", "-i", "--rm",
        "-e", "NAS_HOST=192.168.1.100",
        "-e", "SONARR_API_KEY=your_key",
        "ghcr.io/aderaaij/mcp-mediastack:latest"
      ]
    }
  }
}

Remote (SSE via mcp-remote)

If the server is running on a remote host with SSE transport:

{
  "mcpServers": {
    "mediastack": {
      "command": "npx",
      "args": ["mcp-remote", "http://your-server:8888/sse"]
    }
  }
}

Known Quirks

  • httpx params: Never pass params={} (empty dict) to httpx — it strips query parameters from the URL. Only pass params when non-empty.
  • Seerr titles: Seerr requests don't include titles directly. The server resolves them via TMDB lookups using the media's TMDB ID.
  • qBittorrent auth: Uses session-based cookie auth, not API keys. The server handles login automatically.

Development

# Install dependencies
uv sync

# Run locally (stdio mode)
python -m mcp_mediastack

# Run locally (SSE mode)
MCP_TRANSPORT=sse python -m mcp_mediastack

License

MIT

Recommended Servers

playwright-mcp

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.

Official
Featured
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
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
graphlit-mcp-server

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.

Official
Featured
TypeScript
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
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