Skip to main content
Glama
mattmaas

Sonarr MCP Server

by mattmaas

sonarr_add_series

Add a new TV series to your Sonarr library using a TVDB ID. Set root folder, quality profile, and monitored seasons to control how episodes are tracked.

Instructions

Add a new TV series to your library. You need the tvdbId from sonarr_search_series. Optionally specify root folder path, quality profile, and which seasons to monitor.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tagsNoArray of tag IDs to apply to the series
tvdbIdYesTVDB ID from search results (required)
seasonsNoSpecify which seasons to monitor (optional - monitors all if not specified)
monitoredNoWhether to monitor the series for new episodes
seasonFolderNoWhether to create season folders
rootFolderPathNoRoot folder path (optional - uses default if not specified)
qualityProfileIdNoQuality profile ID (optional - uses default if not specified)
languageProfileIdNoLanguage profile ID (optional - uses default if not specified)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/5.0
Behavior2/5

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

With no annotations provided, the description carries the full behavioral burden, yet it discloses no side effects: whether a duplicate check occurs, whether adding triggers an automatic episode search, or what permissions/rate constraints apply. 'Add' implies mutation but nothing about consequences is stated.

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?

Three short sentences, front-loaded with purpose, then the prerequisite, then the optional inputs. No padding, though the optional-fields sentence is somewhat redundant with the schema.

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?

Covers the required input and the source for its value, which is the key thing an agent needs to call it. For an 8-parameter mutating tool with no annotations and no output schema, the absence of any duplicate-handling or side-effect guidance leaves a real gap.

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 the schema already documents all 8 parameters, including defaults. The description loosely echoes root folder, quality profile, and season monitoring but adds no format or semantics beyond the schema – 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 ('Add') and resource ('a new TV series to your library'), which cleanly separates it from the edit/delete/refresh siblings. It does not explicitly name a tool it is not, so it falls just short of a 5.

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?

Gives a clear precondition – the tvdbId must come from sonarr_search_series, which routes the agent to the right sibling for acquisition. It stops short of explicit exclusions (e.g. when to use edit_series instead), so no 5.

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