Skip to main content
Glama
rollecode

seerr-mcp

by rollecode

create_settings_sonarr_test

Idempotent

Validate your Sonarr configuration by sending a test request to ensure it's set up correctly.

Instructions

Test Sonarr configuration.

POST /api/v1/settings/sonarr/test

Args: body: Request payload. Read the matching GET or the /schema endpoint first to see the fields this resource expects.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyYes

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 cover idempotency and non-destructiveness, so the description's job is lighter. The word 'test' adds the validation behavior, but the description does not disclose possible external effects such as contacting the Sonarr server or failure-mode behavior.

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?

Four short lines, purpose first, no filler. The endpoint line and argument note are directly useful, and every sentence earns its place.

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 one-body-parameter test endpoint, this is mostly sufficient: output schema exists, annotations cover safety, and the /schema pointer handles the dynamic body. It is not perfect because it does not explain the expected workflow (e.g., test before saving) or what 'test' actually validates, but those are secondary for invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 0% and body is an opaque additionalProperties object. The description at least explains that body is the request payload and instructs the agent to read the matching GET or /schema endpoint to discover expected fields, which is useful but stops short of actual field semantics.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description says 'Test Sonarr configuration', a specific action on a specific resource. It is immediately distinguishable from the sibling create_settings_sonarr (save vs test) and from create_settings_radarr_test because it explicitly names Sonarr.

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?

It never says when to call this test endpoint instead of create_settings_sonarr or the other *_test settings endpoints. The context is only implied by the name/verb; there are no exclusions, prerequisites, or alternative routing.

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