Skip to main content
Glama
rollecode

seerr-mcp

by rollecode

create_settings_radarr_test

Idempotent

Verify Radarr settings by sending a test request to confirm the configuration works correctly.

Instructions

Test Radarr configuration.

POST /api/v1/settings/radarr/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 provide idempotentHint=true and destructiveHint=false, covering the safety profile. The description adds that this is a test operation and the endpoint, but does not explain what testing entails, such as whether it validates connectivity, sends external requests, or returns success/failure details.

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 short and front-loaded: a one-line purpose, the endpoint, and body guidance. There is no filler, and the pointer to the schema endpoint earns its place. It could be slightly more compact by merging the endpoint into the purpose sentence.

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 an untyped-body test endpoint with an output schema and safety annotations, the description provides enough: purpose, endpoint, and a way to discover body fields. It does not enumerate failure or success behavior, but the output schema covers return shape.

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 the body is an open object with additionalProperties=true. The description partially compensates by telling the agent to consult the matching GET or /schema endpoint for expected fields, but it gives no direct detail about what the body should contain.

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 concrete action ('Test') and a target ('Radarr configuration'), and includes the HTTP endpoint. It is distinguishable from sibling tools like create_settings_radarr by the word 'test', though it does not explicitly contrast itself with related test/create tools.

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

Usage Guidelines4/5

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

It gives actionable guidance: read the matching GET or /schema endpoint before constructing the body. It does not explicitly state when to prefer this over create_settings_radarr or the other *_test siblings, but the action name and resource make the intended usage reasonably clear.

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