Skip to main content
Glama

Create webhook

create_webhook

Registers a webhook endpoint. The response's signingSecret is shown once — store it immediately, it can't be retrieved again.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesThe https:// URL events are POSTed to. Local and internal addresses are rejected; plain http:// is accepted only for localhost.
nameNoOptional label for the endpoint, e.g. 'Prod'.
eventTypesYesThe events to deliver to this endpoint, at least one, e.g. ['course.completed'].

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
urlYes
nameYes
isActiveYes
createdAtYes
eventTypesYes
workspaceIdYes
signingSecretYesSigns every delivery to this endpoint. Returned only here, once: store it now, it can't be retrieved again.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A3.6/5.0
Behavior4/5

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

The description adds critical behavioral context beyond the annotations: the signingSecret is shown once and cannot be retrieved again, warning the agent to preserve it. Annotations already indicate this is a write operation (readOnlyHint=false), and the description complements rather than contradicts them.

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?

Two short, purposeful sentences. The first states the core behavior and the second flags a non-obvious, operationally important detail. No filler or redundancy; the most critical operational warning is placed prominently.

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?

Given the output schema exists and the request schema is fully documented, the description covers the essential extra context an agent needs: registering a webhook and preserving the one-time signing secret. It is slightly sparse on why one would create a webhook, but the schema and annotation coverage fill the remaining gaps.

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 input schema has 100% coverage with descriptions for all three parameters, so the description does not need to explain them. It adds no parameter-level detail, matching the baseline expectation. The mention of signingSecret relates to the response, not the request schema.

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 'Registers' and the resource 'webhook endpoint,' making the tool's purpose unambiguous. It distinguishes itself from the many sibling webhook tools (delete_webhook, update_webhook, get_webhook) by indicating creation. It is slightly terse but sufficient.

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 says what the tool does but not when to use it versus alternatives. It does not mention that creating a webhook is for receiving event notifications, nor does it contrast with update_webhook or list_webhooks. Usage context must be inferred entirely from the verb and tool name.

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