Skip to main content
Glama
rollecode

Sonarr MCP server

by rollecode

list_episode

Read-onlyIdempotent

Fetch episode details from Sonarr by series, season, or episode IDs to view or manage media library entries.

Instructions

Read Episode.

GET /api/v3/episode

Args: series_id: Query parameter. season_number: Query parameter. episode_ids: Query parameter. episode_file_id: Query parameter. include_series: Query parameter. include_episode_file: Query parameter. include_images: Query parameter.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
series_idNo
episode_idsNo
season_numberNo
include_imagesNo
include_seriesNo
episode_file_idNo
include_episode_fileNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.4/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 covered. The description only restates 'Read' and the GET method without adding behavioral details like filtering behavior or response characteristics.

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

Conciseness4/5

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

The description is short, front-loaded, and well-structured with the endpoint followed by arguments. It is not bloated, though the Args section largely duplicates the schema.

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

Completeness2/5

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

Given seven optional parameters and no parameter semantics, an agent cannot reliably know how to construct a correct episode listing request. The output schema covers return shape, but invocation behavior and filtering rules are missing.

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

Parameters2/5

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

The description lists parameter names and says they are query parameters, which adds minimal location information. With 0% schema description coverage, it does not compensate by explaining what each parameter means, how they combine, or when include_* flags matter.

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 says 'Read Episode' and gives the GET endpoint, which identifies the resource and operation. However, it does not clarify that this lists/filters episodes or how it differs from get_episode_by_id and list_episodefile.

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 guidance on when to use this tool versus alternatives like get_episode_by_id or list_episodefile. The parameter list is present, but no usage context or selection criteria is provided.

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