Skip to main content
Glama
rollecode

Radarr MCP server

by rollecode

delete_queue_bulk

DestructiveIdempotent

Remove multiple items from the Radarr download queue at once. Control whether to delete files from the client, blocklist entries, skip re-downloading, or change category.

Instructions

Delete Queue.

DELETE /api/v3/queue/bulk

Args: body: Request payload. Read the matching GET or the /schema endpoint first to see the fields this resource expects. remove_from_client: Query parameter. blocklist: Query parameter. skip_redownload: Query parameter. change_category: Query parameter.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyNo
blocklistNo
change_categoryNo
skip_redownloadNo
remove_from_clientNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.7/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 description adds little beyond restating the destructive delete operation. It does not explain what the bulk deletion does to queue items, whether removal from client/blocklisting are permanent, or what side effects occur.

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 well-structured: a one-line summary, endpoint, and an args list. There is no filler, though the brevity comes at the cost of substantive explanation.

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?

For a destructive bulk operation with five undocumented parameters, this description is not sufficient for an agent to understand the effects or invoke it confidently. The output schema and annotations cover some metadata, but the key behavioral and parameter context is missing.

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?

With 0% schema description coverage, the description was expected to explain the parameters, but it only labels the query params as 'Query parameter' with no meaning. The body parameter gets useful advice to read the matching GET or /schema endpoint, but remove_from_client, blocklist, skip_redownload, and change_category remain semantically opaque.

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 the action and resource clearly ('Delete Queue' with the DELETE endpoint), so an agent knows it performs bulk queue deletion. It does not explicitly contrast with delete_queue_by_id, but the endpoint and name make the bulk scope apparent.

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 about when to choose this tool over delete_queue_by_id or other queue-related operations. The only contextual hint is indirectly provided by the endpoint and sibling names, but the description never states conditions, prerequisites, or alternatives.

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