Skip to main content
Glama

get_inventory_tier

Retrieve an Eventbrite event's inventory tier by ID to inspect capacity across tickets and GA holds. Provide event and tier IDs to get details or identify missing/unauthorized records.

Instructions

Retrieve an Inventory Tier by ID for an Event.

ENDPOINT: GET /events/{event_id}/inventory_tiers/{inventory_tier_id}/

Inventory Tier controls capacity across multiple tickets. Supports GA holds.

ERRORS (403):

  • NOT_AUTHORIZED

ERRORS (404):

  • NOT_FOUND: Event or inventory_tier_id doesn't exist

AUTHENTICATION: Requires: Authorization: Bearer PERSONAL_OAUTH_TOKEN

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
event_idYesEvent ID (required)
inventory_tier_idYesInventory Tier 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?

With no annotations, the description carries the full burden and does disclose the endpoint (GET, implying a safe read), the required authentication scheme (Bearer PERSONAL_OAUTH_TOKEN), and concrete error conditions (403 NOT_AUTHORIZED, 404 NOT_FOUND with the specific missing-entity cause). This is well beyond what the schema provides; only the response shape and any rate-limit behavior are unstated.

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 purpose, then organized into labeled ENDPOINT/ERRORS/AUTHENTICATION blocks. Every block carries actionable information for an agent, though the formatting is more verbose than necessary for a two-parameter lookup.

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 GET-by-ID tool with full parameter coverage, the description supplies endpoint, auth, and error semantics. Because there is no output schema and no annotation coverage, it could have described the returned tier fields, which leaves a modest gap.

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%, so both required parameters (event_id, inventory_tier_id) are already documented in the schema. The description adds no format, type, or sourcing guidance beyond restating the ID-based lookup, so the baseline 3 applies.

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 states a specific verb (Retrieve), resource (Inventory Tier), and scoping qualifier (by ID for an Event), and even explains what the resource is ('controls capacity across multiple tickets. Supports GA holds'). An agent can distinguish it from list_inventory_tiers, create_inventory_tier, and update_inventory_tier without opening the schema.

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?

Implied usage is clear from 'by ID' (a point lookup for a known inventory tier), but the description never states when to use this versus list_inventory_tiers or how to obtain the required IDs. No explicit alternatives or prerequisites are named.

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