Skip to main content
Glama

create_text_overrides

Create custom localized text replacements for Eventbrite organizations, venues, or events to override default strings.

Instructions

Create Text Overrides for Organization, Venue, or Event.

ENDPOINT: POST /organizations/{organization_id}/text_overrides/

PARAMETERS:

  • locale: Locale (optional, uses event locale or default)

  • venue_id: Venue ID (optional)

  • event_id: Event ID (optional)

  • strings: Array of text override objects (required)

ERRORS (400):

  • MISSING, INVALID

AUTHENTICATION: Requires: Authorization: Bearer PERSONAL_OAUTH_TOKEN

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
localeNoLocale
stringsYesText override objects (required)
event_idNoEvent ID
venue_idNoVenue ID
organization_idYesOrganization ID (required)

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?

No annotations are provided, so the description carries the full burden, and it partially discharges this by disclosing the endpoint, the 400 error codes (MISSING, INVALID), and the required Bearer token auth. It does not say what a successful response returns, whether creates are idempotent, or whether existing overrides are overwritten. With no annotations, this is a meaningful but incomplete disclosure.

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 organized into labeled sections (ENDPOINT, PARAMETERS, ERRORS, AUTHENTICATION) with the purpose front-loaded. It is efficiently sized for a five-parameter mutation tool, though the schema restatement in PARAMETERS is somewhat redundant.

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 and no output schema, the description covers auth and error codes well, but it does not describe the return value or the shape of the required 'strings' array elements. An agent still lacks enough to construct the payload confidently.

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 restates each parameter and adds one genuinely useful note ('locale... uses event locale or default'), which exceeds the schema for that field, but it does not explain the structure of the required 'strings' objects.

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?

The description states a specific verb and resource ('Create Text Overrides') and clarifies the scoping dimension ('Organization, Venue, or Event'), which is enough to distinguish it from the read counterpart get_text_overrides. However, it does not explicitly name or contrast with that sibling the way a fully differentiated definition would.

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?

There is no explicit when-to-use or when-not-to-use guidance, nor any mention of the alternative get_text_overrides for retrieving overrides. The only usage signal is implicit: the tool creates overrides scoped to an organization, venue, or event.

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