Skip to main content
Glama

Server Details

Real events, reviewed places, and ticket checkout across the Caribbean and Latin America.

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.4/5 across 6 of 6 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a distinct purpose: search vs. get by slug for both events and places, plus a category lookup and a checkout action. The clear separation between search and detail retrieval prevents confusion. No two tools appear to overlap in functionality.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case: create_, get_, list_, search_. The naming is uniform and predictable, making it easy to infer what each tool does from its name.

Tool Count5/5

With 6 tools, the server is well-scoped for its purpose of exploring events and places. Each tool covers a distinct aspect—search, detail retrieval, category lookup, and ticket checkout—without redundancy or bloat. This is within the ideal range for a focused MCP server.

Completeness4/5

The tool set covers the main workflows: discovering events and places, viewing details, and purchasing tickets. A minor gap is the lack of a category taxonomy for events, as list_categories is specific to places, but event categories are returned in search results and can be used ad hoc. Overall, the surface is functionally complete for consumers.

Available Tools

6 tools
create_ticket_checkoutCreate ticket checkout linkAInspect

Create a secure Stripe-hosted payment link for event tickets. Returns a checkout URL — give it to the human to complete payment themselves; tickets with QR codes are emailed after payment. Get ticket_type_id values from get_event. Always confirm the exact tickets and total with the human before calling this.

ParametersJSON Schema
NameRequiredDescriptionDefault
itemsYesTicket selections
buyer_nameNoBuyer's name (optional)
event_slugYesEvent slug
buyer_emailYesEmail to deliver tickets to (required — ask the human)

Output Schema

ParametersJSON Schema
NameRequiredDescription
eventNo
totalNo
currencyNo
order_idNo
checkout_urlNo
instructionsNo
Behavior4/5

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

Adds context beyond annotations: describes the payment flow (returns URL, tickets emailed after payment), which is consistent with the readOnlyHint=false and destructiveHint=false 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 concise sentences with no waste, front-loaded with the core purpose.

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?

Covers all aspects: input, output (checkout URL), side effects (email after payment), and prerequisites (get_event), making the tool self-contained.

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?

With 100% schema coverage, the description adds value by clarifying the buyer_email is required and should be asked from the human, and that ticket_type_id comes from get_event.

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?

Clearly states the tool creates a Stripe-hosted payment link for event tickets, distinguishing it from sibling tools like get_event which are read-only.

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?

Explicitly advises confirming ticket details with the human before calling and references get_event for ticket_type_id, but does not explicitly state when not to use.

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

get_eventGet event detailsA
Read-onlyIdempotent
Inspect

Full details for one event by slug: description, venue, date/time, and available ticket types with prices and remaining stock. Use the slug from search_events.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYesEvent slug from search_events

Output Schema

ParametersJSON Schema
NameRequiredDescription
urlNo
cityNo
slugNo
priceNo
titleNo
countryNo
ends_atNo
summaryNo
websiteNo
categoryNo
currencyNo
timezoneNoIANA timezone of the venue, e.g. America/Mexico_City. Null when unknown.
starts_atNoExact start instant, ISO-8601 UTC. Do NOT format this for a human — it is the wrong calendar day in most of the region. Use local_date / local_time.
local_dateNoThe date the event actually happens where it happens, YYYY-MM-DD. Quote this one.
local_timeNoLocal start time, HH:MM 24h. Null when start_time_known is false — say nothing about the time in that case.
descriptionNo
entry_modelNo
ticket_typesNo
location_nameNo
organizer_urlNo
attendee_countNo
organizer_nameNo
cover_image_urlNo
start_time_knownNoFalse when only the date is known and the stored hour is a placeholder. Never present a start time when this is false.
Behavior4/5

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

Annotations already declare readOnlyHint=true, destructiveHint=false, and idempotentHint=true. The description adds value by explicitly enumerating the returned fields (venue, date/time, ticket types with prices and remaining stock), giving the agent a preview of the response content beyond what annotations convey.

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 concise sentences, front-loaded with the core purpose and then a practical usage hint. No redundant words or repetition of structured fields, making every sentence earn its place.

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 one simple parameter, high schema coverage, an output schema, and complete annotations, the description adequately covers the tool's behavior and usage. It mentions the key response elements, making it self-sufficient for a straightforward getter.

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% with a description 'Event slug from search_events'. The tool description repeats this with 'Use the slug from search_events', reinforcing but not adding new meaning beyond the schema. The baseline is 3 given high schema coverage.

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 it provides 'Full details for one event by slug' and lists specific response components (description, venue, date/time, ticket types with prices and stock). This distinguishes it from siblings like search_events, which find events, and get_place, which retrieves place details.

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 tells the user to 'Use the slug from search_events', providing a clear prerequisite and source for the input. It implies this tool is for fetching a specific event's full details, but does not explicitly state when not to use it or offer alternative tool comparisons beyond the slug hint.

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

get_placeGet place details + reviewsA
Read-onlyIdempotent
Inspect

Full details for one place by slug, including its most recent published reviews if any exist. listing_type distinguishes a curated entry from an unreviewed directory listing (see search_places) — recent_reviews is often an empty array, which means no reviews yet, not a low-quality place. Use the slug from search_places.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYesPlace slug from search_places

Output Schema

ParametersJSON Schema
NameRequiredDescription
urlNo
cityNo
nameNo
slugNo
typeNo
addressNo
countryNo
summaryNo
websiteNo
categoryNo
avg_ratingNo
price_tierNo
descriptionNo
is_verifiedNo
is_sponsoredNo
listing_typeNo
review_countNo
recent_reviewsNo
Behavior4/5

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

Beyond the readOnly and idempotent annotations, the description adds semantic context: recent_reviews being an empty array means no reviews yet (not low quality), and listing_type distinguishes curated vs directory entries. This helps interpret results.

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 compact and front-loaded, with the main purpose in the first sentence and useful interpretive context in the second. It is efficient, though the phrase 'Use the slug from search_places' somewhat duplicates schema info.

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 simple single-parameter, read-only tool, the description provides adequate context: what the tool does, where the slug comes from, and key behavioral traits of the response (reviews and listing_type). The presence of an output schema covers the need to enumerate all fields.

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?

The only parameter, slug, is fully described in the schema as 'Place slug from search_places'. The description just repeats this instruction without adding new format details, so it remains at the schema-coverage baseline.

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 it retrieves full details for a single place by slug, including reviews. This distinguishes it from siblings like search_places and get_event by focusing on slug-based individual lookup.

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?

It instructs to use the slug from search_places, establishing a workflow and referencing the alternative tool for context. However, it does not explicitly say when not to use this tool (e.g., for filtered or searched lists), leaving some room for inference.

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

list_categoriesList place categoriesA
Read-onlyIdempotent
Inspect

Discover valid category values for search_places. Pifini's places directory uses Overture Maps' taxonomy — over 1,000 specific values like caribbean_restaurant, church_cathedral, landmark_and_historical_building — rather than broad buckets, so guessing a category string will usually miss. Call this first with a rough query (e.g. 'coffee' or 'beach') to find the exact value, then pass it to search_places' category parameter.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax results, 1-100 (default 30)
queryNoRough term to match against category values, e.g. 'coffee', 'beach'
countryNoISO-3166 alpha-2 country code — only return categories present in that country

Output Schema

ParametersJSON Schema
NameRequiredDescription
countYes
categoriesYes
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint. The description adds context about the taxonomy (Overture Maps) and the need for exact values, which goes beyond the annotations. No contradictions.

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 concise (4 sentences) and front-loaded with purpose. Every sentence adds value: purpose, taxonomy explanation, and usage workflow. No wasted words.

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 simple nature of the tool, rich annotations, and presence of output schema, the description covers all necessary aspects: purpose, usage, parameter roles, and relation to sibling tools. It is fully complete for an agent to use correctly.

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% with parameter descriptions. The description adds workflow context and examples (e.g., 'coffee', 'beach'), which enhances understanding beyond the schema alone.

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: 'Discover valid category values for search_places.' It uses a specific verb and resource, and distinguishes itself from sibling tools by explaining its role as a preliminary step for search_places.

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?

The description provides explicit usage guidance: 'Call this first with a rough query... then pass it to search_places' category parameter.' It explains when to use the tool and why exact values are necessary, effectively directing the agent's workflow.

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

search_eventsSearch eventsA
Read-onlyIdempotent
Inspect

Search upcoming events (festivals, carnivals, concerts, food + cultural events) across the Caribbean, Latin America, and beyond. Returns event names, dates, locations, category, price (when known), and page URLs. Strongest coverage: Barbados, Trinidad, Jamaica, Bahamas, Mexico.

ParametersJSON Schema
NameRequiredDescriptionDefault
cityNoCity name filter
limitNoMax results, 1-50 (default 10)
queryNoFree-text search over title and description
offsetNoSkip this many matching results (for paging past the limit)
countryNoISO-3166 alpha-2 country code, e.g. BB, TT, JM
categoryNoFilter by event category
near_latNoLatitude to search near (pair with near_lng)
near_lngNoLongitude to search near (pair with near_lat)
radius_kmNoSearch radius in km around near_lat/near_lng (default 25, max 500)
entry_modelNoFilter by how someone gets in: 'free' = confirmed free entry, 'ticketed' = Pifini sells tickets, 'external' = paid but sold elsewhere, 'mixed' = umbrella event with both free and paid components, 'unknown' = not yet confirmed either way.
include_pastNoInclude past events (default false)
starts_afterNoEarliest start. A bare date ('2026-08-01') matches the event's LOCAL calendar date in its own timezone and is inclusive — this is what you want for 'what's on this weekend'. A full ISO timestamp ('2026-08-01T18:00:00Z') is compared as an exact UTC instant instead.
starts_beforeNoLatest start, same rules as starts_after. A bare date is inclusive of that whole local day, so starts_after='2026-08-13' with starts_before='2026-08-13' returns everything happening on the 13th where it happens.

