Skip to main content
Glama
mattmaas

Sonarr MCP Server

by mattmaas

sonarr_get_queue

Retrieve the current Sonarr download queue to monitor active downloads, progress, status, and errors. Sort and paginate results for troubleshooting.

Instructions

Get current download queue. Shows active downloads, their progress, status, and any errors.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNoPage number for pagination
sortKeyNoField to sort by (timeleft, status, etc.)timeleft
pageSizeNoNumber of items per page
sortDirectionNoSort directionascending
includeUnknownSeriesItemsNoInclude items from unknown series

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It usefully discloses the returned content (active downloads, progress, status, errors), which is valuable given there is no output schema, but says nothing about read-only semantics, pagination behavior, or result limits.

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 with the core purpose front-loaded and zero filler. Every clause carries information.

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

Completeness4/5

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

Because there is no output schema, the description's summary of returned fields (progress, status, errors) is genuinely needed and mostly sufficient for a simple read-only list tool. Minor gap: no mention of pagination behavior despite paging parameters.

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 five parameters (page, sortKey, pageSize, sortDirection, includeUnknownSeriesItems) are already documented in the schema. The description adds no parameter meaning beyond that, making the baseline 3 appropriate.

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+resource ("Get current download queue") and clarifies the scope with what the queue contains. It doesn't explicitly contrast with sonarr_remove_from_queue, but no sibling also reads the queue, so the agent can distinguish it from the name alone.

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?

There is no when-to-use guidance, no prerequisites, and no mention of the related sonarr_remove_from_queue tool that operates on the same resource. Usage is only implied by the verb "Get".

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