io.github.aplaceforallmystuff/mcp-arr

平台与服务

by aplaceforallmystuff

面向 *arr 媒体套件的 MCP 服务器,支持 Sonarr、Radarr、Lidarr、Readarr 与 Prowlarr

把 Sonarr、Radarr 等 *arr 套件统一接入 MCP,影视、音乐、书籍和索引管理都走一个接口,五大服务联动起来更省心。

什么是 io.github.aplaceforallmystuff/mcp-arr

面向 *arr 媒体套件的 MCP 服务器,支持 Sonarr、Radarr、Lidarr、Readarr 与 Prowlarr

README

MCP *arr Server

Architecture

<!-- <p align="center"> <img src="docs/mcp-arr-logo.png" alt="MCP *arr Server" width="400"> </p> -->

Oathe Security npm version CI License: MIT MCP

MCP server for the *arr media management suite - Sonarr, Radarr, Lidarr, and Prowlarr.

Why Use This?

  • Unified media management - Control all your *arr applications from one interface
  • Natural language queries - Ask about your library in plain English
  • Cross-service search - Find content across TV, movies, and music simultaneously
  • Download monitoring - Check queue status and progress across all services
  • Calendar integration - See upcoming releases for all media types
  • Configuration review - Get AI-powered suggestions for optimizing your setup
  • Flexible configuration - Enable only the services you use

Features

CategoryCapabilities
Sonarr (TV)List series, view episodes, search shows, trigger downloads, check queue, view calendar, review setup
Radarr (Movies)List movies, search films, trigger downloads, check queue, view releases, review setup
Lidarr (Music)List artists, view albums, search musicians, trigger downloads, check queue, view calendar, review setup
Prowlarr (Indexers)List indexers, search across all trackers, test health, view statistics
Cross-ServiceStatus check, unified search across all configured services
ConfigurationQuality profiles, download clients, naming conventions, health checks, storage info
TRaSH GuidesReference quality profiles, custom formats, naming conventions, compare against recommendations

Prerequisites

  • Node.js 18+
  • At least one *arr application running with API access:

Installation

Using npm (Recommended)

bash
npx mcp-arr-server

From Source

bash
git clone https://github.com/aplaceforallmystuff/mcp-arr.git
cd mcp-arr
npm install
npm run build

Configuration

Getting API Keys

Each *arr application has an API key in Settings > General > Security:

  1. Open your *arr application's web interface
  2. Go to Settings > General
  3. Find the API Key under the Security section
  4. Copy the API key for use in configuration

For Claude Desktop

Add to your Claude Desktop config file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

Windows: %APPDATA%\Claude\claude_desktop_config.json

json
{
  "mcpServers": {
    "arr": {
      "command": "npx",
      "args": ["-y", "mcp-arr-server"],
      "env": {
        "SONARR_URL": "http://localhost:8989",
        "SONARR_API_KEY": "your-sonarr-api-key",
        "RADARR_URL": "http://localhost:7878",
        "RADARR_API_KEY": "your-radarr-api-key",
        "LIDARR_URL": "http://localhost:8686",
        "LIDARR_API_KEY": "your-lidarr-api-key",
        "PROWLARR_URL": "http://localhost:9696",
        "PROWLARR_API_KEY": "your-prowlarr-api-key"
      }
    }
  }
}

For Claude Code

Add to ~/.claude.json:

json
{
  "mcpServers": {
    "arr": {
      "command": "npx",
      "args": ["-y", "mcp-arr-server"],
      "env": {
        "SONARR_URL": "http://localhost:8989",
        "SONARR_API_KEY": "your-sonarr-api-key",
        "RADARR_URL": "http://localhost:7878",
        "RADARR_API_KEY": "your-radarr-api-key"
      }
    }
  }
}

Note: Only configure the services you have running. The server automatically detects which services are available based on the environment variables you provide.

Usage Examples

Library Management

  • "Show me all my TV series"
  • "What movies do I have in Radarr?"
  • "List all artists in my music library"

Searching & Adding Content

  • "Search for sci-fi shows on Sonarr"
  • "Find action movies from the 90s"
  • "Add this show to my TV library"
  • "Add that movie to Radarr"
  • "Search for jazz albums and add this artist"
  • "Add this movie with my '4k' tag"
  • "What tags do I have in Sonarr?"

Download Queue

  • "What's downloading right now?"
  • "Check the Sonarr queue"
  • "Show Radarr download progress"

Upcoming Releases

  • "What TV episodes are coming this week?"
  • "Show upcoming movie releases"
  • "Any new albums coming out this month?"

Downloading Content

  • "What episodes of this show am I missing?"
  • "Download the missing episodes for that series"
  • "Search for this specific movie"
  • "Grab that album I'm missing"

Indexer Management

  • "Are my indexers healthy?"
  • "How are my indexers performing?"
  • "Test all my Prowlarr indexers"

Configuration Review

  • "Review my Sonarr setup and suggest improvements"
  • "Show me my quality profiles in Radarr"
  • "Are there any health issues with my Lidarr?"
  • "What naming convention am I using for TV shows?"
  • "Help me understand my quality profiles - why am I not getting 4K?"
  • "Check my download client configuration"
  • "How much free space do I have on my root folders?"

Cross-Service

  • "Check status of all my *arr services"
  • "Search for 'comedy' across all services"

Available Tools

General Tools

ToolDescription
arr_statusGet connection status for all configured *arr services
arr_search_allSearch across all configured services simultaneously

Sonarr Tools (TV)

ToolDescription
sonarr_get_seriesList all TV series in your library
sonarr_searchSearch for TV series by name (returns tvdbId for adding)
sonarr_add_seriesAdd a TV series to Sonarr (supports tags)
sonarr_get_root_foldersGet available root folders for adding series
sonarr_get_quality_profilesGet available quality profiles for adding series
sonarr_get_queueView current download queue
sonarr_get_calendarSee upcoming episodes
sonarr_get_episodesList episodes for a series (shows missing vs available)
sonarr_search_missingTrigger search for all missing episodes in a series
sonarr_search_episodeTrigger search for specific episode(s)

Radarr Tools (Movies)

ToolDescription
radarr_get_moviesList all movies in your library
radarr_searchSearch for movies by name (returns tmdbId for adding)
radarr_add_movieAdd a movie to Radarr (supports tags)
radarr_get_root_foldersGet available root folders for adding movies
radarr_get_quality_profilesGet available quality profiles for adding movies
radarr_get_queueView current download queue
radarr_get_calendarSee upcoming releases
radarr_search_movieTrigger search to download a movie in your library

Lidarr Tools (Music)

ToolDescription
lidarr_get_artistsList all artists in your library
lidarr_searchSearch for artists by name (returns foreignArtistId for adding)
lidarr_add_artistAdd an artist to Lidarr (supports tags)
lidarr_get_root_foldersGet available root folders for adding artists
lidarr_get_quality_profilesGet available quality profiles for adding artists
lidarr_get_metadata_profilesGet available metadata profiles for adding artists
lidarr_get_queueView current download queue
lidarr_get_albumsList albums for an artist (shows missing vs available)
lidarr_search_albumTrigger search for a specific album
lidarr_search_missingTrigger search for all missing albums for an artist
lidarr_get_calendarSee upcoming album releases

Prowlarr Tools (Indexers)

ToolDescription
prowlarr_get_indexersList all configured indexers
prowlarr_searchSearch across all indexers
prowlarr_test_indexersTest all indexers and return health status
prowlarr_get_statsGet indexer statistics (queries, grabs, failures)

Configuration Review Tools

These tools are available for Sonarr, Radarr, and Lidarr. Replace {service} with the service name (e.g., sonarr_get_quality_profiles).

ToolDescription
{service}_get_quality_profilesDetailed quality profile information with allowed qualities and custom format scores
{service}_get_healthHealth check warnings and issues detected by the application
{service}_get_root_foldersStorage paths, free space, and accessibility status
{service}_get_download_clientsDownload client configurations and settings
{service}_get_namingFile and folder naming conventions
{service}_get_tagsTag definitions for content organization
{service}_review_setupComprehensive configuration dump for AI-assisted setup analysis

The {service}_review_setup tool returns all configuration in a single call, enabling natural language conversations about optimizing your setup. Claude can analyze your quality profiles, suggest improvements, explain why certain content isn't being grabbed, and help configure complex settings like custom formats.

⚠️ Disclaimer: The configuration review tools provide read-only access to your *arr settings. Any changes to your configuration must be made directly in the *arr application interfaces. The AI's suggestions are recommendations only - always back up your configuration before making significant changes. The maintainers are not responsible for any configuration changes, data loss, or other issues that may arise from following AI-generated recommendations.

TRaSH Guides Tools

Access community-curated quality profiles, custom formats, and naming conventions from TRaSH Guides directly through Claude. These tools work without any *arr configuration - they fetch reference data from the TRaSH Guides GitHub repository.

