Skip to main content
Glama

Server Details

Booking gateway for AI agents — discover events, movies & hotels, hand off to partner checkout.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.1/5 across 7 of 7 tools scored. Lowest: 3.4/5.

Server CoherenceA
Disambiguation5/5

Each tool has a clear, distinct role: discovery (search, search_all, list_verticals, list_venues), options (find_options), booking (book), and user feedback (request_unsupported_booking). No two tools perform the same function.

Naming Consistency3/5

Some tools follow verb_noun (list_venues, list_verticals, find_options, request_unsupported_booking), while others are single verbs or verb_adverb (book, search, search_all). The inconsistency in pattern may confuse an agent.

Tool Count5/5

Seven tools is well-scoped for a booking discovery service. Each tool covers a necessary step in the user journey without being overwhelming or sparse.

Completeness4/5

The set covers the core workflow: discover verticals, search, get options, book, and flag unsupported requests. Minor gaps exist (e.g., no tool to view or cancel bookings), but these are beyond the stated purpose.

Available Tools

7 tools
bookA
Destructive
Inspect

Book an option (showtime, ticket class, etc.).

If a partner API is connected, completes the booking inline with a confirmation code. Otherwise returns an affiliate deep link the agent should hand to the user.

ParametersJSON Schema
NameRequiredDescriptionDefault
locationNoFor affiliate fallback.
verticalYesThe vertical (e.g. "movies", "events").
option_idYesshowtime_id or ticket_id from find_options.
item_titleNoFor affiliate fallback / logging.
party_sizeNoNumber of tickets/seats. Default 2.
venue_nameNoFor logging.
agent_clientNoOptional — name of the calling agent (Claude, ChatGPT, etc.).

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

Behavior4/5

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

Annotations already set destructiveHint=true. The description adds value by detailing the two outcomes (inline booking vs. affiliate link), clarifying that no actual booking may occur if no partner API is connected. No contradiction with annotations.

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?

Three sentences, front-loaded with purpose, conditional behavior, and no wasted words. Highly 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?

For a tool with 7 parameters (2 required) and an output schema, the description covers the main behavioral branches (inline vs. affiliate). It doesn't detail return format (output schema handles that) and assumes domain knowledge (option_id from find_options). Adequate but not exhaustive.

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?

Schema coverage is 100% (all 7 parameters described). The description adds minimal extra meaning beyond schema; the only addition is explaining affiliate fallback behavior, which is not parameter-specific. Hence baseline 3.

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 starts with 'Book an option (showtime, ticket class, etc.)' clearly stating the verb and resource. It distinguishes from sibling tools like find_options (which finds options) and request_unsupported_booking (handles unsupported cases).

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 explains two scenarios: if partner API connected, completes inline; otherwise returns affiliate deep link. This guides when to expect a confirmation vs. a link, but doesn't explicitly state when not to use or alternatives beyond implicit sibling differentiation.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

find_optionsA
Read-only
Inspect

Find concrete bookable options for an item.

For movies: showtimes for the given film. For events: ticket classes.

ParametersJSON Schema
NameRequiredDescriptionDefault
whenNoISO date (YYYY-MM-DD) or "today"/"tomorrow". Default "today".today
item_idYesID returned by `search` (film_id, event_id), or a title for fuzzy lookup.
locationNoCity, postcode, or "lat,lng" — required for movies.
verticalYesThe vertical (e.g. "movies", "events").
agent_clientNoOptional — name of the calling agent (Claude, ChatGPT, etc.). Pass the SAME value across search → find_options → book so the trust stack can link the booking to its prior discovery.

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

Behavior4/5

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

Annotations already declare readOnlyHint=true, so the description is consistent. It adds value by specifying the output type for different verticals (showtimes vs. ticket classes), which is beyond what annotations provide.

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 extremely concise: two sentences that immediately state the core purpose and provide vertical-specific examples. Every word is necessary, and it is front-loaded with the main action.

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, the description does not need to detail return values. It covers the main use cases (movies, events) and mentions key parameters. However, it does not explain the 'when' or 'agent_client' parameters, though the schema covers them.

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?

Schema coverage is 100%, so the baseline is 3. The description does not add additional meaning beyond the schema; it merely repeats the vertical-specific behavior. No parameter details are elaborated.

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's purpose: 'Find concrete bookable options for an item.' It distinguishes itself from siblings by specifying it returns showtimes for movies and ticket classes for events, which differentiates it from search or booking tools.

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?

The description provides context by mentioning movies and events, but it lacks explicit guidance on when to use this tool versus alternatives like search or list_venues. No exclusions or when-not-to-use information is provided.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_venuesB
Read-only
Inspect

List venues near a location, marked as bookable or not.

ParametersJSON Schema
NameRequiredDescriptionDefault
locationYesCity, postcode, or "lat,lng".
verticalYesThe vertical (e.g. "movies", "events").
radius_kmNoSearch radius. Default 15 km.
agent_clientNoOptional — name of the calling agent (Claude, ChatGPT, etc.).

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

Behavior3/5

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

Annotations already declare readOnlyHint=true, so the description aligns by indicating a read operation. However, it adds no extra behavioral details beyond that.

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 a single sentence that fits the essential purpose without any wasted words.

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 description omits important context such as the required 'vertical' parameter or the optional radius. It also does not mention the output schema, though that exists separately.

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?

