Skip to main content
Glama
mattmaas

Sonarr MCP Server

by mattmaas

sonarr_delete_series

Remove a TV series from Sonarr, with optional disk file deletion and import list exclusion to prevent re-import.

Instructions

Delete a series from Sonarr. Optionally delete files from disk. WARNING: This cannot be undone!

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesSonarr series ID to delete
deleteFilesNoAlso delete files from disk (PERMANENT)
addImportListExclusionNoAdd to import list exclusion to prevent re-import

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4/5.0
Behavior4/5

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

No annotations are provided, so the description carries the burden. It discloses the key behavioral traits: irreversible deletion ('cannot be undone'), optional disk-level file removal, and a re-import prevention side-effect is left to the parameter description. It doesn't mention permission or confirmation requirements, but the core irreversibility warning is a meaningful addition.

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 short sentences, all front-loaded and earning their place: purpose, option, and warning. No redundancy or filler.

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 destructive deletion tool with no annotations or output schema, the description covers the essential risk (irreversibility) and the file-deletion option. It could go further on prerequisites or return behavior, but it is largely complete for the agent's needs.

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 three parameters including 'PERMANENT' and 'import list exclusion'. The description adds no parameter-level meaning beyond what the schema provides, so baseline 3 applies.

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

Purpose5/5

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

States a specific verb and resource ('Delete a series from Sonarr'), clearly distinguishing it from siblings like sonarr_add_series and sonarr_edit_series. An agent immediately knows this is the destructive removal operation.

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

Usage Guidelines3/5

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

The description implies when to use it (to delete a series) and flags the optional file deletion, but does not name alternatives or exclusions—e.g., no mention of when to use sonarr_edit_series instead, or whether series must exist first. Usage is implied rather than explicit.

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