Skip to main content
Glama

update_ticket_buyer_settings

Modify ticket purchaser settings for a specific Eventbrite event using its event ID, including required buyer information and preferences.

Instructions

Update Ticket Buyer Settings for an Event.

ENDPOINT: POST /events/{event_id}/ticket_buyer_settings/

ERRORS (400):

  • FIELD_INVALID

ERRORS (403):

  • NOT_AUTHORIZED

ERRORS (404):

  • NOT_FOUND

AUTHENTICATION: Requires: Authorization: Bearer PERSONAL_OAUTH_TOKEN

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
event_idYesEvent ID (required)
ticket_buyer_settingsNoSettings object

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.6

TDQS

B3.2/5.0
Behavior3/5

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

With no annotations, the description carries the full burden; it does disclose auth requirements (Bearer token) and the 400/403/404 error surface, which is genuinely useful. It does not state what happens to unspecified settings, whether the change is reversible, or what a successful response looks like.

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-loads the one-line purpose, then lists endpoint, errors, and auth in scannable blocks. The error enumeration is somewhat boilerplate but short, and nothing is redundant with the schema.

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 mutation tool with no annotations, no output schema, and an undefined nested settings object, the description covers auth and failure modes well but leaves the actual payload semantics and success behavior unaddressed. Adequate but with a clear 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 description coverage is 100%, so the baseline is 3. However the nested 'ticket_buyer_settings' object has no defined properties or description beyond 'Settings object', and the description adds nothing to clarify its shape, so no credit above baseline.

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?

States a specific verb and resource ('Update Ticket Buyer Settings for an Event') and the endpoint, which clearly pairs it against the sibling get_ticket_buyer_settings. It stops short of naming that sibling or scoping what 'settings' means, but the purpose is unambiguous.

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 versus get_ticket_buyer_settings or other update tools, no prerequisites beyond the auth block, and no note on whether the update is partial or full replacement. The agent must infer usage from the verb alone.

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