Skip to main content
Glama
rollecode

seerr-mcp

by rollecode

create_settings_notifications_webhook_test

Idempotent

Test webhook notification settings by sending a test payload to verify the endpoint is correctly configured and receives alerts.

Instructions

Test webhook settings.

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

A3.9/5.0
Behavior3/5

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

Annotations already disclose idempotentHint=true, destructiveHint=false, and readOnlyHint=false, so the agent knows it's a safe mutation. The description adds that the agent should read the GET or schema endpoint first, which is useful context. However, it does not describe what the test does (e.g., sends a test webhook) or the response format beyond what the output schema provides. With annotations covering safety, the description adds some value but not rich behavioral detail.

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 sentences plus an endpoint line. The purpose is front-loaded, and the usage guidance is immediately actionable. There is zero waste, and every sentence earns its place.

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 test endpoint with an output schema, the description is largely complete. It identifies the operation, provides the HTTP endpoint, and directs the agent to fetch parameter details. It does not describe side effects, but annotations cover safety. The only minor gap is not explaining what 'test' means, but given the output schema exists and the action is idempotent, this is acceptable.

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?

Schema description coverage is 0% and the body parameter is an open object with additionalProperties. The description compensates by telling the agent to 'Read the matching GET or the /schema endpoint first to see the fields this resource expects.' This provides a clear path to discover the required fields, which is more helpful than leaving the agent to guess. It does not enumerate fields but gives a concrete strategy to obtain them.

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 clearly states the verb 'Test' and the resource 'webhook settings', giving a precise purpose. It does not explicitly differentiate from sibling test endpoints like create_settings_notifications_discord_test, but the resource name makes it unambiguous. The description avoids tautology and is specific enough for an agent to understand what the tool does.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides actionable guidance: 'Read the matching GET or the /schema endpoint first to see the fields this resource expects.' This tells the agent what to do before invoking the tool, which is valuable. It does not explicitly state when to use this vs. alternatives, but for a test endpoint the context is self-evident. The instruction about fetching the schema is a clear usage prerequisite.

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