Skip to main content
Glama

create_organization_webhook

Configure a webhook endpoint for an organization to get notified about selected Eventbrite actions, such as order.placed or event.published.

Instructions

Create a webhook endpoint for an organization. actions: comma-separated list like 'order.placed,attendee.checked_in,event.published'

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
actionsYes
event_idNo
endpoint_urlYes
organization_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

B3.2/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It communicates the creation side effect and the actions format, but omits auth requirements, endpoint verification behavior, idempotency, and the meaning of the optional event_id. This is a significant gap for a mutating tool.

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 description is appropriately concise: two sentences, purpose first, with a useful parameter hint and no filler. It could be structured slightly better, but it is efficient and front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The output schema helps with return values, but the description leaves key input context missing: what event_id means, whether endpoint_url has constraints like HTTPS, and what valid actions are beyond the examples. For a 4-parameter creation tool with zero schema coverage, this is incomplete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate. It usefully documents 'actions' as a comma-separated list with examples, but it provides no meaning for organization_id, endpoint_url, or the nullable event_id. Only one of four parameters gains real semantic value from the description.

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: 'Create a webhook endpoint for an organization.' This clearly distinguishes it from sibling tools like list_organization_webhooks, list_user_webhooks, and delete_webhook by signaling creation scoped to an organization.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No explicit when-to-use or when-not-to-use guidance is given, and no alternatives are named. However, the 'Create...' wording and the sibling tool names (list/delete webhooks) make the intended usage clear by implication.

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