Skip to main content
Glama
mattmaas

Sonarr MCP Server

by mattmaas

sonarr_search_series

Search for TV series by title across TVDB/TMDB to find the tvdbId required for adding a show. Returns matching series with metadata.

Instructions

Search for TV series by title on TVDB/TMDB. Returns potential matches with metadata. Use this to find the tvdbId needed to add a series.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
termYesSearch term (e.g., 'Breaking Bad', 'The Office')

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.8/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full burden. It discloses the return shape ('potential matches with metadata'), which is genuinely useful, but says nothing about authentication, rate limits, or whether the search is local vs remote. For a read-only search tool this is adequate but not rich.

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?

Three tight sentences with no filler; the core action leads, the return value follows, and the routing purpose closes. Every sentence earns its place.

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?

For a one-parameter search with no output schema, the description covers action, source, and return nature, which is close to sufficient. Minor gaps remain around result limits or pagination, but an agent can call this correctly as written.

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 'term' parameter is already documented with examples in the schema. The description adds only the 'by title' framing, which is minor reinforcement rather than new meaning. Baseline 3 applies when the schema does the heavy lifting.

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 ('Search for TV series by title') plus the backing sources (TVDB/TMDB), so intent is unambiguous. It loosely distinguishes itself from the sibling sonarr_search_series_command by implying a direct lookup that returns matches, but it never names that sibling explicitly.

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

Usage Guidelines4/5

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

'Use this to find the tvdbId needed to add a series' gives a concrete downstream purpose and implicitly routes the agent toward sonarr_add_series. It stops short of stating when not to use it or contrasting with the command-style search sibling.

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