Skip to main content
Glama
rollecode

Radarr MCP server

by rollecode

get_config_importlist_by_id

Read-onlyIdempotent

Retrieve a specific import list configuration by ID from Radarr to inspect or verify its settings.

Instructions

Read ImportListConfig.

GET /api/v3/config/importlist/{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.3/5.0
Behavior2/5

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

Annotations already declare readOnlyHint=true and idempotentHint=true, and the description only repeats the 'Read' action without adding any new behavioral context such as auth requirements, response format, or error behavior. It adds no value beyond the annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely concise and well-structured with a clear title, HTTP method, and argument list. However, it is so sparse that it borders on under-specification, offering minimal information despite the format being efficient.

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 tool with one integer parameter and an output schema, the description is minimal. It lacks any explanation of what an ImportListConfig is, how the id relates to the config, or when to use this endpoint. Given the simplicity, it is still under-specified for an agent to call correctly without additional context.

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

Parameters1/5

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

Schema coverage is 0% for the id parameter, so the description must compensate. It only states 'id: Path parameter', which is already obvious from the schema and adds no meaning about what the id represents or how to obtain it.

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 'Read ImportListConfig' with a specific verb and resource, and includes the HTTP method and path. It distinguishes from siblings like get_importlist_by_id by the 'config' prefix, though it does not explicitly call out that distinction.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines1/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is given on when to use this tool versus alternatives such as get_importlist_by_id or update_config_importlist_by_id. The description provides no context for selection or prerequisites.

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