# Eventbrite — how to use (mcp.ai)

Eventbrite enables organizers to plan, promote, and manage events, selling tickets and providing attendee tools for conferences, concerts, and gatherings

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_eventbrite?ms=1781542140000`
Add it as a custom/remote MCP connector in your client (Claude, Cursor, VS Code…), then authenticate when prompted. Once connected, ask the agent to use the server's tools (e.g. `eventbrite_get_event_categories`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/eventbrite`
Auth: `Authorization: Bearer sk_live_…` — create a workspace API key at https://mcp.ai/settings/api-keys
Discover endpoints: `GET https://api.mcp.ai/api/eventbrite/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/eventbrite/get/event/categories` — Tool to retrieve event categories. use when selecting a category for an event. localizes results via optional locale parameter.
  - body: { locale?: string }
- `POST https://api.mcp.ai/api/eventbrite/get/event/formats` — Tool to list event formats. use when you need the available formats before creating or updating an event.
- `POST https://api.mcp.ai/api/eventbrite/get/event/subcategories` — Tool to list all event subcategories. use when fetching available subcategory options, optionally filtered by locale after selecting a category.
  - body: { locale?: string }

## More
- Page: https://mcp.ai/eventbrite
- Agent spec (llms.txt): https://mcp.ai/eventbrite/llms.txt
- Postman collection: https://mcp.ai/eventbrite/postman.json
