Skip to main content
Glama

update_display_settings

Modify an Eventbrite event's display settings by providing its event ID and the desired configuration options.

Instructions

Update Display Settings for an Event.

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

AUTHENTICATION: Requires: Authorization: Bearer PERSONAL_OAUTH_TOKEN

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
event_idYesEvent ID (required)
display_settingsNoDisplay settings 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 the auth requirement and endpoint, which is useful. However, it never says whether display_settings is merged or replaced wholesale, what happens to unspecified fields, or what permissions beyond a bearer token are needed.

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?

Short and front-loaded, with ENDPOINT and AUTHENTICATION broken into labeled blocks. Efficient, though the auth line is boilerplate that repeats what the schema-adjacent context already implies.

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?

Adequate for a two-parameter update, but the nested display_settings object is completely opaque in both schema and description, and there is no output schema to explain the result. An agent can call it but cannot verify what a valid request looks like.

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 the baseline is 3. The description adds nothing about the shape or allowed keys of the nested display_settings object, so it does not compensate for the fact that this opaque object is the only real payload.

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 Display Settings for an Event') plus the exact endpoint, so the operation is unambiguous. It does not, however, distinguish itself from the closely named siblings get_display_settings or update_ticket_buyer_settings.

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_display_settings or update_ticket_buyer_settings, and no prerequisites beyond the auth header. The agent must infer usage from the name 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