arr-connect

arr-connect is a skill for Claude Code from t3chnaztea/arr-stack-skills. It costs 175 tokens per session (2,902 once invoked), scanned A, original, MIT.

A connection guide for Radarr, Sonarr, Prowlarr, and related media-server apps. These tools expose an API, a way for other programs to request information or actions.

In plain words
What is it for?
Use it when setting up an API connection, checking an app's status, finding the right endpoint, or verifying that a film or show exists and has a file.
Why use it?
It helps an agent connect safely and distinguish bad credentials, wrong addresses, and proxy problems before making changes.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the arr plugin — 7 skills shipped together

Good fit Use it when setting up an API connection, checking an app's status, finding the right endpoint, or verifying that a film or show exists and has a file.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/t3chnaztea/arr-stack-skills/arr-connect
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add t3chnaztea/arr-stack-skills --skill arr-connect
Clone the repo
git clone --depth 1 https://github.com/t3chnaztea/arr-stack-skills

Made for: Claude Code.

Or install arr, the plugin that ships this one along with the rest of its 7 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for arr-connect

README.md
[![agentmods](https://agentmods.dev/badge/skills/t3chnaztea/arr-stack-skills/arr-connect.svg)](https://agentmods.dev/skills/t3chnaztea/arr-stack-skills/arr-connect)
Your own site
<a href="https://agentmods.dev/skills/t3chnaztea/arr-stack-skills/arr-connect"><img src="https://agentmods.dev/badge/skills/t3chnaztea/arr-stack-skills/arr-connect.svg" alt="Measured on agentmods" height="20"></a>
Per session 175 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,902 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00175 $0.02902
Opus 5 $0.00088 $0.01451
Sonnet 5 $0.00035 $0.00580
Haiku 4.5 $0.00017 $0.00290

Measured 7d ago against content hash 4c9c19358076, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

arr-connect scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

compatibility: Radarr v4/v5 and Sonarr v3/v4 (API v3 on both). Prowlarr, Lidarr, and Readarr expose the same shape with different resource names. Recipes are plain curl.
skills/arr-connect/SKILL.md · 257 lines

How it starts

The opening of the file, as written. The whole thing — 257 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Arr Connect

How to reach a *arr instance, what its API will lie to you about, and the two checks that stop most agent damage before it happens. Every other arr-* skill assumes this.

The one-minute setup

Every arr app uses a single API key, no OAuth, no session. Find it in Settings > General > Security, or read it out of config.xml in the app's config directory:

grep -o '<ApiKey>[^<]*</ApiKey>' /path/to/config/config.xml

Keep it in the environment, never inline:

export ARR_URL=http://arr-host:7878        # Radarr 7878, Sonarr 8989, Prowlarr 9696
export ARR_KEY=...                          # from config.xml or the UI
curl -sf -H "X-Api-Key: $ARR_KEY" "$ARR_URL/api/v3/system/status" | jq '{appName,version}'

If that returns app name and version, you are connected. A 401 means the key is wrong; a connection refused means the port or host is wrong; an HTML response means you hit a reverse proxy that is not forwarding /api.

The key can also travel as ?apikey= in the query string. Prefer the header: query strings land in access logs and shell history.

The endpoint map

Both apps expose API v3 regardless of the app's own version number. Sonarr v4 is still /api/v3. This surprises people; do not go hunting for /api/v4.

Shared shape across apps:

Purpose Radarr Sonarr
Library list GET /api/v3/movie GET /api/v3/series
One item GET /api/v3/movie/{id} GET /api/v3/series/{id}
Add POST /api/v3/movie POST /api/v3/series
Search metadata GET /api/v3/movie/lookup?term= GET /api/v3/series/lookup?term=
Files GET /api/v3/moviefile?movieId= GET /api/v3/episodefile?seriesId=
Quality profiles GET /api/v3/qualityprofile same
Root folders GET /api/v3/rootfolder same
Queue GET /api/v3/queue same
Trigger work POST /api/v3/command same
History GET /api/v3/history same
Health GET /api/v3/health same

Sonarr adds GET /api/v3/episode?seriesId= and the per-episode monitor endpoint, which have no Radarr equivalent because a movie is one item.

Read the full file on GitHub · 257 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 257 lines · 175 tokens per session scan A 4c9c19358076

Subscribe to this mod's changes

arr-connect is a skill published in the GitHub repository t3chnaztea/arr-stack-skills (1 stars, last pushed 16d ago), licensed MIT. It adds 175 tokens to every session and 2,902 once invoked, about $0.0009 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories