Skip to main content
Glama
rollecode

Sonarr MCP server

by rollecode

list_localization

Read-onlyIdempotent

Get Sonarr's localization data to access translated interface strings for customizing or verifying language support.

Instructions

Read Localization.

GET /api/v3/localization

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.6/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 safety profile is covered. The description adds the HTTP method and endpoint, which is minor context. It does not describe response shape or pagination, but with an output schema present and zero parameters, the burden is low.

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: 'Read Localization.' plus the endpoint. It is front-loaded and wastes no words. It could add a sentence about what localization data contains, but for a zero-param read endpoint, this is appropriately concise.

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 zero-parameter read-only endpoint with an output schema and strong annotations, the description is nearly complete. The only gap is not explaining what 'Localization' refers to (e.g., UI strings, language packs), but the sibling list_localization_language hints at the domain. Overall adequate.

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?

There are zero parameters, so the schema provides no parameter semantics to clarify. The description's endpoint reference confirms no inputs are needed, which is sufficient. Baseline 4 for zero-parameter tools is appropriate.

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 'Read Localization' with the endpoint GET /api/v3/localization, which clearly identifies the resource and operation. It distinguishes from siblings like list_localization_language by naming the base resource, though it doesn't explicitly contrast them.

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 a read-only retrieval operation with no parameters, but it does not state when to use this tool versus list_localization_language or other list_* tools. The context of 'Read Localization' is clear enough for a simple zero-parameter GET, but no explicit alternatives or exclusions 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