Skip to main content
Glama
rollecode

Radarr MCP server

by rollecode

create_notification_testall

Idempotent

Send a test notification to every configured Radarr notification provider to verify that connection settings work correctly.

Instructions

Create Notification.

POST /api/v3/notification/testall

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

D1.8/5.0
Behavior1/5

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

Annotations declare idempotentHint true and destructiveHint false, but the description adds no behavioral context beyond the endpoint. It doesn't disclose that this likely sends test notifications to all configured services, nor any failure modes or side effects. It adds zero value beyond the structured fields.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness2/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely brief, with only a single sentence and an endpoint. While it is concise in length, it is under-specified and not well-structured – it lacks context and is not front-loaded with the most important info, which would be the operation's purpose.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness1/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool has simple semantics (no parameters) but the description fails to explain its core behavior. It doesn't clarify that it's a test operation, which is critical given the sibling create_notification. The presence of an output schema doesn't compensate for the lack of purpose explanation.

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 is trivially complete. The description does not need to explain parameters, and the baseline for zero-parameter tools is 4. However, the description could have noted that no input is required, but this is not a major gap.

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

Purpose2/5

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

The description is essentially a tautology – 'Create Notification' restates the tool name without explaining the 'testall' action. It does not distinguish this from create_notification, which is a separate sibling. The endpoint is mentioned but not explained, leaving the agent unable to know whether this creates a config or sends test notifications.

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

Usage Guidelines1/5

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

No guidance is provided on when to use this tool versus create_notification_test or create_notification. There is no mention of prerequisites, side effects, or alternative operations.

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