Skip to main content
Glama
rollecode

seerr-mcp

by rollecode

create_settings_notifications_lunasea_test

Idempotent

Sends a test notification to LunaSea to confirm your notification settings work before relying on them.

Instructions

Test LunaSea settings.

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

C2.9/5.0
Behavior2/5

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

Annotations already declare this is not read-only, is idempotent, and is non-destructive, but the description adds no behavioral detail about what a test call does. It does not say whether this sends an external notification, merely validates configuration, or what failure modes exist, which is significant for a 'test' action.

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 short and front-loaded, with the purpose stated before the endpoint and args. The 'body: Request payload' line adds little beyond the schema, but the overall size and structure are appropriate and free of filler.

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?

For a one-parameter open-body action with an output schema and safety annotations, the description provides the key invocation hint: read the matching GET or /schema endpoint for expected fields. However, it leaves unclear what the test action does, what a successful result means, and how to distinguish this from sibling test endpoints, so completeness is only minimal.

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?

The single body parameter is an open object with no schema field descriptions, so the description must compensate. 'Request payload' is essentially tautological, but the explicit pointer to the matching GET or /schema endpoint gives the agent a concrete way to discover the expected fields.

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 begins with 'Test LunaSea settings,' which names a specific action and resource, and the explicit POST path confirms this is a test endpoint for LunaSea notifications. It does not, however, explain what 'test' actually does (e.g., send a sample notification), so some meaning is carried by the tool name and the long list of provider-specific sibling tools.

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 about when to use this tool instead of sibling test endpoints like create_settings_notifications_discord_test or the non-test create_settings_notifications_lunasea. The only usage instruction, 'Read the matching GET or the /schema endpoint first,' addresses how to construct the body, not when to select this tool.

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