Skip to main content
Glama

Manage a Webhook

manage_webhook
Destructive

List, inspect, create, delete, or test outgoing webhooks.

Webhooks let Trakkr ping an external URL when events fire (visibility changes, new citations, threats, etc.). Useful for piping the brand's AI-visibility signals into Slack, Linear, Notion, or any custom stack.

Actions:

  • 'list': All webhooks for the brand.

  • 'get': Full config for one webhook. Requires webhook_id.

  • 'create': Register a new webhook. Requires url and events. An optional signing_secret will be sent as a signing key on every request.

  • 'delete': Remove a webhook. Requires webhook_id.

  • 'test': Send a dummy event to the webhook URL. Requires webhook_id.

Common event names: 'visibility_changed', 'report_completed', 'competitor_added', 'citation_gained', 'citation_lost'.

Args: brand_id: The brand to update (required). action: Operation to perform. webhook_id: Required for get/delete/test. url: HTTPS endpoint. Required for 'create'. events: Event names to subscribe to. Required for 'create'. signing_secret: Optional signing secret for 'create'.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlNo
actionYes
eventsNo
brand_idYes
webhook_idNo
user_intentNoAnalytics hint: the user's latest request in one short sentence. Omit secrets and prior chat.
signing_secretNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare destructiveHint=true, openWorldHint=true, idempotentHint=false, and readOnlyHint=false, so the safety profile is covered. The description adds real value on top: the signed-request behavior of signing_secret, that 'test' fires a dummy event, and that 'delete' removes the webhook outright. It stops short of stating reversibility or permission requirements for delete.

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 one-line summary is front-loaded, followed by clean Actions and Args sections that are easy to scan. The webhook-explainer paragraph is slightly indulgent, but it establishes context that justifies the tool's existence, so little is wasted.

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 7-parameter, 5-action, no-output-schema tool, the description covers every action, every required argument, valid enum values, and common event names. It does not say what 'create' or 'get' return, nor whether 'list' paginates, which are the only remaining ambiguities.

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 only 14%, so the description must carry the load, and it does: it maps brand_id, action, webhook_id, url, events, and signing_secret to their owning actions, and enumerates valid webhook_id/url/events semantics. Only user_intent is unexplained in prose, but the schema itself documents it, so the gap is minor.

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 opening line gives a precise verb set (List, inspect, create, delete, test) plus the resource (outgoing webhooks), and the action list spells out exactly what each operation does. No sibling tool covers webhooks, so differentiation is moot, but the scope of each action is unambiguous.

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?

Each action is paired with its prerequisites ('get'/'delete'/'test' need webhook_id, 'create' needs url and events), and the description frames when webhooks are useful (Slack, Linear, Notion, custom stacks). It lacks explicit exclusions or a 'prefer X over this when…' clause, so it falls just short of a 5.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources