MCP server intelligence profile

MCP *arr Server MCP Server

Enables unified control of \*arr media management applications (Sonarr, Radarr, Lidarr, Readarr, Prowlarr) through natural language queries. Manage TV shows, movies, music, books, search for content, monitor downloads, and check upcoming releases across all services

Local Onlyaplaceforallmystuff
Awaiting current scanNpm · 1.7.3

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

1Distribution channel
11Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

Detailed security scan evidence is not public for this MCP yet. Public identity, registry metadata, and independently observed protocol inventory remain available.

Install and connect

Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.

Install mcp-arr-server from npm

Version 1.7.3 declares 1 executable entrypoint.

npm install --save-exact mcp-arr-server@1.7.3
npx -y -p mcp-arr-server@1.7.3 mcp-arr
MCP client configuration example
{
  "mcpServers": {
    "mcp-arr-server": {
      "command": "npx",
      "args": [
        "-y",
        "-p",
        "mcp-arr-server@1.7.3",
        "mcp-arr"
      ]
    }
  }
}

Identity

Canonical slugmcp-arr-server-1f31a943DeploymentLocal Only
Canonical packagenpm:mcp-arr-serverRepositoryaplaceforallmystuff/mcp-arr
First publishedLatest release
Last security verificationClassification confidence90%
PublicationDraftOfficial distributionNot verified

Distributions

ChannelIdentifierCurrent versionVersionsSource
npmmcp-arr-server1.7.316Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npmmcp-arr-server1.7.3CurrentSep 5, 202611 toolsSucceeded · 0 resources · 0 promptsEvidence restricted
Enterprise protection

Continuously monitor this MCP for security risk

Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.

  • Independent exact-version security scans
  • Continuous release and vulnerability monitoring
  • Risk-change alerts with capability context
  • Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

No public current-version evidence is available yet.

Current protocol inventory

2025-06-18Negotiated protocol
mcp-arrServer-reported name
1Capability groups
Aug 15, 2026Observed

Tools 11

ToolCategoryAnnotationsRisk
arr_search_allSearch across all configured *arr services for any media
Input schema
{
  "type": "object",
  "properties": {
    "term": {
      "type": "string",
      "description": "Search term"
    }
  },
  "required": [
    "term"
  ]
}
arr_statusGet status of all supported *arr services. No local *arr services are currently configured, but TRaSH reference tools remain available.
Input schema
{
  "type": "object",
  "properties": {},
  "required": []
}
fetchFetch a specific item returned by search. Accepts an opaque item id from the search tool.
Input schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Opaque result id returned by search"
    }
  },
  "required": [
    "id"
  ]
}
searchSearch across configured *arr libraries plus TRaSH Guides reference profiles. This is the primary discovery tool for remote MCP clients such as ChatGPT.
Input schema
{
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "description": "Natural-language search query"
    }
  },
  "required": [
    "query"
  ]
}
trash_compare_namingCompare your naming configuration against TRaSH Guides recommendations. Requires the corresponding *arr service to be configured.
Input schema
{
  "type": "object",
  "properties": {
    "service": {
      "type": "string",
      "enum": [
        "radarr",
        "sonarr"
      ],
      "description": "Which service"
    },
    "mediaServer": {
      "type": "string",
      "enum": [
        "plex",
        "emby",
        "jellyfin",
        "standard"
      ],
      "description": "Which media server you use"
    }
  },
  "required": [
    "service",
    "mediaServer"
  ]
}
trash_compare_profileCompare your quality profile against TRaSH Guides recommendations. Shows missing custom formats, scoring differences, and quality settings. Requires the corresponding *arr service to be configured.
Input schema
{
  "type": "object",
  "properties": {
    "service": {
      "type": "string",
      "enum": [
        "radarr",
        "sonarr"
      ],
      "description": "Which service"
    },
    "profileId": {
      "type": "number",
      "description": "Your quality profile ID to compare"
    },
    "trashProfile": {
      "type": "string",
      "description": "TRaSH profile name to compare against"
    }
  },
  "required": [
    "service",
    "profileId",
    "trashProfile"
  ]
}
trash_get_namingGet TRaSH Guides recommended naming conventions for your media server (Plex, Emby, Jellyfin, or standard)
Input schema
{
  "type": "object",
  "properties": {
    "service": {
      "type": "string",
      "enum": [
        "radarr",
        "sonarr"
      ],
      "description": "Which service"
    },
    "mediaServer": {
      "type": "string",
      "enum": [
        "plex",
        "emby",
        "jellyfin",
        "standard"
      ],
      "description": "Which media server you use"
    }
  },
  "required": [
    "service",
    "mediaServer"
  ]
}
trash_get_profileGet a specific TRaSH Guides quality profile with all custom format scores, quality settings, and implementation details
Input schema
{
  "type": "object",
  "properties": {
    "service": {
      "type": "string",
      "enum": [
        "radarr",
        "sonarr"
      ],
      "description": "Which service"
    },
    "profile": {
      "type": "string",
      "description": "Profile name (e.g., 'remux-web-1080p', 'uhd-bluray-web', 'hd-bluray-web')"
    }
  },
  "required": [
    "service",
    "profile"
  ]
}
trash_get_quality_sizesGet TRaSH Guides recommended min/max/preferred sizes for each quality level
Input schema
{
  "type": "object",
  "properties": {
    "service": {
      "type": "string",
      "enum": [
        "radarr",
        "sonarr"
      ],
      "description": "Which service"
    },
    "type": {
      "type": "string",
      "description": "Content type: 'movie', 'anime' for Radarr; 'series', 'anime' for Sonarr"
    }
  },
  "required": [
    "service"
  ]
}
trash_list_custom_formatsList available TRaSH Guides custom formats. Can filter by category: hdr, audio, resolution, source, streaming, anime, unwanted, release, language
Input schema
{
  "type": "object",
  "properties": {
    "service": {
      "type": "string",
      "enum": [
        "radarr",
        "sonarr"
      ],
      "description": "Which service"
    },
    "category": {
      "type": "string",
      "description": "Optional filter by category"
    }
  },
  "required": [
    "service"
  ]
}
trash_list_profilesList available TRaSH Guides quality profiles for Radarr or Sonarr. Shows recommended profiles for different use cases (1080p, 4K, Remux, etc.)
Input schema
{
  "type": "object",
  "properties": {
    "service": {
      "type": "string",
      "enum": [
        "radarr",
        "sonarr"
      ],
      "description": "Which service to get profiles for"
    }
  },
  "required": [
    "service"
  ]
}

Resources 0

  • None observed.

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

MCP *arr Server MCP Server questions

How do I install MCP *arr Server MCP Server?

Install the selected package version with: npm install --save-exact mcp-arr-server@1.7.3

What tools does MCP *arr Server MCP Server provide?

MCP *arr Server MCP Server exposed 11 tools during independent protocol observation, including arr_search_all, arr_status, fetch, search, trash_compare_naming, trash_compare_profile, trash_get_naming, trash_get_profile, and others.

Is MCP *arr Server MCP Server secure?

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Official vs Community MCP Servers

Let’s talk about MCP security.

Share your details and our security team will contact you.