Skip to main content
Glama
rollecode

Sonarr MCP server

by rollecode

list_releaseprofile

Read-onlyIdempotent

Lists all configured release profiles to help you review and manage media quality and preference settings.

Instructions

Read ReleaseProfile.

GET /api/v3/releaseprofile

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

A3.5/5.0
Behavior3/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 read-only behavior is covered. The description adds the HTTP endpoint but no further behavioral context such as auth requirements, response shape, or collection semantics. There is no contradiction with annotations.

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 description is extremely concise: one short action sentence followed by the endpoint. The core purpose is front-loaded, and there is no unnecessary content.

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 parameterless, read-only tool with an output schema and safety annotations, the description is nearly sufficient. The main missing piece is explicit mention that it returns all release profiles rather than a single one, but the tool name and collection-style endpoint imply this.

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 and the input schema is an empty object, so parameter documentation is unnecessary. The description neither adds nor needs to add parameter semantics, and the schema covers 100% of the parameter surface.

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 action ('Read') and resource ('ReleaseProfile'), and includes the concrete endpoint 'GET /api/v3/releaseprofile'. This is clear enough to identify the operation, though it does not explicitly say 'list all' or contrast with get_releaseprofile_by_id.

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 usage guidance is provided. Sibling tools such as get_releaseprofile_by_id, create_releaseprofile, update_releaseprofile_by_id, and delete_releaseprofile_by_id exist, but the description does not tell an agent when to use this list tool vs those alternatives.

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