Skip to main content
Glama
rollecode

Sonarr MCP server

by rollecode

list_qualityprofile_schema

Read-onlyIdempotent

Get the quality profile schema to understand the valid fields and structure for creating or updating quality profiles in Sonarr.

Instructions

Read QualityProfileSchema.

GET /api/v3/qualityprofile/schema

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.3/5.0
Behavior2/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds only the HTTP endpoint, which is an implementation detail and not meaningful behavioral context; it does not disclose what the schema contains or how it relates to creating/updating profiles.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The entire description is two short sentences that front-load the action and then give the endpoint. There is no fluff or repetition; every word earns its place.

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?

For a trivial zero-parameter, read-only schema endpoint with annotations and an output schema present, the description plus structured data is sufficient for an agent to invoke the tool correctly. It lacks any usage context, but that is already penalized under usage guidelines.

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 tool has zero parameters)Skip the schema is empty, giving 100% schema description coverage. Baseline for 0 parameters is 4, and the description correctly avoids fabricating parameter details.

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 specific verb ('Read') and resource ('QualityProfileSchema'), and includes the raw API endpoint, making the action unambiguous. It does not explicitly contrast with sibling tools like list_qualityprofile, but the 'Schema' suffix and resource name already differentiate it clearly.

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 on when to use this tool versus alternatives such as list_qualityprofile or get_qualityprofile_by_id. No conditions, exclusions, or contextual advice are provided, leaving the agent to infer usage solely from the name.

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