Skip to main content
Glama
rollecode

Sonarr MCP server

by rollecode

update_qualitydefinition_update

Idempotent

Update a Sonarr quality definition by sending the modified configuration to the API. Use this to change settings for existing quality profiles.

Instructions

Update QualityDefinition.

PUT /api/v3/qualitydefinition/update

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.9/5.0
Behavior2/5

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

Annotations already establish that this is not read-only, is idempotent, and is not destructive. The description adds only the HTTP method and a 'read first' note; it does not disclose scope, side effects, or what updating a QualityDefinition entails beyond the schema fields.

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 core action. The endpoint and Args lines are repetitive with the schema, but they are brief and do not waste much space.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With an output schema present and a deliberately open body parameter, the read-GET-or-/schema guidance is valuable. However, the description fails to clarify how this update differs from update_qualitydefinition_by_id or what kind of body payload is expected, leaving an agent under-informed for correct selection and invocation.

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

Parameters3/5

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

The schema provides no property descriptions and body is an open object with additionalProperties true. The description compensates somewhat by identifying body as the request payload and directing the agent to discover valid fields via GET or /schema, but it does not name any fields or constraints.

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 the operation ('Update QualityDefinition') and the resource. However, it does not distinguish this tool from the sibling update_qualitydefinition_by_id or explain what scope this variant covers, so it stops short of full differentiation.

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 for when to use this tool versus alternatives. The instruction to read the matching GET or /schema endpoint first is helpful for preparation, but it does not explain when this route should be chosen over update_qualitydefinition_by_id or other update tools.

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