Skip to main content
Glama
mailkite

MailKite

Official

mailkite_delete_webhook

DestructiveIdempotent

Remove a domain's webhook by providing its ID. Requires a management session token to authenticate the deletion request.

Instructions

Remove the domain's webhook. Requires a management session token.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesPath parameter `id`.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.20.0

TDQS

B3.3/5.0
Behavior3/5

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

Annotations already declare this destructive and idempotent, so the description does not need to repeat that. It does add the auth requirement of a management session token, which is useful context, so the agent knows the caller must be authenticated. However, it does not describe any side effects beyond deletion, like whether the webhook will stop receiving events.

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 only two sentences with no filler. The primary purpose is front-loaded in the first sentence, and the auth requirement is a concise but necessary addition in the second. Every word earns its place.

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?

The tool is simple and the annotations take care of the safety profile. The description is acceptable for one-parameter delete action, but it does not eliminate the ambiguity about which webhook type is being targeted or what the `id` represents. That leaves room for a slight but manageable misinterpretation.

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 schema covers the single `id` parameter at 100%, so the information is present, but the schema text only says 'Path parameter `id`.' The description does not clarify whether `id` is a domain ID or a webhook ID, leaving room for misinterpretation. Baseline is accepted because the schema owns it, but the description adds no value.

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 states a specific verb and a resource: 'Remove the domain's webhook.' This is clear enough, but the text does not explicitly distinguish this from the sibling mailkite_delete_tracking_webhook, so an agent may not know whether this deletes the main webhook or a tracking-specific one.

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?

There is no guidance about when to choose this tool over alternatives such as delete_tracking_webhook, set_webhook, or verify_webhook. The mention of the management session token tells the agent a prerequisite, but not which the webhook type this applies to or when this tool should be preferred.

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

Install Server

Other Tools