Skip to main content
Glama
rollecode

Sonarr MCP server

by rollecode

create_importlist_test

Idempotent

Test an import list configuration by sending its payload to verify it works. Define the list settings in the body to check for errors before saving.

Instructions

Create ImportList.

POST /api/v3/importlist/test

Args: body: Request payload. Read the matching GET or the /schema endpoint first to see the fields this resource expects. force_test: Query parameter.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyYes
force_testNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.1/5.0
Behavior2/5

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

Annotations say the tool is not read-only, is idempotent, and is non-destructive, but the description adds little context beyond that. It does not explain that this tests an import list configuration or what side effects may occur, and 'Create ImportList' actively obscures the endpoint's test behavior.

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 short and front-loaded, with no verbose filler. However, the first sentence is misleading, and the force_test line adds no information beyond the parameter name.

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?

The presence of an output schema covers return values, but the definition fails to explain the test nature, force_test's role, or how this differs from related importlist tools. An agent would not know whether this operation persists anything or merely validates a configuration.

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 carries the burden of explaining parameters, but it only labels body as 'Request payload' and force_test as 'Query parameter'. The body guidance to consult the schema is somewhat useful, but force_test's meaning remains entirely unexplained.

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

Purpose2/5

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

The description opens with 'Create ImportList', which is misleading for an endpoint at /api/v3/importlist/test – the operation appears to be a test, not a creation. It repeats the create_importlist pattern and does not distinguish itself from create_importlist or create_importlist_testall.

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 on when to use this tool versus create_importlist or create_importlist_testall. The only instruction, to read the GET/schema endpoint first, is workflow advice rather than selection criteria.

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