Skip to main content
Glama
mattmaas

Sonarr MCP Server

by mattmaas

sonarr_remove_from_queue

Remove an item from the Sonarr download queue, with options to blocklist the release and skip re-downloading the episode.

Instructions

Remove an item from the download queue. Optionally blocklist the release to prevent re-download.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesQueue item ID
blocklistNoBlocklist this release so it won't be grabbed again
changeCategoryNoChange category on the download client
skipRedownloadNoSkip trying to re-download the episode

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.1/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations at all, the description carries the full behavioral burden. It does disclose that blocklisting prevents re-download, which is genuinely useful, but omits that removal is a destructive/irreversible mutation, what happens to the underlying download client state, and how changeCategory or skipRedownload interact with the removal.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two short sentences, front-loaded with the core action and immediately followed by the key optional behavior. No filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a mutation tool with no annotations and no output schema, the description is minimally adequate but leaves out the irreversibility of removal, required permissions, and what state the queue item ends in. It covers the primary side effect (blocklist re-download prevention) but not the full picture.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so all four parameters are already documented in the schema. The description only echoes the blocklist parameter's meaning and adds nothing beyond schema for changeCategory or skipRedownload, so the baseline 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb and resource ('Remove an item from the download queue') with a clear scope. It does not explicitly name a sibling, though it is the obvious counterpart to sonarr_get_queue, so differentiation relies on inference.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No when-to-use guidance, no prerequisites, and no mention of alternatives or related tools like sonarr_get_queue to find the id. The agent gets the action but not the conditions for choosing it.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.