Server Details
AI ticket commerce for theme parks, zoos, museums, and aquariums via any AI agent
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
See and control every tool call
Available Tools
19 toolsadd_to_cartInspect
Add a product to the shopping cart. Omit venueId when connected to a venue-specific endpoint.
| Name | Required | Description | Default |
|---|---|---|---|
| date | No | Visit date (YYYY-MM-DD) | |
| cartId | Yes | Cart ID from create_cart | |
| venueId | No | Venue ID. Omit when connected to a venue-specific endpoint. | |
| quantity | No | Quantity to add | |
| timeSlot | No | Time slot (HH:mm) | |
| productId | No | Product ID from search_experiences | |
| idempotencyKey | No | Unique idempotency key |
apply_promo_codeInspect
Apply a promotional code to the cart for a discount. Omit venueId when connected to a venue-specific endpoint.
| Name | Required | Description | Default |
|---|---|---|---|
| cartId | Yes | Cart ID | |
| venueId | No | Venue ID. Omit when connected to a venue-specific endpoint. | |
| promoCode | No | Promotional code | |
| idempotencyKey | No | Unique idempotency key |
check_availabilityInspect
Check real-time availability for a product on a specific date. Omit venueId when connected to a venue-specific endpoint.
| Name | Required | Description | Default |
|---|---|---|---|
| date | No | **Required.** Date to check (YYYY-MM-DD) | |
| venueId | No | Venue ID. Omit when connected to a venue-specific endpoint. | |
| quantity | No | Number of tickets needed | |
| productId | No | **Required.** Product ID from search_experiences | |
| timeSlotPreference | No | Preferred time slot (HH:mm) |
create_cartInspect
Create a new shopping cart for this session. Omit venueId when connected to a venue-specific endpoint.
| Name | Required | Description | Default |
|---|---|---|---|
| venueId | No | Venue ID from discover_venues. Omit when connected to a venue-specific endpoint. | |
| currency | No | Currency code (default: USD) | USD |
| sessionId | No | MCP session ID | |
| customerId | No | Customer ID if authenticated | |
| idempotencyKey | No | Unique idempotency key |
discover_venuesInspect
Search for venues, theme parks, zoos, museums, and attractions near a location
| Name | Required | Description | Default |
|---|---|---|---|
| date | No | Date to check availability (YYYY-MM-DD format) | |
| limit | No | Maximum results to return | |
| types | No | Venue types to filter by | |
| keywords | No | Keywords for natural language search | |
| location | Yes | Location to search near (e.g., 'San Diego, CA', 'New York City') | |
| radiusMiles | No | Search radius in miles |
get_cartInspect
Get the current state of a shopping cart. Omit venueId when connected to a venue-specific endpoint.
| Name | Required | Description | Default |
|---|---|---|---|
| cartId | Yes | Cart ID | |
| venueId | No | Venue ID. Omit when connected to a venue-specific endpoint. |
get_checkout_urlInspect
Generate a secure checkout URL for the cart. Omit venueId when connected to a venue-specific endpoint.
| Name | Required | Description | Default |
|---|---|---|---|
| cartId | Yes | Cart ID | |
| venueId | No | Venue ID. Omit when connected to a venue-specific endpoint. | |
| cancelUrl | No | Cancel redirect URL | |
| successUrl | No | Success redirect URL | |
| customerEmail | No | Customer email to pre-fill |
get_entitlementsInspect
Get authenticated customer's active tickets, passes, and entitlements. Omit venueId when connected to a venue-specific endpoint.
| Name | Required | Description | Default |
|---|---|---|---|
| venueId | No | Venue ID. Omit when connected to a venue-specific endpoint. | |
| activeOnly | No | Only return active/valid entitlements |
get_membershipInspect
Get authenticated customer's membership status and benefits at a venue. Omit venueId when connected to a venue-specific endpoint.
| Name | Required | Description | Default |
|---|---|---|---|
| venueId | No | Venue ID. Omit when connected to a venue-specific endpoint. |
get_ordersInspect
Get authenticated customer's order history at a venue. Omit venueId when connected to a venue-specific endpoint.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum orders to return | |
| venueId | No | Venue ID. Omit when connected to a venue-specific endpoint. | |
| includeItems | No | Include order line items |
get_order_statusInspect
Check the status of a specific order. Omit venueId when connected to a venue-specific endpoint.
| Name | Required | Description | Default |
|---|---|---|---|
| venueId | No | Venue ID. Omit when connected to a venue-specific endpoint. | |
| orderNumber | No | Order number to check |
get_pricingInspect
Get dynamic pricing for a product including guest type breakdown and discounts. Omit venueId when connected to a venue-specific endpoint.
| Name | Required | Description | Default |
|---|---|---|---|
| date | No | Date for pricing (YYYY-MM-DD) | |
| adults | No | Number of adult tickets | |
| seniors | No | Number of senior tickets | |
| venueId | No | Venue ID. Omit when connected to a venue-specific endpoint. | |
| children | No | Number of child tickets | |
| productId | No | **Required.** Product ID from search_experiences | |
| promoCode | No | Promotional code |
get_venue_detailsInspect
Get detailed information about a venue including location, type, and attributes. Omit tenantId when connected to a venue-specific endpoint.
| Name | Required | Description | Default |
|---|---|---|---|
| tenantId | No | Venue ID from discover_venues result. Omit when connected to a venue-specific endpoint. |
get_venue_hoursInspect
Get venue operating hours for a specific date. Omit tenantId when connected to a venue-specific endpoint.
| Name | Required | Description | Default |
|---|---|---|---|
| date | No | Date to check hours (YYYY-MM-DD, defaults to today) | |
| tenantId | No | Venue ID. Omit when connected to a venue-specific endpoint. |
get_venue_infoInspect
Get comprehensive venue information including hours, policies, and FAQ. Omit tenantId when connected to a venue-specific endpoint.
| Name | Required | Description | Default |
|---|---|---|---|
| tenantId | No | Venue ID. Omit when connected to a venue-specific endpoint. | |
| includeFaq | No | Include FAQ items | |
| includeHours | No | Include operating hours | |
| includePolicies | No | Include venue policies |
initiate_checkoutInspect
Initiate checkout - returns checkout URL or platform payment flow based on operator config. Omit venueId when connected to a venue-specific endpoint.
| Name | Required | Description | Default |
|---|---|---|---|
| cartId | Yes | Cart ID | |
| venueId | No | Venue ID. Omit when connected to a venue-specific endpoint. | |
| platform | No | AI platform (claude, chatgpt, copilot) | |
| cancelUrl | No | Cancel redirect URL | |
| successUrl | No | Success redirect URL | |
| customerEmail | No | Customer email | |
| idempotencyKey | No | Unique idempotency key |
remove_from_cartInspect
Remove an item from the cart. Omit venueId when connected to a venue-specific endpoint.
| Name | Required | Description | Default |
|---|---|---|---|
| cartId | Yes | Cart ID | |
| venueId | No | Venue ID. Omit when connected to a venue-specific endpoint. | |
| lineItemId | No | Line item ID to remove | 00000000-0000-0000-0000-000000000000 |
search_experiencesInspect
Search for tickets, experiences, and products at a venue using natural language. Omit venueId when connected to a venue-specific endpoint.
| Name | Required | Description | Default |
|---|---|---|---|
| date | No | Date for availability (YYYY-MM-DD) | |
| limit | No | Maximum results to return | |
| query | No | Natural language search query | |
| venueId | No | Venue ID from discover_venues. Omit when connected to a venue-specific endpoint. | |
| quantity | No | Number of tickets needed | |
| ticketTypes | No | Filter by ticket types |
update_cartInspect
Update the quantity of an item in the cart. Omit venueId when connected to a venue-specific endpoint.
| Name | Required | Description | Default |
|---|---|---|---|
| cartId | Yes | Cart ID | |
| venueId | No | Venue ID. Omit when connected to a venue-specific endpoint. | |
| quantity | No | New quantity (0 to remove) | |
| lineItemId | No | Line item ID to update | 00000000-0000-0000-0000-000000000000 |
To claim this server, publish a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [
{
"email": "your-email@example.com"
}
]
}The email address must match the email associated with your Glama account. Once verified, the server will appear as claimed by you.
Control your server's listing on Glama, including description and metadata
Receive usage reports showing how your server is being used
Get monitoring and health status updates for your server
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!