Skip to main content
Glama
rollecode

Radarr MCP server

by rollecode

list_delayprofile

Read-onlyIdempotent

Fetches delay profiles configured in Radarr, showing protocol-specific download delay settings for review.

Instructions

Read DelayProfile.

GET /api/v3/delayprofile

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is clear. The description adds the HTTP GET method and resource path but does not disclose anything like whether all profiles are returned or how results are ordered; with strong annotations this is acceptable though minimal.

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 very short and front-loads the operation before the endpoint. It contains no filler, though the first sentence is largely a paraphrase of the tool name rather than a richer explanation.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a parameterless, read-only list operation with an output schema and robust annotations, the description is nearly complete. The only small gap is not explicitly stating that it lists all delay profiles, but the endpoint and sibling naming make that reasonably clear.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters, so the description needs to add no parameter meaning. The empty input schema fully documents the parameter list, and the endpoint reinforces that no path or query parameters are required.

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 ('Read') and the resource ('DelayProfile'), and the GET endpoint identifies the collection API. It is clear enough, but it does not explicitly differentiate from get_delayprofile_by_id beyond the collection-vs-id sibling naming.

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 tool versus alternatives such as get_delayprofile_by_id or update_delayprofile_by_id. There are no when-to-use or exclusion statements; the agent must infer usage from the tool name and endpoint.

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