Skip to main content
Glama
rollecode

seerr-mcp

by rollecode

list_settings_notifications_pushover

Read-onlyIdempotent

Retrieve current Pushover notification settings to verify or troubleshoot alert configuration on your media server.

Instructions

Get Pushover notification settings.

GET /api/v1/settings/notifications/pushover

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

A3.8/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds the HTTP method and endpoint path, which provides some API-level context. However, it does not disclose what settings are included, whether authentication is required, or any rate-limit implications, but those are partially mitigated by the existing annotations and output schema.

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 extremely concise: two lines that state the purpose and the endpoint. There is no fluff, and the primary action is front-loaded. Every word adds value, making it an example of efficient, well-structured documentation.

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

Completeness4/5

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

For a zero-parameter, read-only getter with an output schema present, the description is largely complete. It clearly identifies the endpoint and action. The only minor gap is that it does not explicitly mention the existence of related sibling tools (e.g., test or sounds variants), but that is more a usage-guidance concern than a completeness issue. Given the output schema covers return values, the description sufficiently equips an agent to call the tool correctly.

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 and schema coverage is 100%, so the baseline for parameter semantics is 4. The description adds no parameter-specific information, but none is needed since the input schema is empty. It correctly implies that the tool takes no arguments.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb ('Get') and resource ('Pushover notification settings'), making the tool's purpose immediately clear. It also includes the HTTP endpoint, which reinforces the action. The description differentiates from siblings like list_settings_notifications_pushbullet (different provider) and create_settings_notifications_pushover (a write operation), so an agent can distinguish it without opening schemas.

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?

The description provides no guidance on when to use this tool versus alternatives. It does not mention that this is the read-only counterpart to create_settings_notifications_pushover, nor that list_settings_notifications_pushover_sounds exists for a different purpose. An agent must infer usage solely from the verb 'Get' and the sibling list, which is not explicit.

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