Skip to main content
Glama

Server Details

Search live events in 60+ countries, plan a night out, and demand artists to tour your city.

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 DescriptionsB

Average 3.6/5 across 6 of 6 tools scored. Lowest: 2.4/5.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose: demand_artist registers demand, demand_leaders shows leaderboard, get_event fetches details, list_news provides news, plan_my_night plans outings, search_events searches events. No overlap.

Naming Consistency5/5

All tool names follow a verb_noun pattern (e.g., demand_artist, search_events), with minor variation like plan_my_night still adhering to the pattern. Consistent and predictable.

Tool Count5/5

With 6 tools, the server is well-scoped for its purpose—enough to cover key functionalities without overwhelming or being too sparse.

Completeness4/5

Covers core event discovery, demand, details, news, and planning. Missing direct listing of venues or artists, but the set is functional for typical queries.

Available Tools

6 tools
demand_artistBInspect

Register demand ('Demand It!') for an artist to play in a city. Use when a user wishes an artist would tour their city. Returns how many fans now want that artist there.

ParametersJSON Schema
NameRequiredDescriptionDefault
cityYesCity the user wants them in
artist_nameYesArtist name, e.g. 'Taylor Swift'
Behavior3/5

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

No annotations are provided, so the description must disclose behavior. It states the return value: 'Returns how many fans now want that artist there.' This gives basic behavioral insight but does not detail side effects, permissions, or whether the operation is idempotent.

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 two sentences long and front-loads the action and usage. Every sentence adds value without redundancy. It is concise and well-structured.

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?

Given no output schema, the description compensates by mentioning the return value. The two required parameters are fully covered by the schema. However, the tool is a write operation with no annotation indicating destructiveness, and the description lacks details on error conditions or rate limits.

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 baseline is 3. The description adds minimal extra meaning: 'City the user wants them in' and 'Artist name, e.g. Taylor Swift' which are already implied by the schema. No additional context is provided beyond the schema.

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?

Description clearly states the tool registers demand for an artist in a city. The verb 'Register demand' and resource 'artist-city pair' are specific. Sibling tools like demand_leaders, get_event, etc., are distinct, but the description does not explicitly differentiate from demand_leaders.

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?

Provides explicit guidance on when to use the tool: 'Use when a user wishes an artist would tour their city.' However, it does not mention when not to use it or suggest alternative tools for similar tasks.

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

demand_leadersAInspect

Get the StungEvents demand leaderboard — the most-demanded artists and cities right now, and which artists are growing fastest.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior3/5

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

No annotations are provided, so the description must cover behavioral traits. It indicates a read operation returning leaderboard data but does not disclose any additional behavioral details such as data freshness, caching, or scope of the leaderboard.

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, clear sentence that front-loads the purpose without waste. It is concise and structured well.

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 no parameters and no output schema, the description covers the tool's purpose and output sufficiently. However, it could mention the time period or any filtering implicit in the leaderboard, and whether it returns lists or rankings.

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?

The input schema has zero parameters, so there is no need for parameter descriptions. The description adds no parameter semantics, but baseline for no parameters is 4.

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 the demand leaderboard, specifying it includes most-demanded artists, cities, and growing artists. The verb 'Get' and resource 'StungEvents demand leaderboard' are specific, and it distinguishes from siblings like 'demand_artist' which focuses on individual artists.

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 implies usage for viewing demand trends but does not provide explicit conditions or alternatives. No guidance on when to use this versus other tools like 'search_events' or 'demand_artist'.

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

get_eventAInspect

Get full details for one StungEvents event by its slug (from search_events results), including venue, date, price and ticket link.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYesEvent slug
Behavior3/5

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

No annotations provided; the description implies a read-only operation ('Get full details') but does not explicitly confirm no side effects, authentication needs, or rate limits.

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?

