Skip to main content
Glama
rollecode

Sonarr MCP server

by rollecode

delete_languageprofile_by_id

DestructiveIdempotent

Delete a Sonarr language profile by its ID to remove unwanted language configurations from your media library.

Instructions

Delete LanguageProfile.

DELETE /api/v3/languageprofile/{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

C2.9/5.0
Behavior2/5

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

The description does not disclose any behavioral traits beyond the verb 'Delete'. It says nothing about irreversibility, cascading deletion, permission requirements, or side effects. The annotations already declare destructiveness and idempotency, but the description itself adds no value beyond what the structured data already conveys.

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?

The description is extremely brief and front-loaded, stating the operation in the first line. The endpoint and Args lines are structured logically, though the Args section adds little beyond the schema. There is no fluff or unnecessary detail.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description is not complete enough for a destructive operation. It omits what happens when the language profile is deleted (e.g., whether associated resources are removed or if records are hidden), the need for existing id, and any error behavior. The output schema and annotations cover only part of the gap.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema has no property description and the description only adds 'id: Path to id', which is nearly redundant with the endpoint and schema. It does not clarify that the id references a specific language profile, nor any value constraints, even though schema description coverage is 0%.

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?

The description states the specific action ('Delete') and the target resource ('LanguageProfile'), which is unambiguous and clearly distinguishes it from sibling tools like get_languageprofile_by_id, update_languageprofile_by_id, and create_languageprofile. The HTTP DELETE endpoint reinforces the intent.

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, no mention of prerequisites, and no exclusions such as 'do not use if the profile is in use'. The only hint is the verb 'Delete', leaving the decision to the agent without explicit context.

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