Skip to main content
Glama

In-Context — AI-Native Portfolio

booking_create

Create a booking at a specific time slot

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesAttendee name
emailYesAttendee email
notesNoOptional notes about the project
startYesISO 8601 start time
timezoneNoIANA timezone

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It only says 'Create a booking,' which implies a write operation, but does not mention side effects (e.g., confirmation emails), failure modes (e.g., slot already taken), permissions, or what the response contains. This is a significant transparency gap 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.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, direct sentence with no redundant words. It is front-loaded and efficient, but given the tool's complexity (5 parameters), it is arguably under-specified. Still, it earns its place as a concise purpose statement.

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?

With no output schema and no annotations, the description should explain what happens on success/failure, whether the booking is confirmed, and how it relates to booking_get_slots. It provides none of this, leaving critical gaps for an agent to use the tool correctly.

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?

All five parameters are fully described in the input schema (name, email, notes, start, timezone), so the schema provides the heavy lifting. The description adds no parameter-specific context, but per baseline for high schema coverage, this is acceptable.

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 action ('Create') and the resource ('a booking'), and adds 'at a specific time slot' to convey the key input. It is unambiguous and distinguishes from sibling tools by nature of being a create operation, though it does not explicitly mention the siblings.

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 provides no guidance on when to use this tool versus alternatives. It does not mention that booking_get_slots should be used first to find an available time slot, nor does it state any prerequisites or conditions. This leaves the agent without context for proper tool selection.

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.7/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: creating bookings, fetching available slots, and viewing the portfolio. No overlap or ambiguity between them.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern: booking_create, booking_get_slots, view_portfolio. The naming is predictable and readable.

Tool Count5/5

With 3 tools, the set is well-scoped for a portfolio/booking server. Each tool is essential and there is no bloat.

Completeness4/5

Core workflows are covered: viewing portfolio and booking a slot. Minor gaps like updating or canceling bookings are not critical for the apparent purpose.

Resources