Skip to main content
Glama
Achlesha

sendhustle-mcp

delete_webhook

Delete a webhook by its ID to cancel event notifications and stop future deliveries to the configured endpoint.

Instructions

Delete a webhook (DELETE /webhooks/:id).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesThe webhook id.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.2

TDQS

B3.3/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden for behavioral disclosure. It only states the HTTP method DELETE, which implies destruction, but it does not mention permanence, side effects, permissions, or what happens to associated resources. This is minimal transparency for a destructive operation.

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?

One short, front-loaded sentence with no filler. Every word contributes to identifying the action and resource, making it highly concise and clearly structured.

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 simple one-parameter delete with no output schema and no annotations, the description conveys the core action but omits operational context such as whether the deletion is permanent, how success or failure is reported, or any prerequisites. It is adequate but not complete.

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% — the single parameter 'id' is already fully documented as 'The webhook id.' The description adds no additional parameter semantics or examples, so the baseline of 3 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 verb and resource — 'Delete a webhook' — and reinforces it with the REST endpoint 'DELETE /webhooks/:id'. This clearly distinguishes the tool from sibling webhook tools like create_webhook, get_webhook, update_webhook, and rotate_webhook_secret.

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 explicit guidance on when to use this tool vs alternatives, nor any prerequisites or caveats. Usage is only implied by the name and action 'Delete', leaving the agent to infer context such as irreversibility or required ownership.

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