Skip to main content
Glama
rollecode

Sonarr MCP server

by rollecode

update_importlist_bulk

Idempotent

Update multiple Sonarr import lists in one bulk request. Send a payload with the list details to apply changes, using the GET or schema endpoint to see expected fields.

Instructions

Update ImportList.

PUT /api/v3/importlist/bulk

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

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.7/5.0
Behavior3/5

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

Annotations declare idempotentHint=true, readOnlyHint=false, destructiveHint=false, so the safety profile is already known. The description adds the instruction to read the GET or /schema endpoint first, which hints at the need to fetch current state before updating. However, it doesn't disclose what happens on partial failure, whether the body is a list or single object, or any validation behavior.

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 action and endpoint. The instruction to read the GET or /schema endpoint is useful and placed early. It doesn't waste words, though it could be more informative about the bulk payload shape.

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 bulk update tool with a single opaque body parameter, the description is incomplete. It doesn't explain what 'bulk' means, what fields are expected, whether the body is an array, or how the response is structured. The pointer to the /schema endpoint helps, but the description itself leaves critical information undisclosed. The output schema exists but the input semantics are the gap.

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%, and the schema only defines 'body' as an object with additionalProperties: true. The description says 'Request payload. Read the matching GET or the /schema endpoint first to see the fields this resource expects.' This tells the agent to discover the fields elsewhere, but doesn't explain the shape of the bulk payload (e.g., array of objects vs. object with list property). The description partially compensates by pointing to the schema endpoint, but leaves the agent without enough information to construct the body.

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

Purpose3/5

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

The description says 'Update ImportList' and includes the HTTP method and path, which identifies the resource and action. However, it doesn't clarify what 'bulk' means in this context (updating multiple import lists at once?) or distinguish it from update_importlist_by_id. The verb 'Update' is clear but the resource scope is vague.

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 update_importlist_by_id or other update tools. It mentions reading the GET or /schema endpoint first, which is a prerequisite hint, but doesn't explain the bulk semantics or when bulk update is 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