Schema description coverage is 100%, so the schema fully explains parameters. The description does not add new semantic meaning to any parameter.

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 lists venues near a location and indicates their bookable status. This is specific and distinguishes it from siblings like 'book' or 'search'.

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?

No guidance is provided on when to use this tool versus alternatives. With six sibling tools, explicit usage context is missing.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_verticalsA
Read-only
Inspect

List all booking verticals Agentorist currently supports.

Returns a dict with each vertical's name and description. Call this first to discover what's bookable before constructing other tool calls.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

Behavior4/5

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

Annotations already provide readOnlyHint: true. The description adds behavioral details about the return structure (dict with name and description) and usage ordering, which adds value beyond annotations.

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 has two sentences: the first states purpose, the second adds return format and usage guidance. Every sentence earns its place with no fluff.

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

Completeness5/5

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

Given the existence of an output schema, the description adequately covers the return value and provides usage context. For a no-parameter tool, it is sufficiently complete.

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?

There are no parameters (0 params), and schema description coverage is 100%. Per the guidelines, baseline for 0 params is 4, and the description does not need to add parameter info.

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 verb 'List' and resource 'all booking verticals', and specifies the return format as a dict with name and description. It distinguishes from sibling tools by advising to call it first to discover what is bookable.

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 explicitly says 'Call this first to discover what's bookable before constructing other tool calls', giving clear when-to-use context. However, it does not explicitly mention when not to use or list alternatives, though the sibling context fills some gaps.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

request_unsupported_bookingA
Destructive
Inspect

Log a booking request Agentorist can't yet fulfil.

This is the demand-intelligence engine. Every call here becomes a data point sold to the venue as monthly missed-revenue insight. Optionally captures email so the user is notified when the venue joins.

ParametersJSON Schema
NameRequiredDescriptionDefault
locationNoCity or area.
verticalYesWhich vertical the request belongs to.
when_isoNoRequested time in ISO 8601 (optional).
item_titleYesThe film, event, or experience.
party_sizeNoNumber of tickets.
user_emailNoOptional, for join-notification.
venue_nameYesName of the venue the user wanted.
venue_chainNoe.g. Vue, Odeon, Cineworld.
agent_clientNoCalling agent (Claude, ChatGPT, etc.).

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

Behavior4/5

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

Description adds context beyond annotations by explaining that calls become data points sold to venues and optionally notifies the user via email. Aligns with 'destructiveHint: true' as a record-creation operation.

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?

Description is four sentences, front-loaded with purpose, no wasted words. Efficiently conveys core functionality and business value.

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

Completeness3/5

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

Despite output schema existing, the description lacks guidance on when to use this tool versus siblings (e.g., 'book', 'search'), prerequisites, or error handling. Adequate for basic understanding but incomplete for optimal selection.

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?

Schema has 100% description coverage, so baseline is 3. Description adds minimal parameter-specific meaning, only highlighting 'user_email' for join-notification. Most parameters are explained adequately in schema.

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?

Description uses specific verb 'Log' and resource 'booking request' that aligns with tool name. Differentiates from sibling 'book' by indicating this is for unsupported bookings.

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?

Implicitly suggests use when a booking can't be fulfilled by Agentorist, but does not explicitly state when not to use or mention alternatives like 'search' to check venue support. Lacks direct usage guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_allA
Read-only
Inspect

Search every Agentorist vertical at once — the answer to "what's on?".

Use this when the user's request spans verticals or doesn't clearly name one ("what's on tonight", "anything to do in Boston?", "Friday night plans"). For specific single-vertical queries ("movies tonight", "Italian restaurants"), search_all auto-narrows to the hinted vertical so you don't waste calls.

Returns results_by_vertical keyed by movies/events/local, plus total_count and bookable_total for quick summaries.

ParametersJSON Schema
NameRequiredDescriptionDefault
whenNoOptional time hint ("tonight", "weekend", or ISO date).
queryYesNatural-language query. Empty string is fine (= browse).
localeNoOptional BCP-47 locale ('en-US', 'fr-FR', 'de-DE', etc.). Forwarded to verticals that localise their response (experiences).
locationYesCity, postcode, or "lat,lng".
territoryNoISO country code (US, GB, etc.). Default US.US
agent_clientNoOptional — name of the calling agent.

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

Behavior4/5

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

Annotations already show readOnlyHint=true, so description is not contradicted. It adds valuable behavioral context: auto-narrows to hinted vertical, returns structured results (results_by_vertical, total_count, bookable_total). No extra info on auth or rate limits, but adequate for a read-only 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?

Every sentence is purposeful. The core purpose is stated first, then usage guidelines, then return structure. No wasted words. Concise yet informative.

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

Completeness5/5

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

With output schema existence and rich annotations, the description covers all needed context: what it does, when to use, auto-narrowing behavior, and key output fields. For a complex tool with 6 parameters, this is complete.

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?

Schema coverage is 100%, but description adds practical meaning: 'empty string is fine (= browse)' for query, 'Optional time hint' for when with examples. This goes beyond the schema's basic 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 searches all Agentorist verticals at once, with a specific verb ('search') and resource ('every vertical'). It distinguishes from siblings like 'search' by explaining auto-narrowing behavior for single-vertical queries.

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

Usage Guidelines5/5

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

It explicitly tells when to use (queries spanning verticals or vague) and when not to (specific single-vertical queries it auto-narrows, hinting to use sibling 'search'). Provides concrete examples ('what's on tonight', 'anything to do in Boston?').

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources