List Webhooks
list_webhooksList the authenticated user's outbound booking webhooks (fired on booking_received, booking_rescheduled and booking_cancelled)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
list_webhooksList the authenticated user's outbound booking webhooks (fired on booking_received, booking_rescheduled and booking_cancelled)
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, so the description carries the behavioral disclosure burden. It correctly indicates a read-only operation ('List') and scopes to the authenticated user, but it does not disclose potential edge cases, pagination, ordering, or the response structure. The event types add useful context beyond the title.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, well-structured sentence that front-loads the action and resource, with a parenthetical list of relevant event types. Every word earns its place; no redundancy or fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple, parameterless list tool with no output schema, the description adequately covers the resource and scope. It could be slightly more complete by mentioning the return format (e.g., an array of webhook objects), but it is sufficient for an agent to understand the tool's basic function.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the input schema provides no semantic content. Per the guidelines, baseline for 0 parameters is 4; no additional parameter description is needed.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'List' and the resource ('the authenticated user's outbound booking webhooks') and even specifies the triggering events. It distinguishes itself from sibling tools like set_webhook and delete_webhook, which are mutation tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use this tool (to view the user's existing outbound booking webhooks). It does not explicitly mention alternatives or when not to use it, but the event-name list gives sufficient scoping guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Each tool targets a distinct resource and action: booking, availability, page info, webhooks, and health. There is no functional overlap; even get_page_info vs get_scheduling_pages are clearly singular vs plural.
Most tools follow verb_noun pattern (book_meeting, get_available_slots, list_webhooks, etc.). 'health_check' breaks the pattern (should be 'check_health') but is a minor deviation in an otherwise consistent set.
8 tools is well within the ideal 3-15 range. Each tool has a clear purpose, and the count matches the scope of meeting scheduling plus webhook management.
Covers booking, availability, page info, and webhook management, but lacks meeting lifecycle operations like cancel or reschedule. Webhook CRUD is complete, but the booking side is missing common follow-ups.