Skip to main content
Glama
rollecode

Prowlarr MCP server

by rollecode

create_notification_test

Idempotent

Test a notification configuration in Prowlarr by sending a test message to verify the setup works correctly.

Instructions

Create Notification.

POST /api/v1/notification/test

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

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyYes
force_testNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.6/5.0
Behavior2/5

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

The annotations already indicate idempotent, non-destructive, non-read-only behavior, but the description adds no behavioral context such as 'sends a test notification' or what force_test actually affects. It only restates the POST endpoint and gives a schema-discovery hint, so there is little transparency beyond the structured annotations.

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 short and front-loads the endpoint, but the opening line 'Create Notification.' largely restates the tool name and does not earn its place. The Args section is structured but minimal, making the description under-specified rather than efficiently complete.

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?

Even with annotations and an output schema, an agent cannot tell what a 'test' call does, when to choose it over create_notification_testall, or how force_test should be set. The description outsources body shape to another endpoint and leaves the core test semantics ambiguous.

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

Parameters2/5

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

With 0% schema description coverage, the description must carry parameter meaning. It identifies body as the request payload and force_test as a query parameter, but it does not explain what force_test does or what body structure is expected. This provides only marginal help over the raw schema.

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 gives a clear verb ('Create') and resource ('Notification') and exposes the endpoint POST /api/v1/notification/test. However, it does not state that this is specifically the 'test' variant, so an agent cannot distinguish it from create_notification or create_notification_testall based on the prose alone.

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 guidance about when to use this tool instead of create_notification, create_notification_testall, or other sibling test endpoints. The only advice, to read the matching GET or /schema endpoint before filling the body, is about parameter discovery rather than tool selection.

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