Skip to main content
Glama
mattmaas

Radarr MCP Server

by mattmaas

radarr_get_quality_profiles

Retrieve all quality profiles to see the available quality settings you can use when adding movies in Radarr.

Instructions

Get all quality profiles. Shows available quality settings you can use when adding movies.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.6/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full behavioral burden. It implies a read-only lookup operation, but doesn't disclose return format, pagination, permissions, or whether the list is static. For a zero-parameter read tool this is adequate but not rich.

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?

Two short sentences, front-loaded with the action and followed by a brief clarifying purpose. No filler or redundancy.

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 no annotations and no output schema, the description should ideally describe what a quality profile contains or what the response looks like. It gestures at purpose ('used when adding movies') but leaves the return content underspecified for an agent that needs to consume the output.

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 takes zero parameters, so the baseline of 4 applies. The description correctly implies no input filtering is required, consistent with the empty schema.

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?

States a specific verb and resource ('Get all quality profiles'), making the retrieval action clear. The second sentence clarifies what a quality profile is, but doesn't distinguish it from siblings like radarr_get_root_folders or radarr_get_tags, which follow the same 'get all config items' pattern.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage by noting quality settings are 'used when adding movies', suggesting this is a lookup tool. However, it doesn't explicitly state when to call this versus alternatives, nor does it note exclusions or call ordering relative to radarr_add_movie.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.