A single, well-structured sentence that includes all essential information without extraneous words.

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 retrieval tool with one parameter and no output schema, the description lists key return fields and clarifies input source; could mention potential error cases but not required.

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 a basic 'Event slug' description; the tool description adds value by explaining the slug originates from search_events results.

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 one event by slug, listing key fields (venue, date, price, ticket link) and explicitly distinguishes from search_events by referencing the slug source.

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 implies use after search_events by specifying the slug comes from its results, but doesn't explicitly state when not to use or mention alternatives; however, sibling tools are clearly different in purpose.

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

list_newsCInspect

Latest StungEvents music & entertainment news articles.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
Behavior2/5

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

Lacks details beyond listing. No mention of read-only nature (no annotations), authentication needs, pagination, or what 'latest' means. Minimal behavioral disclosure.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

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

Single sentence with no fluff, but too terse to be maximally useful. Could be improved by front-loading key constraints.

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?

Despite low complexity, description fails to specify return format, default behavior, or any constraints. Leaves agent with many unknowns.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Only parameter 'limit' has no schema description (0% coverage) and is not mentioned in description. Agent gets no help understanding the parameter's effect or default.

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?

Clear verb 'list' and resource 'news articles' with scope 'StungEvents music & entertainment'. Distinct from siblings which cover artists, leaders, events, planning, and 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 on when to use this tool vs alternatives. No mention of use cases or limitations.

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

plan_my_nightAInspect

Plan a complete night out around a StungEvents event — outfit suggestion, dinner nearby, rideshare, hotel and music links. Takes an event slug or id.

ParametersJSON Schema
NameRequiredDescriptionDefault
event_idYesEvent slug or id
Behavior3/5

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

No annotations are provided, so the description carries the full burden. It indicates the tool generates suggestions (outfit, dinner, etc.) but does not disclose whether it makes bookings, modifies state, or requires authorization. The behavioral description is present but limited.

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 sentence listing components, which is efficient and front-loaded with the core action. It is concise without being under-specified, though it could benefit from structured presentation.

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?

For a tool with one parameter and no output schema, the description provides a reasonable overview of what the plan includes. However, it lacks details on prerequisites (e.g., how to get the event) and what the output format is. Adequate but not comprehensive.

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 schema description coverage is 100%, and the description reinforces the parameter as 'event slug or id'. No additional meaning is added beyond what the schema already provides. Baseline 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 plans a complete night out around a StungEvents event, listing specific components (outfit, dinner, rideshare, hotel, music links). This distinguishes it from siblings like get_event or search_events, which are more focused on event retrieval.

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 implies when to use this tool (when you want a full night plan around an event) but does not explicitly exclude alternatives or provide when-not-to-use guidance. The context is clear enough given the distinct sibling tools.

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

search_eventsAInspect

Search live events worldwide on StungEvents — concerts, festivals, sports, comedy and more. Filter by city, country, category and date. Use this to answer 'what's happening / what's on' questions for any city.

ParametersJSON Schema
NameRequiredDescriptionDefault
cityNoCity name, e.g. 'London', 'Tokyo'
limitNoMax results (1-20)
queryNoFree-text search (artist, event, venue)
countryNoISO-2 country code, e.g. 'GB', 'US'
categoryNoEvent category
Behavior2/5

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

No annotations are provided, so the description must carry the full burden. It claims filtering by 'date', but the input schema has no date parameter, which is misleading. It also omits details about read-only nature, return format, or pagination.

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 two sentences and front-loaded with the core action. It's concise, though the misleading 'date' reference slightly detracts. Still efficient overall.

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?

Given no output schema and 5 parameters, the description leaves gaps: no mention of return structure, pagination, or required fields. The erroneous 'date' filter undermines completeness for a search tool.

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 adequate descriptions per param. The description adds a mention of filtering by city, country, category, and date, but 'date' is not in the schema, reducing added value. Baseline 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 'Search live events worldwide on StungEvents' with examples of categories. It explicitly says to use for 'what's happening / what's on' questions, differentiating from sibling tools like 'get_event' which retrieves a single event.

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 provides clear when-to-use guidance: 'Use this to answer "what's happening / what's on" questions for any city.' It does not explicitly mention when not to use or name alternative tools, but the context is sufficient.

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!

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources