AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

ARR MCP

mcp-gauranshmathur-arr-mcp · by GauranshMathur

An MCP server for your *Arr stack for you to be able to communicate, find out information and also be able to do basic tasks

No reviews yet
0 installs
33 views
0.0% view→install

Install

$ agentstack add mcp-gauranshmathur-arr-mcp

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-gauranshmathur-arr-mcp)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
stale · 1y ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of ARR MCP? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

ARR-MCP

ARR-MCP is a standard MCP (Model Control Protocol) server designed to integrate with the ARR stack (Sonarr, Radarr, Prowlarr).

Overview

This MCP server provides a bridge between MCP-compatible clients and popular media management tools in the ARR stack. It implements the standard MCP protocol, enabling any MCP client to interact with these tools through a standardized interface.

Features

  • Flexible MCP Server: Implements the standard MCP protocol to allow any compatible client to connect
  • ARR Stack Integration:
  • Sonarr: Search and manage TV shows
  • Radarr: Search and manage movies
  • Prowlarr: Search across indexers and manage indexers
  • Extensible Architecture: Easily add new tools and handlers

Installation

  1. Clone the repository:
git clone https://github.com/yourusername/arr-mcp.git
cd arr-mcp
  1. Build the server:
go build -o arr-mcp ./cmd/server

Usage

Running the Server

./arr-mcp

By default, the server runs on localhost:8080. You can configure it using command-line flags:

./arr-mcp --port 9000 --host 0.0.0.0

Environment Variables

Configure the connections to various services using environment variables:

export SONARR_URL="http://localhost:8989"
export SONARR_API_KEY="your-sonarr-api-key"
export RADARR_URL="http://localhost:7878"
export RADARR_API_KEY="your-radarr-api-key"
export PROWLARR_URL="http://localhost:9696"
export PROWLARR_API_KEY="your-prowlarr-api-key"

Command-line Options

  • --port: Server port (default: 8080)
  • --host: Host to bind to (default: localhost)
  • --log-level: Logging level (default: info)
  • --sonarr-url: Sonarr API URL
  • --sonarr-api-key: Sonarr API key
  • --radarr-url: Radarr API URL
  • --radarr-api-key: Radarr API key
  • --prowlarr-url: Prowlarr API URL
  • --prowlarr-api-key: Prowlarr API key

Configuring MCP Clients to Use This Server

To use this MCP server with any MCP-compatible client, configure the client to connect to:

http://localhost:8080

The server implements the standard MCP protocol endpoints required by compliant clients.

Available Endpoints

  • GET /health: Health check endpoint
  • POST /v1/run: MCP run endpoint for executing tools
  • GET /v1/tools: List available tools

Available Tools

Depending on your configuration, the following tools will be available:

  • SonarrSearch: Search for TV shows in Sonarr
  • SonarrList: List TV shows in Sonarr
  • RadarrSearch: Search for movies in Radarr
  • RadarrList: List movies in Radarr
  • ProwlarrSearch: Search for content using Prowlarr indexers
  • ProwlarrIndexers: List Prowlarr indexers

Tool Usage Examples

SonarrSearch

{
  "tool_name": "SonarrSearch",
  "input": {
    "query": "Breaking Bad"
  }
}

RadarrSearch

{
  "tool_name": "RadarrSearch",
  "input": {
    "query": "Inception"
  }
}

ProwlarrSearch

{
  "tool_name": "ProwlarrSearch",
  "input": {
    "query": "ubuntu 22.04",
    "categories": [5030, 5040]
  }
}

Development

Project Structure

  • cmd/server/: Contains the main application entry point
  • pkg/api/: MCP protocol definitions and interfaces
  • pkg/arr/: ARR stack integration (Sonarr, Radarr, Prowlarr)
  • pkg/server/: MCP server implementation

Adding New Tools

To add a new tool to the server:

  1. Create a handler that implements the api.Handler interface
  2. Register the tool and handler in the setupServer function in main.go

Example:

// Create a new handler
type MyNewHandler struct {
    // Dependencies here
}

// Implement the HandleRequest method
func (h *MyNewHandler) HandleRequest(req api.MCPRequest) (interface{}, error) {
    // Handle the request
    return result, nil
}

// In setupServer function
mcpServer.RegisterTool(
    api.ToolDefinition{
        Name:        "MyNewTool",
        Description: "Description of my new tool",
        Parameters: map[string]interface{}{
            "param1": map[string]interface{}{
                "type":        "string",
                "description": "Description of parameter",
            },
        },
    },
    &MyNewHandler{},
)

Building from Source

go mod tidy
go build -o arr-mcp ./cmd/server

License

[MIT License](LICENSE)

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.