Skip to main content
Glama
rollecode

Sonarr MCP server

by rollecode

delete_importlist_by_id

DestructiveIdempotent

Delete an import list from Sonarr by specifying its ID. Removes the configured list permanently to keep your media library sources accurate.

Instructions

Delete ImportList.

DELETE /api/v3/importlist/{id}

Args: id: Path parameter.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.2/5.0
Behavior2/5

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

Annotations already declare destructiveHint=true and idempotentHint=true, so the safety profile is covered. The description adds no behavioral context beyond the verb 'Delete' and the HTTP method; it does not describe permanence, side effects, or error behavior.

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?

The description is very short and front-loaded with the action, followed by the endpoint and argument. There is no filler or redundant content; every element serves a purpose.

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 single-parameter delete operation, the description, schema, required id, destructive/idempotent annotations, and output schema together provide enough information to invoke the tool. The missing single-vs-bulk usage distinction is a gap, but it is more about usage guidance than completion for a direct call.

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 0%, so the description must compensate. It usefully specifies that id is a path parameter, which the schema does not convey. However, it does not elaborate on what the id identifies or any additional constraints beyond the schema's integer type and required flag.

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?

The description starts with 'Delete ImportList.' which clearly states the verb and resource, and the included path parameter id indicates a single item. However, the text itself does not explicitly differentiate from the sibling delete_importlist_bulk beyond the by_id naming convention.

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. It does not mention that delete_importlist_bulk should be used for multiple items, nor does it state any preconditions or exclusions. The only implied signal is the required id path parameter.

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