events-search
Server Details
Event search at Biletyna.pl - Poland's top-rated ticket distributor, widest offer in all cities.
- 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.
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.
Tool Definition Quality
Average 4.5/5 across 4 of 4 tools scored.
Each tool has a clearly distinct purpose: search_events finds events, get_event_details retrieves a specific performance, get_title_details gives title overview, and list_performances lists all dates. No overlap.
All tool names follow a consistent verb_noun pattern in snake_case (search_events, get_event_details, get_title_details, list_performances), making them predictable.
4 tools is well-scoped for an event search server, covering core functionality without unnecessary bloat or gaps.
The tool set provides a complete workflow: search for events, get detailed info on a title and its performances, and drill down to specific event details. Missing features like venue or category listing are addressed via attributes in existing tools.
Available Tools
4 toolsget_event_detailsAInspect
Returns a single performance identified by event_id (as returned by search_events or list_performances), with its title, venue, date, price, free places and buy_url. Free places and price are a snapshot taken at "_meta.indexed_at".
| Name | Required | Description | Default |
|---|---|---|---|
| event_id | Yes | Performance identifier - an event_id value from search_events or list_performances results. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description adds value by noting that free places and price are snapshots at _meta.indexed_at, indicating potential staleness. However, it does not disclose other behavioral aspects like authentication, rate limits, or idempotency, leaving some gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences with no superfluous words: first sentence states the core action and returned fields, second adds a key caveat about snapshot timing. Highly efficient and front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description lists the returned fields but does not detail their types, structure, or error conditions. Given no output schema, an agent might need to infer response format. Adequate for a simple tool but not fully self-contained.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% and the schema describes event_id as a performance identifier. The description adds value by specifying that event_id is obtained from search_events or list_performances results, which provides crucial usage context beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states that the tool returns a single performance identified by event_id, lists the returned fields, and explicitly derives event_id from sibling tools (search_events or list_performances), distinguishing it from those list-returning tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explains that event_id must come from search_events or list_performances, providing clear context for when to use this tool. It implicitly suggests not using it for searching or listing, but lacks an explicit 'when not to use' or alternative explanation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_title_detailsAInspect
Returns a single title currently on sale on Biletyna.pl, identified by artist_id (as returned by search_events). "title" holds the description, average user rating, top user reviews and the nearest performance. "cities" lists every city where the title is played - one entry per city with its buy_url, number of performances, nearest date and lowest price. Use list_performances(artist_id, city) for the individual dates.
| Name | Required | Description | Default |
|---|---|---|---|
| artist_id | Yes | Title identifier - the artist_id field from search_events results. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided; description is adequate in describing output but does not disclose behaviors like idempotency or resource consumption. It implies a read operation but lacks explicit behavioral statements.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences that front-load purpose and detail return structure. No wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema and one parameter, description covers return structure well and links to sibling tool for further details. Lacks notes on pagination or limits, but overall sufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Only one parameter with 100% schema coverage; description reinforces schema by specifying source (search_events). Adds minimal extra meaning beyond schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns a single title on sale, identified by artist_id, and specifies the content of 'title' and 'cities'. It distinguishes from siblings by referencing list_performances for individual dates.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states to use artist_id from search_events and suggests using list_performances for individual dates, providing clear when-to-use guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_performancesAInspect
Lists every performance of a single title, ordered by date, optionally narrowed to one city and a date range. Use this when the user asks for all dates of a title, or for its dates in a given city or on a given weekend - search_events returns only the nearest performance per title. Each performance carries its own venue, date, price, free places and buy_url. Only future performances are returned unless date_from says otherwise.
| Name | Required | Description | Default |
|---|---|---|---|
| city | No | City name filter (exact match, case-insensitive, diacritics required), e.g. "Warszawa". | |
| page | No | Page number, starting at 1. | |
| date_to | No | Latest performance date (YYYY-MM-DD), inclusive. | |
| artist_id | Yes | Title identifier - the artist_id field from search_events results. | |
| date_from | No | Earliest performance date (YYYY-MM-DD). Defaults to today. | |
| items_per_page | No | Performances per page. Defaults to 20. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden. It discloses that only future performances are returned unless date_from is specified, and describes the return structure (venue, date, price, free places, buy_url). However, it does not mention pagination behavior (e.g., how to get next page, total count) or ordering direction, which are relevant for usage.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is three sentences, with the main purpose in the first sentence. Every sentence provides essential information without filler. It is appropriately sized for the tool's complexity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema, the description explains return fields (venue, date, price, free places, buy_url) and ordering. It also covers filtering and default behavior. However, it lacks information on error handling, empty results, and pagination structuring (e.g., how to navigate pages), making it slightly incomplete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so baseline is 3. The description adds significant value: it explains that artist_id comes from search_events results, clarifies that date_from defaults to today (schema says null), and specifies exact match behavior for city (case-insensitive, diacritics required). This exceeds the schema descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'lists', the resource 'performances of a single title', and the ordering and optional filters. It explicitly differentiates from sibling tool search_events by stating that search_events returns only the nearest performance per title.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit guidance: 'Use this when the user asks for all dates of a title, or for its dates in a given city or on a given weekend' and contrasts with search_events which returns only the nearest performance. This clearly specifies when to use this tool versus alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_eventsAInspect
Searches performances (concerts, theatre plays, festivals, stand-up shows and more) currently on sale on Biletyna.pl, a Polish ticketing platform. Every filter applies to a single performance, so city, date range and price always describe the same event. Results are deduplicated by title: each hit is the nearest matching performance of a distinct title, carrying its buy_url, venue, price and free places, plus aggregates for its city (city_events_total, city_next_event_date) and for the whole title (title_events_total, title_cities_total). Use "facets" for the distribution of matches across cities and categories. Only future performances are returned unless date_from says otherwise. Use list_performances(artist_id) for all dates of a title, get_title_details(artist_id) for its description and all cities. Full-text search is typo-tolerant. All content is in Polish. Prices are provided both in grosze (_min_price) and PLN (_min_price_pln); dates both as unix timestamps and human-readable *_text fields. "_meta.indexed_at" tells when the data was last refreshed - free places and prices are a snapshot from that moment.
| Name | Required | Description | Default |
|---|---|---|---|
| city | No | City name filter (exact match, case-insensitive, diacritics required), e.g. "Warszawa". | |
| page | No | Page number, starting at 1. Compare "page" with "total_pages" or read "has_more" to know whether more results exist. | |
| sort | No | Result ordering. "date_asc" sorts by the performance date, "price_asc" by its cheapest ticket, "rating_desc" by the average rating of the title. Defaults to "relevance". | relevance |
| query | No | Search phrase: event name, performer or kind of event. Typo-tolerant. Use Polish terms when possible. | |
| date_to | No | Latest performance date (YYYY-MM-DD). | |
| category | No | Event category name filter (exact match), e.g. "koncert", "spektakl", "kabaret". | |
| date_from | No | Earliest performance date (YYYY-MM-DD). Defaults to today - past performances are never returned. | |
| max_price | No | Maximum price of the cheapest ticket for the performance, in PLN (not in grosze). | |
| min_rating | No | Minimum average user rating of the title (1-5 stars). | |
| items_per_page | No | Titles per page. Defaults to 10. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Discloses deduplication by title, result structure with aggregates, typo-tolerance, Polish content, snapshot freshness of prices, and date formats. Since no annotations exist, the description fully carries transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Front-loaded with purpose, then logically flows to filtering behavior, deduplication, aggregates, sibling guidance, and field format details. Every sentence adds value without repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema, the description thoroughly explains return fields (buy_url, venue, price, free places, aggregates, meta.indexed_at) and sorting/facets usage. It is self-contained for effective tool invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, but the description adds critical context: all filters apply to a single performance, results are deduped by title, and aggregates are included. This enhances understanding beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool searches performances on Biletyna.pl, listing specific event types. It distinguishes itself from siblings by explicitly mentioning list_performances and get_title_details for alternative use cases.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly advises when to use sibling tools: 'Use list_performances(artist_id) for all dates of a title, get_title_details(artist_id) for its description and all cities.' Also clarifies scope (future performances only unless date_from is set).
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing 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 published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
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!
Related MCP Servers
- AlicenseAqualityBmaintenanceProvides music events, concerts, music festivals, nightclubs and other events information.172MIT
- AlicenseAqualityBmaintenanceDiscover and book theatre, shows, events, tours and experiences across 700+ cities worldwide on tickadoo® with real-time pricing and booking links.4141MIT
- Alicense-qualityBmaintenanceDiscover tech events, startup meetups, AI events across cities including hidden ones.372MIT

cenogram-mcp-serverofficial
AlicenseAqualityAmaintenance7M+ real estate transactions from Poland's RCN registry. Search, compare, and analyze prices23771MIT