Skip to main content
Glama
rollecode

Sonarr MCP server

by rollecode

delete_notification_by_id

DestructiveIdempotent

Delete a notification from Sonarr by specifying its ID. Removes the configured notification to stop unwanted alerts or actions.

Instructions

Delete Notification.

DELETE /api/v3/notification/{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 adds no behavioral context beyond what the annotations already declare: destructiveHint=true and idempotentHint=true. It does not mention irreversibility, permission requirements, related resources that might be affected, or any side effects of deletion.

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 compact and front-loaded with the core purpose. The endpoint and argument declaration are minimal and readable, with no wasted words.

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?

For a simple single-parameter delete operation, the description is minimally adequate because the annotations and output schema fill in the safety and response details. Still, it lacks usage context, alternative routing, and any behavior notes that would make it genuinely complete.

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?

The input schema only defines 'id' as an integer, so the description's note that 'id' is a path parameter adds some useful structural meaning. However, it does not explain what the id identifies or any constraints beyond the schema, and schema description coverage is 0%.

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 states a clear verb and resource: 'Delete Notification.' This is unambiguous and identifies the target object. It does not explicitly distinguish itself from sibling delete tools, but the resource name makes that differentiation easy.

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 such as delete_notification_by_id's update/list counterparts or other bulk-delete tools. The intended use is implied by the name and endpoint, but no explicit context or exclusions are provided.

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