Skip to main content
Glama
rollecode

Radarr MCP server

by rollecode

get_config_naming_by_id

Read-onlyIdempotent

Retrieve a Radarr naming configuration by ID to inspect movie file naming settings.

Instructions

Read NamingConfig.

GET /api/v3/config/naming/{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

C2.6/5.0
Behavior1/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description adds no behavioral context beyond 'Read' and the HTTP GET method, both of which are already implied by the annotations and tool name. No contradiction with annotations.

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 core action. The endpoint adds concrete API detail, though it is somewhat redundant with the tool name. There is no filler or unnecessary prose.

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?

This is a simple single-parameter read tool with a rich output schema and safety annotations, so an extensive description is not essential. However, it lacks any mention of how to find a valid id, its relationship to list_config_naming, or potential error conditions. It is adequate for a basic fetch but leaves some gaps for an agent without prior domain knowledge.

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's 'Args: id: Path parameter' is the only added parameter context. It clarifies the location of id but does not explain what the id identifies, its valid values, or its relationship to NamingConfig. This is minimal compensation for the missing schema description.

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 'Read NamingConfig' and gives the exact GET endpoint, making the action and resource clear. It does not explicitly contrast with list_config_naming or update_config_naming_by_id, but the '/{id}' path and by_id name make the singular read intent 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 tool versus sibling tools such as list_config_naming or update_config_naming_by_id. It does not mention prerequisites, such as how to obtain a valid id, or any conditions that would make another tool more appropriate.

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