Skip to main content
Glama
rollecode

Prowlarr MCP server

by rollecode

delete_downloadclient_bulk

DestructiveIdempotent

Deletes multiple download clients at once, clearing Prowlarr configurations in a single bulk request.

Instructions

Delete DownloadClient.

DELETE /api/v1/downloadclient/bulk

Args: body: Request payload. Read the matching GET or the /schema endpoint first to see the fields this resource expects.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.2/5.0
Behavior3/5

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

The annotations already declare destructiveHint=true and idempotentHint=true, and the description's 'Delete' is consistent with those. The description adds no further behavioral detail about side effects, irreversibility, or bulk semantics, but the annotation profile covers the key safety signal.

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 short and front-loaded with the action, endpoint, and a helpful pointer for the body payload. The opening line is somewhat redundant with the tool name, but the overall structure is clean and scannable.

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 one-argument bulk-delete tool with an output schema and safety annotations, the description is adequate but not rich. It lacks explicit bulk-deletion semantics and does not mention what the body should look like, though the schema pointer mitigates that gap.

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 identifies body as a request payload and points the agent to read the matching GET or /schema endpoint first. It stops short of explaining what the body must contain, leaving the agent to fetch the actual field definitions.

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 clearly states the action and resource ('Delete DownloadClient') and includes the exact bulk endpoint. It does not explicitly differentiate from delete_downloadclient_by_id, but the name and URI make the bulk intent fairly evident.

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 bulk variant versus a single-item delete, nor any mention of alternatives or exclusions. The usage context is only implied by the tool name and endpoint, not stated in the description.

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