Skip to main content
Glama
rollecode

Sonarr MCP server

by rollecode

list_manualimport

Read-onlyIdempotent

Lists manual imports from Sonarr, with optional filters for folder, download ID, series, season, or existing files to locate files pending import.

Instructions

Read ManualImport.

GET /api/v3/manualimport

Args: folder: Query parameter. download_id: Query parameter. series_id: Query parameter. season_number: Query parameter. filter_existing_files: Query parameter.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
folderNo
series_idNo
download_idNo
season_numberNo
filter_existing_filesNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.4/5.0
Behavior2/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the description adds no safety information. It also doesn't disclose any additional behavior like pagination, default filters, or response structure, offering 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 short and front-loaded with the action, but the parameter list is a flat enumeration without grouping or explanation. It avoids verbosity, though the lack of structure reduces its usefulness.

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?

With five optional parameters and no schema descriptions, the description is insufficient. It doesn't explain what manual imports are, how to filter them, or what the response contains, leaving the agent without essential context despite having an output schema.

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 description coverage is 0%, and the description merely repeats parameter names with 'Query parameter.' It provides no meaning for terms like 'filter_existing_files' or how parameters interact, failing to compensate for the schema's lack of descriptions.

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 a clear verb ('Read') and resource ('ManualImport'), which conveys the operation and distinguishes it from sibling list tools by resource name. However, it doesn't elaborate on what ManualImport represents, so it's clear but not deeply informative.

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?

The description provides no guidance on when to use this tool versus alternatives, nor does it mention any context or exclusions. It only states the endpoint and parameters, leaving the agent to infer that it lists manual imports without any situational advice.

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