Skip to main content
Glama
rollecode

Radarr MCP server

by rollecode

update_downloadclient_bulk

Idempotent

Bulk update download client settings in Radarr with a single API call. Provide the updated fields to apply changes across multiple clients in one operation.

Instructions

Update DownloadClient.

PUT /api/v3/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
bodyYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=false, destructiveHint=false, and idempotentHint=true, so the safety profile is known. The description adds that this is a PUT operation and instructs the agent to consult the GET/schema endpoint first, which provides some operational context but does not disclose side effects or what fields are affected.

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 operation and endpoint. The Args block is minimal and the instruction to read GET/schema is useful, though it could be more direct. No filler words or redundant phrases.

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?

With a complex nested-body schema and no parameter details, the description does not equip an agent to construct a valid request. It relies entirely on the GET/schema endpoint to discover fields, but does not clarify the bulk nature of the payload or provide examples. The output schema existence helps, but key behavioral and payload semantics are 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?

Schema description coverage is 0%, so the description must compensate, but it only says 'body: Request payload' and points to GET/schema. This is a tautology plus an external reference; it does not explain what the body should contain, whether it is an array, or how the payload maps to a bulk update.

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 operation ('Update DownloadClient') and includes the concrete endpoint path (PUT /api/v3/downloadclient/bulk), which is specific enough to identify the resource. However, it does not explicitly mention that this is a bulk update or differentiate it from update_downloadclient_by_id, so it is clear but not fully sibling-aware.

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?

No guidance is given about when to use this bulk tool versus alternatives like update_downloadclient_by_id or delete_downloadclient_bulk. The only guidance is the prerequisite to read the matching GET or /schema endpoint, which is about parameter construction, not tool selection.

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