Skip to main content
Glama
mattmaas

Sonarr MCP Server

by mattmaas

sonarr_get_episode

Retrieve detailed information about a specific Sonarr episode by its episode ID for episode tracking, review, or management.

Instructions

Get detailed information about a specific episode by its episode ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesEpisode ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations, the description carries the full behavioral burden and delivers almost nothing beyond the bare operation. It does not state that this is a read-only operation, what happens if the ID is invalid or not found, or what shape the returned detail takes.

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?

One front-loaded sentence with the verb and resource first and no filler. It is appropriately sized, though it is terse to the point of omitting usage and behavioral context that a slightly longer description could carry.

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 single-parameter read tool with no output schema and no annotations, the description is minimally sufficient: the agent knows what it retrieves and by what key. It is silent on error behavior and the content of the returned detail, leaving the definition adequate but thin.

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% and the single 'id' parameter is already documented as 'Episode ID'. The description merely restates that, adding no format, expected source, or validation detail beyond the schema, 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 ('Get') and resource ('detailed information about a specific episode') and clarifies the lookup key ('by its episode ID'). It implicitly separates itself from the plural sibling sonarr_get_episodes, though it never names or contrasts with it.

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, when-not-to-use, or alternative is given. The agent cannot tell from the description when to prefer this over sonarr_get_episodes, sonarr_search_episodes, or sonarr_search_season beyond the trivial singular/plural distinction in the name.

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