Skip to main content
Glama
rollecode

Prowlarr MCP server

by rollecode

create_notification_testall

Idempotent

Send test notifications to all configured notification services to verify they are working correctly.

Instructions

Create Notification.

POST /api/v1/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

C2.6/5.0
Behavior3/5

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

Annotations indicate idempotentHint=true, readOnlyHint=false, destructiveHint=false, so the safety profile is already declared. The description adds the HTTP method and endpoint, which is minor context. It does not describe side effects, return behavior, or what 'testall' does, but annotations carry the main burden.

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

Conciseness3/5

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

The description is extremely short, which is efficient, but it repeats the tool name ('Create Notification') and only adds the endpoint. It is not misleading, but it does not earn its place by adding meaningful information beyond the name and schema.

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

Completeness2/5

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

For a no-parameter tool with an output schema, the description could be minimal, but the tool name and siblings suggest this is a test-all action. The description does not clarify what the tool does, what it returns, or when it should be used. Given the ambiguity, it is incomplete.

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 has zero parameters, so there is no parameter semantics burden on the description. The schema is empty and coverage is 100%, so nothing is missing. Baseline 4 is appropriate for a no-parameter tool.

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 says 'Create Notification' and gives the endpoint, but the tool name is create_notification_testall, which suggests a test-all action rather than a general create. It does not state what 'testall' means or how it differs from create_notification or create_notification_test. The verb+resource is present but the scope is ambiguous.

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?

No guidance on when to use this tool versus create_notification, create_notification_test, or create_notification_action_by_name. The endpoint path hints at a test-all operation, but the description does not explain the intended use case or exclusions.

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