Skip to main content
Glama

beaconed_webhooks_test

Send a test event to a webhook to confirm it receives notifications and verify delivery is working.

Instructions

POST /api/v1/webhooks/{id}/test — send a test event to a webhook to verify delivery is working.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesWebhook UUID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.0.3

TDQS

A4/5.0
Behavior3/5

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

Annotations already indicate non-idempotent and non-destructive behavior. The description adds that the tool triggers a test event, which is a meaningful behavioral side effect. However, it does not clarify whether the event is sent to the live endpoint, whether it creates historical records, or what the response indicates.

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?

A single, front-loaded sentence conveys the HTTP method, endpoint, action, and purpose without redundancy. Every element earns its place and there is no filler.

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 one-parameter action tool with full schema coverage and annotations, the description provides enough context to invoke it correctly. It could mention expected response or side-effect details, but the tool's simplicity makes those gaps non-critical.

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?

Schema coverage is 100% and the only parameter, id, is already described as 'Webhook UUID'. The description restates id as a path variable but adds no new semantic detail beyond the schema, so the baseline score applies.

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 action ('send a test event'), the resource ('a webhook'), and the goal ('verify delivery is working'). It clearly distinguishes this from siblings like webhooks_get, webhooks_events, and webhooks_delete by naming the test operation explicitly.

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 phrase 'to verify delivery is working' gives clear contextual guidance on when to use this tool. It does not explicitly name alternatives or exclusion conditions, but the use case is unambiguous enough for an agent to select it appropriately among the webhook-related siblings.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.