Output Schema

ParametersJSON Schema
NameRequiredDescription
countYesNumber of events in this page of results
totalYesTotal events matching the filters, across all pages. Use this before claiming how many exist.
eventsYes
has_moreYesTrue when more matches exist beyond this page.
next_offsetNoPass as `offset` to fetch the next page. Null when this is the last page.
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is covered. The description adds value by noting coverage limitations ('Strongest coverage: Barbados, Trinidad...') and return field specifics including the 'price (when known)' caveat, which helps set expectations.

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 no waste. It front-loads the action ('Search upcoming events...') and scope, then concisely lists return fields and coverage strengths.

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 rich schema (13 params, all documented) and the presence of an output schema, the high-level description is sufficient. It orients the agent to the tool's purpose and geographic focus without needing to restate parameter semantics. Slightly more context about filtering capabilities would push it to 5, but it is complete enough.

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 13 parameters have detailed descriptions in the schema (100% schema description coverage), including nuanced explanations for starts_after and starts_before date handling. The tool description adds no parameter-level detail beyond what the schema already provides, so the baseline score of 3 is appropriate.

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 it searches upcoming events (festivals, carnivals, concerts, food + cultural events) across a specific geography. It distinguishes itself from sibling tools like search_places and get_event by focusing on multi-event search for the Caribbean/Latin America region.

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?

It provides clear context for when to use the tool (event discovery in specific regions) but does not explicitly mention when not to use it or name alternatives. The context is sufficient for an agent to infer it is the right tool for finding events as opposed to places or single-event details.

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

search_placesSearch places and businessesA
Read-onlyIdempotent
Inspect

Search Pifini's places directory across the Caribbean and Latin America — restaurants, bars, beaches, attractions, venues, hotels, tour operators, professionals, and services. Every result carries listing_type: 'curated' is a small, editorially reviewed set of flagship entries; 'directory' is the much larger set sourced from open map data (name, category, location, contact info) that has no reviews yet — say so rather than implying a recommendation the data doesn't back up. Category is a specific Overture taxonomy value (e.g. caribbean_restaurant, church_cathedral), not a broad bucket — call list_categories first if unsure of the exact value. Results marked is_sponsored are paid placements — disclose that when recommending.

ParametersJSON Schema
NameRequiredDescriptionDefault
cityNoCity name filter
limitNoMax results, 1-50 (default 10)
queryNoFree-text search over name and summary
offsetNoSkip this many matching results (for paging past the limit)
countryNoISO-3166 alpha-2 country code
categoryNoFilter by exact category value (e.g. 'caribbean_restaurant'). Use list_categories to discover valid values — there are 1,000+, not a small fixed set.
near_latNoLatitude to search near (pair with near_lng)
near_lngNoLongitude to search near (pair with near_lat)
radius_kmNoSearch radius in km around near_lat/near_lng (default 25, max 500)
entity_typeNoFilter by broad type of place

Output Schema

ParametersJSON Schema
NameRequiredDescription
countYesNumber of places in this page of results
totalYesTotal places matching the filters, across all pages. Use this before claiming how many exist.
placesYes
has_moreYesTrue when more matches exist beyond this page.
next_offsetNoPass as `offset` to fetch the next page. Null when this is the last page.
Behavior5/5

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

Annotations already mark this as read-only and non-destructive, so the description adds valuable context about result types (curated vs directory), data provenance, and disclosure requirements. 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?

The description is composed of three well-organized sentences, each conveying essential information: scope, result interpretation, and category taxonomy. No filler or redundancy.

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?

The description covers critical operational nuances including regional scope, data quality tiers, category specificity, and sponsored content handling. With an output schema present, this is sufficiently complete for accurate use.

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?

The input schema already provides descriptions for all 10 parameters (100% coverage). The tool description adds minimal parameter-specific context beyond reiterating the category guidance already present in the schema, so it stays at the 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?

Description clearly states the tool searches Pifini's places directory across a specific region, listing the types of places covered. It distinguishes from siblings like search_events and get_place through resource specificity, making the purpose unambiguous.

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?

Provides explicit guidance on when to use the tool and directs users to list_categories first for valid category values. It also gives behavioral instructions for interpreting curated vs directory results and disclosing sponsored content, going beyond basic usage.

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