Skip to main content
Glama

get_venue

Retrieve full venue details by ID from Eventbrite, including name, address, capacity, coordinates, and age restrictions. Use it to find where an event takes place.

Instructions

Retrieve a Venue by ID.

ENDPOINT: GET /venues/{venue_id}/

Venue represents location where Event takes place. Venues grouped by Organization.

VENUE FIELDS:

  • id (string): Venue ID

  • name (string): Venue name

  • address (address): Venue address

  • age_restriction (string): Age restriction

  • capacity (number): Maximum tickets that can be sold

  • latitude (string): Latitude coordinates

  • longitude (string): Longitude coordinates

AUTHENTICATION: Requires: Authorization: Bearer PERSONAL_OAUTH_TOKEN

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
venue_idYesVenue ID (required)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.6

TDQS

A3.9/5.0
Behavior4/5

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

No annotations are provided, so the description carries the burden, and it does deliver the key behavioral fact: the call requires an Authorization: Bearer PERSONAL_OAUTH_TOKEN header. It also confirms this is a pure read (Retrieve) and enumerates the returned fields, though it says nothing about 404/precondition behavior.

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?

Front-loaded with the one-line purpose, then clearly labeled ENDPOINT, VENUE FIELDS, and AUTHENTICATION sections. The field list is longer than strictly necessary but earns its place as a stand-in for the absent output schema; no filler sentences.

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?

With no output schema and no annotations, the description usefully supplies the return shape (id, name, address, age_restriction, capacity, latitude, longitude), a domain note that venues are grouped by Organization, and the auth requirement. It is nearly sufficient; only error/not-found behavior and the exact ID format are missing.

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 already 100% for the single venue_id parameter, so the schema fully documents the input's format expectation. The description adds no extra semantics about the identifier (e.g., whether it is the numeric ID or a slug) beyond restating the field list of the entity, which is response data, not parameter guidance. Baseline 3 when the schema does the heavy lifting.

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?

States a specific verb and resource ('Retrieve a Venue by ID') plus the exact endpoint GET /venues/{venue_id}/, so the agent knows precisely what this does and that it is a single-resource fetch rather than a list.

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?

Usage is only implied by the name and the 'by ID' phrasing; there is no explicit statement of when to prefer this over list_venues or what happens when the ID is unknown. A capable agent can infer the singleton-vs-list split, but nothing in the text routes it.

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

Deploy Server

Other Tools