Skip to main content
Glama
rollecode

Sonarr MCP server

by rollecode

create_qualityprofile

Idempotent

Create a quality profile in Sonarr to define allowed and preferred media qualities, enabling custom quality management for your library.

Instructions

Create QualityProfile.

POST /api/v3/qualityprofile

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

B3.2/5.0
Behavior2/5

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

The annotations already declare idempotentHint=true, destructiveHint=false, and readOnlyHint=false, but the description adds no side-effect, permission, or failure-mode context beyond the word 'Create'. Mentioning POST is structural rather than behavioral.

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 compact and front-loaded, with the core action first and the payload guidance immediately after. It avoids filler and does not redundantly restate the input schema.

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?

Given the single opaque body parameter, the description adequately directs the agent to the schema/GET endpoint for field discovery. The output schema and annotations cover return and safety semantics, so the remaining guidance is sufficient for a competent agent to invoke this tool.

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 body parameter is an opaque object with additionalProperties: true, so the schema provides no field-level meaning. The description identifies the body as a 'Request payload' and instructs the agent to consult the matching GET or /schema endpoint for expected fields, which is essential compensating guidance.

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 the specific action ('Create') and resource ('QualityProfile') and includes the HTTP endpoint. It is clear enough to distinguish from update_qualityprofile_by_id and delete_qualityprofile_by_id, though it does not explicitly differentiate from other create_* tools.

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?

There is no guidance about when to use this tool instead of alternatives like update_qualityprofile_by_id. The only usage hint is to read the matching GET or /schema endpoint first, which helps construct the payload but does not help the agent decide when this tool is the right choice.

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