Skip to main content
Glama
rollecode

seerr-mcp

by rollecode

create_settings_notifications_pushbullet_test

Idempotent

Send a test Pushbullet notification to validate your notification settings. Confirm the Pushbullet integration works correctly before relying on it.

Instructions

Test Pushbullet settings.

POST /api/v1/settings/notifications/pushbullet/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.2/5.0
Behavior2/5

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

Annotations disclose idempotent, non-destructive, not read-only. The description adds only the HTTP method and the instruction to read the schema, but does not state the observable behavior, e.g., that this sends a real test notification or what side effects (if any) occur. With readOnlyHint false, the agent is left to guess whether this mutates anything.

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, starts with the purpose, and uses a clear args block. It avoids unnecessary repetition and is easy to scan. It meets the ideal for a simple test endpoint.

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?

The tool is simple, has an output schema, and the description points to the source of truth for the open body. However, it omits contextual details like whether a configured Pushbullet account is required or whether the test actually sends a notification, which may leave an agent uncertain about side effects. For a test action, mentioning the expected effect would improve completeness.

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 single 'body' parameter is an open object with zero schema description coverage. The description compensates by explicitly stating that the body is a request payload and pointing to the matching GET or /schema endpoint to discover expected fields. This is essential given the schema gives no field names.

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 action clearly: 'Test Pushbullet settings' immediately. It names the resource and the test action, distinguishing it from sibling tools like create_settings_notifications_pushbullet or list_settings_notifications_pushbullet without needing to inspect schemas. However, it is terse and doesn't elaborate on what 'testing' entails, such as sending a 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 guidance is given on when to use this tool instead of the update/settings variants or other test tools. The description simply states the action; it does not mention prerequisites (e.g., configured Pushbullet settings) or alternatives. The sibling list is large but the description does not explicitly route the agent.

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