Skip to main content
Glama

create_booking_page

Create a public booking page (a hosted scheduling link) for a calendar. Returns a booking_url to send to a human; when they pick a slot, a confirmed event is created on the calendar and an event.created webhook fires with a booking_page_id field. Set availability_constraints to restrict to weekly working hours; existing calendar events always block slots.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleYesMeeting title shown on the page.
activeNoWhether the page accepts bookings (default true).
timezoneNoIANA timezone for display + working hours (default UTC).
calendar_idYesCalendar a booking resolves to (from create_calendar/list_calendars).
descriptionNoOptional description shown to the booker.
window_daysNoHow far ahead bookings are allowed (default 14).
buffer_minutesNoPadding before/after existing events (default 0).
duration_minutesNoSlot length in minutes (default 30).
min_notice_minutesNoMinimum lead time before a bookable slot (default 0).
availability_constraintsNoWeekly working hours, e.g. {"mon":{"start":"09:00","end":"17:00"}}. Omit/null for any time in the window.

TDQS

A4.4/5.0
Behavior4/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. It transparently states that a confirmed event is created on the calendar and an event.created webhook fires with a booking_page_id field. It also mentions the slot blocking behavior. This is comprehensive for a creation tool.

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 two sentences with zero wasted words. The first sentence front-loads the purpose and return value, the second adds key behavioral constraints. Perfectly concise.

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?

The description covers the main purpose, return value, webhook side effect, and slot-blocking behavior. Given the tool has 10 parameters but no output schema, the description provides enough context for an agent to understand usage, though some details about parameter interactions could be added but are not critical.

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?

The input schema has 100% description coverage, so baseline is 3. The description adds value by explaining the return value (booking_url), the effect of availability_constraints, and that existing events block slots, which goes beyond the schema's parameter descriptions.

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 clearly states the tool creates a public booking page, specifying the verb 'Create', the resource 'booking page', and the context 'for a calendar'. It distinguishes from siblings like 'create_event' by mentioning the return of a booking_url and the scheduling behavior.

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?

The description provides usage context: 'Set availability_constraints to restrict to weekly working hours' and 'existing calendar events always block slots'. It implies when to use (to create a scheduling link) but does not explicitly exclude other scenarios, which is minor given clarity.

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.

TDQS

A3.9/5.0
Disambiguation5/5

Each tool targets a distinct resource and action, with clear descriptions that differentiate overlapping operations like cancel_event vs release_event and find_meeting_time vs get_availability.

Naming Consistency5/5

All 54 tools follow a consistent verb_noun pattern in snake_case (e.g., create_calendar, list_events, delete_webhook), with no mixing of styles or vague verbs.

Tool Count2/5

With 54 tools, the server is over-scoped; the rubric considers 25+ tools as 'too many' for typical purposes, making navigation and selection harder without justification for such granularity.

Completeness5/5

The toolset provides full CRUD for agents, calendars, events, booking pages, proposals, webhooks, and iCal subscriptions, plus specialized operations like hold management, proposal resolution, and admin functions, leaving no obvious gaps.