# Eventzilla — how to use (mcp.ai)

Connect your Eventzilla account and use 9 tools for event management straight from your AI agent. Connect with your own API key. Eventzilla is an event management platform that provides tools for creating, promoting, and managing events, including ticketing, registration, and attendee management.

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_eventzilla?ms=1787295780000`
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. `eventzilla_cancel_order`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/eventzilla`
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/eventzilla/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/eventzilla/cancel/order` — Tool to cancel an event order by checkout ID and event ID. Use when you need to cancel a customer's order and require a reason for the cancellation.
  - body: { eventid: integer, comments: string, checkout_id: integer }
- `POST https://api.mcp.ai/api/eventzilla/check/in/attendee` — Tool to check in or revert check-in for an attendee using their unique barcode. Use when you need to mark an attendee as present at an event or undo a check-in.
  - body: { barcode: string, eventcheckin: boolean }
- `POST https://api.mcp.ai/api/eventzilla/confirm/order` — Tool to confirm an event order by checkout ID and event ID. Use when you need to confirm a pending order and optionally send a confirmation email to the buyer.
  - body: { eventid: integer, comments?: string, sendemail?: boolean, checkout_id: integer, eventdateid: integer, payment_status: string }
- `POST https://api.mcp.ai/api/eventzilla/get/user/details` — Tool to retrieve detailed information of a specific user. Use after listing users to fetch full profile.
  - body: { user_id: string }
- `POST https://api.mcp.ai/api/eventzilla/list/categories` — Tool to retrieve event categories available in Eventzilla. Use when you need to present or choose from available categories before creating or filtering events.
- `POST https://api.mcp.ai/api/eventzilla/list/event/tickets` — Tool to retrieve all ticket categories for a specified event. Returns ticket types with pricing, availability, sales dates, limits, and additional options like partial payment.
  - body: { eventid: integer }
- `POST https://api.mcp.ai/api/eventzilla/list/event/transactions` — Tool to retrieve all transactions for a specified event. Use when you need to get transaction details including buyer information, amounts, status, and payment methods for an event.
  - body: { limit?: integer, offset?: integer, eventid: integer }
- `POST https://api.mcp.ai/api/eventzilla/list/events` — Tool to retrieve a list of events associated with your account (supports filtering). Use when you need to list or filter events for your organization.
  - body: { limit?: integer, offset?: integer, status?: string, category?: string }
- `POST https://api.mcp.ai/api/eventzilla/list/users` — Tool to retrieve a list of users associated with your account. Use when you need to fetch and paginate through users.
  - body: { limit?: integer, offset?: integer }

## Example prompts
- "What can I do in Eventzilla?"
- "Show me a summary of my Eventzilla account"

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