Skip to main content
Glama
rollecode

Radarr MCP server

by rollecode

list_config_importlist

Read-onlyIdempotent

Retrieve the current Radarr import list configuration to review which lists are enabled and their settings.

Instructions

Read ImportListConfig.

GET /api/v3/config/importlist

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

A4/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 established. The description's 'Read' is consistent with this and adds only the endpoint; it does not describe any additional side effects or data-return characteristics, but none are needed given the read-only nature.

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

Conciseness5/5

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

The description is two concise sentences, leading with the purpose and then giving the endpoint. Every word is useful and there is no redundancy.

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 zero-parameter read-only tool with a rich output schema and strong annotations, the description is sufficient for the agent to invoke it correctly. It could be slightly more explicit about its relationship to related import-list tools, but the resource name and endpoint make the role 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 there are no parameter semantics to document. The schema already reflects this with an empty properties object, and the description's focus on the resource is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states the specific action ('Read') and the resource ('ImportListConfig'), and includes the REST endpoint. This clearly differentiates it from sibling tools that read other config sections (e.g., list_config_indexer) or that mutate config (e.g., update_config_importlist_by_id).

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

Usage Guidelines3/5

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

The description conveys that this is a read-only list operation for import list configuration, so an agent can infer that it is appropriate when they need the full configuration. However, it does not explicitly name alternatives or mention when to prefer get_config_importlist_by_id for a single record or when not to use it.

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