Skip to main content
Glama
rollecode

Sonarr MCP server

by rollecode

list_languageprofile

Read-onlyIdempotent

Retrieves language profiles from Sonarr to display available language configurations for media library management.

Instructions

Read LanguageProfile.

GET /api/v3/languageprofile

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
Behavior3/5

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

The annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds the HTTP GET method and path, which is a small amount of behavioral context beyond the annotations, but it does not mention pagination, auth, rate limits, or what subset of data is returned.

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 extremely short, front-loaded with 'Read LanguageProfile' followed by the endpoint. There is no filler, though 'Read LanguageProfile' is largely redundant with the tool name; overall it is concise and appropriately sized for a zero-parameter tool.

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?

For a zero-parameter list endpoint with an output schema and strong read-only annotations, the description is close to sufficient, but it leaves the collection-vs-single semantics implicit. An agent could hesitate between list_languageprofile and get_languageprofile_by_id without seeing a clearer 'list all' statement.

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 100% schema description coverage, so there is nothing for the description to explain. Per the zero-parameter baseline this is sufficient; the GET path is the only meaningful invocation detail.

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 ('LanguageProfile') and gives the HTTP GET endpoint, so an agent can tell it is a retrieval operation for language profile data. It does not explicitly say 'list all' or distinguish itself from get_languageprofile_by_id / list_languageprofile_schema, but the list_ name and collection-style endpoint make the core purpose reasonably clear.

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 versus alternatives such as list_languageprofile_schema, get_languageprofile_by_id, or list_language. The endpoint tells the agent how to call it, but not which situations call for it, and no exclusions or when-not-to-use conditions are given.

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