ToolDescription
trash_list_profilesList available TRaSH quality profiles for Radarr or Sonarr
trash_get_profileGet detailed profile with custom formats, scores, and quality settings
trash_list_custom_formatsList custom formats with optional category filter (hdr, audio, resolution, etc.)
trash_get_namingGet recommended naming conventions for Plex, Emby, Jellyfin, or standard
trash_get_quality_sizesGet recommended min/max/preferred sizes for each quality level
trash_compare_profileCompare your profile against TRaSH recommendations (requires *arr configured)
trash_compare_namingCompare your naming config against TRaSH recommendations (requires *arr configured)

Example usage:

  • "What quality profiles does TRaSH recommend for 4K movies?"
  • "Show me the remux-web-1080p profile details"
  • "Compare my Radarr profile 4 against the TRaSH uhd-bluray-web profile"
  • "What naming convention should I use for Plex?"
  • "List HDR-related custom formats for Radarr"

Data is cached for 1 hour to minimize GitHub API calls.

Development

bash
# Watch mode for development
npm run watch

# Build TypeScript
npm run build

# Run locally
SONARR_URL="http://localhost:8989" SONARR_API_KEY="your-key" node dist/index.js

Troubleshooting

"No *arr services configured"

Ensure you have set at least one pair of URL and API_KEY environment variables:

bash
SONARR_URL="http://localhost:8989"
SONARR_API_KEY="your-api-key"

"API error: 401 Unauthorized"

The API key is incorrect. Verify it in your *arr application under Settings > General > Security.

"fetch failed" or "ECONNREFUSED"

The *arr application is not running or the URL is incorrect. Verify:

  • The application is running
  • The URL and port are correct
  • There's no firewall blocking the connection

"Sonarr/Radarr/etc not configured"

You tried to use a tool for a service that isn't configured. Add the corresponding URL and API_KEY environment variables.

License

MIT - see LICENSE for details.

Links

常见问题

io.github.aplaceforallmystuff/mcp-arr 是什么?

面向 *arr 媒体套件的 MCP 服务器,支持 Sonarr、Radarr、Lidarr、Readarr 与 Prowlarr

相关 Skills

MCP构建

by anthropics

Universal
热门

聚焦高质量 MCP Server 开发,覆盖协议研究、工具设计、错误处理与传输选型,适合用 FastMCP 或 MCP SDK 对接外部 API、封装服务能力。

想让 LLM 稳定调用外部 API,就用 MCP构建:从 Python 到 Node 都有成熟指引,帮你更快做出高质量 MCP 服务器。

平台与服务
未扫描111.8k

Slack动图

by anthropics

Universal
热门

面向Slack的动图制作Skill,内置emoji/消息GIF的尺寸、帧率和色彩约束、校验与优化流程,适合把创意或上传图片快速做成可直接发送的Slack动画。

帮你快速做出适配 Slack 的动图,内置约束规则和校验工具,少踩上传与播放坑,做表情包和演示都更省心。

平台与服务
未扫描111.8k

MCP服务构建器

by alirezarezvani

Universal
热门

从 OpenAPI 一键生成 Python/TypeScript MCP server 脚手架,并校验 tool schema、命名规范与版本兼容性,适合把现有 REST API 快速发布成可生产演进的 MCP 服务。

帮你快速搭建 MCP 服务与后端 API,脚手架完善、扩展顺手,尤其适合想高效验证服务能力的开发者。

平台与服务
未扫描9.8k

相关 MCP Server

Slack 消息

编辑精选

by Anthropic

热门

Slack 是让 AI 助手直接读写你的 Slack 频道和消息的 MCP 服务器。

这个服务器解决了团队协作中需要 AI 实时获取 Slack 信息的痛点,特别适合开发团队让 Claude 帮忙汇总频道讨论或发送通知。不过,它目前只是参考实现,文档有限,不建议在生产环境直接使用——更适合开发者学习 MCP 如何集成第三方服务。

平台与服务
83.1k

by netdata

热门

io.github.netdata/mcp-server 是让 AI 助手实时监控服务器指标和日志的 MCP 服务器。

这个工具解决了运维人员需要手动检查系统状态的痛点,最适合 DevOps 团队让 Claude 自动分析性能数据。不过,它依赖 NetData 的现有部署,如果你没用过这个监控平台,得先花时间配置。

平台与服务
78.3k

by d4vinci

热门

Scrapling MCP Server 是专为现代网页设计的智能爬虫工具,支持绕过 Cloudflare 等反爬机制。

这个工具解决了爬取动态网页和反爬网站时的头疼问题,特别适合需要批量采集电商价格或新闻数据的开发者。不过,它依赖外部浏览器引擎,资源消耗较大,不适合轻量级任务。

平台与服务
34.9k

评论