Skip to main content
Glama
rollecode

seerr-mcp

by rollecode

create_settings_notifications_webpush_test

Idempotent

Send a test Web Push notification to verify notification settings. Use this endpoint to confirm your push configuration works before relying on it for alerts.

Instructions

Test Web Push settings.

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

B3.4/5.0
Behavior3/5

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

Annotations already indicate this is non-read-only, idempotent, and non-destructive, so there is no contradiction. However, the description adds little behavioral context beyond the word 'Test' and the HTTP method; it does not disclose what the test call actually does or what side effects may occur.

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

Conciseness5/5

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

The description is compact, front-loads the action, and includes only the endpoint and the single-argument note. There is no filler or repetition.

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?

With an output schema present and annotations covering safety, the main missing pieces are explicit usage guidance and a clear statement of what the test call does. For a one-parameter tool it is mostly adequate, but among many sibling `_test` tools it is not fully complete.

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 input schema is opaque (`body` with `additionalProperties: true`) and schema description coverage is 0%, so the description's instruction to read the matching GET or /schema endpoint is genuinely useful. It tells the agent how to discover the actual expected fields, which is more than the schema provides.

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 identifies a specific action ('Test') and resource ('Web Push settings'), and states the POST endpoint. It is easy to distinguish from the configure-style sibling `create_settings_notifications_webpush`, though it does not explicitly state the intended effect (e.g., sending a test push notification).

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 when-to-use or when-not-to-use guidance is provided. The description does not mention alternatives or conditions for choosing this tool over the many other notification `_test` siblings. The only directive about reading the GET or /schema endpoint is for parameter discovery, not 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