Skip to main content
Glama
rollecode

Prowlarr MCP server

by rollecode

create_notification

Idempotent

Create a notification in Prowlarr to receive alerts for indexer or download events. Provide the notification's configuration in the request body to add it to your setup.

Instructions

Create Notification.

POST /api/v1/notification

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

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyYes
force_saveNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.2/5.0
Behavior3/5

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

Annotations already disclose the safety profile (readOnlyHint=false, idempotentHint=true, destructiveHint=false), and the description is consistent with those. The description adds the HTTP endpoint and the instruction to inspect the schema first, which is useful context, but it does not explain what force_save does or reveal any side effects beyond what annotations already convey.

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 compact and front-loaded: a one-line purpose statement, the endpoint, then a short args list. The body guidance is written directly under the parameter it documents. Minor redundancy exists ('Create Notification' followed by the POST line), but nothing is wasted.

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

Completeness3/5

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

An output schema exists, so return-value documentation is not required. The description adequately directs the agent to the schema endpoint for the open-world body, but force_save's behavior is unexplained and no error/validation context is given. For an open-world nested body tool, it is adequate but not rich.

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 description coverage is 0%, so the description carries the burden of explaining parameters. It gives genuinely useful guidance for body ('Read the matching GET or the /schema endpoint first to see the fields this resource expects') since the body is an open additionalProperties object. However, force_save is only described as 'Query parameter', which merely restates the schema and adds no semantic value.

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 the verb (Create), resource (Notification), and the HTTP endpoint (POST /api/v1/notification), making the core purpose clear. It is distinguishable from update_notification_by_id, delete_notification_by_id, and list_notification by name and method, but it does not explicitly differentiate itself from the create_notification_test and create_notification_testall siblings.

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 on when to use this tool versus alternatives such as create_notification_test or update_notification_by_id. The only context clue is 'Read the matching GET or the /schema endpoint first', which is a prerequisite for constructing the body rather than a when-to-use directive, so the selection context is effectively absent.

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