Skip to main content
Glama
rollecode

Sonarr MCP server

by rollecode

list_queue

Read-onlyIdempotent

Retrieve Sonarr's download queue to view pending and active items. Filter by status, quality, protocol, or series to monitor and manage downloads.

Instructions

Read Queue.

GET /api/v3/queue

Args: page: Query parameter. page_size: Query parameter. sort_key: Query parameter. sort_direction: Query parameter. include_unknown_series_items: Query parameter. include_series: Query parameter. include_episode: Query parameter. series_ids: Query parameter. protocol: Query parameter. languages: Query parameter. quality: Query parameter. status: Query parameter.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNo
statusNo
qualityNo
protocolNo
sort_keyNo
languagesNo
page_sizeNo
series_idsNo
include_seriesNo
sort_directionNo
include_episodeNo
include_unknown_series_itemsNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.1/5.0
Behavior2/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is known. The description adds nothing beyond listing parameter names; it does not disclose pagination behavior, response format, or any side effects. No contradiction with annotations.

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

Conciseness3/5

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

The description is short and to the point, but it is not well-structured for usability. The parameter list is redundant with the schema and adds no value; the endpoint is given but is not needed. It is concise but not effective at conveying key information.

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

Completeness1/5

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

Given 12 parameters with no descriptions, no enums, and an output schema that is not explained in the description, this is highly incomplete. An agent cannot correctly construct a query without knowing valid values for status, quality, languages, and other filters.

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

Parameters1/5

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

The description lists all 12 parameters by name but provides no explanation of their meaning, allowed values, or format. Schema coverage is 0%, so neither the description nor the schema offers semantic guidance. For example, 'protocol' and 'sort_direction' are objects with no defined structure, leaving the agent to guess.

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

Purpose3/5

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

The description states 'Read Queue' which is clear enough as a read operation on the queue resource. However, it does not differentiate from sibling tools like list_queue_details or list_queue_status, so an agent cannot tell which specific queue view this returns.

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 guidance is provided on when to use this tool versus alternatives such as list_queue_details or list_queue_status. It only states the endpoint and lists parameters, offering no context on typical use cases or exclusions.

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

Deploy Server

Other Tools