Skip to main content
Glama
mattmaas

Sonarr MCP Server

by mattmaas

sonarr_get_health

Check Sonarr system health to detect warnings or errors like low disk space or download client issues, so you can fix problems before they disrupt TV show management.

Instructions

Get system health status. Shows any warnings or errors with your Sonarr instance (disk space, download client issues, etc.).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/5.0
Behavior3/5

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

With no annotations, the description carries the full behavioral burden. It usefully implies a read-only operation and enumerates the kinds of issues surfaced (disk space, download client), but says nothing about return format, empty-health behavior, or whether results are cached/live.

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 tight sentences, front-loaded with the verb and resource, and the second sentence earns its place by concretely illustrating what "health" output contains.

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 read tool with no output schema, the description gives a reasonable sense of what is returned (warnings/errors categories), but it leaves the overlap with sonarr_get_system_status unresolved and gives no signal on result shape beyond examples.

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, which is the baseline-4 case; there is nothing for the description to disambiguate. Schema coverage is 100% and consistent with no params.

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 and resource ("Get system health status") and clarifies what that means (warnings/errors about disk space, download client issues). It is clear on its own, but does not distinguish itself from the sibling sonarr_get_system_status, which an agent could easily confuse with this tool.

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 when-to-use guidance, no prerequisites, and no mention of the sibling sonarr_get_system_status as an alternative or complement. The agent must infer the use case from the purpose text alone.

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