Skip to main content
Glama
rollecode

Prowlarr MCP server

by rollecode

delete_notification_by_id

DestructiveIdempotent

Delete a notification by its ID to remove it from Prowlarr. Provide the unique notification ID to permanently remove the configured alert.

Instructions

Delete Notification.

DELETE /api/v1/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

B3.2/5.0
Behavior2/5

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

The description merely restates 'Delete Notification' and the endpoint, adding no behavioral context beyond what annotations already declare (destructiveHint, idempotentHint). It does not mention permanence, cascading effects, permissions, or failure behavior.

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 action. It includes only the endpoint, a short arg note, and no filler. The HTTP line is somewhat redundant with the tool name but still useful for invocation.

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?

Given the simple single-parameter delete operation, output schema, and annotations, the description is largely sufficient to invoke the tool. However, it lacks usage context and offers no warning beyond the existing destructiveHint annotation.

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 schema has 0% description coverage, so the description must compensate. It adds that 'id' is a path parameter, which the schema does not specify, but it does not explain what the id identifies beyond the schema's title.

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 a specific verb and resource: 'Delete Notification' and the DELETE endpoint. It clearly distinguishes itself from notification create/get/update/list tools and other delete_*_by_id sibling tools by naming the resource.

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 update_notification_by_id or get_notification_by_id. The endpoint is shown, but no conditions, prerequisites, 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