other
Eventbrite MCP Integration for Claude Code
Connect Eventbrite to Claude Code through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Eventbrite to Claude Code
Connect local KosmoKrator integrations to Claude Code through one scoped MCP gateway entry.
Add KosmoKrator as a stdio MCP server in the Claude Code project config and select the integrations that should be visible. The gateway is local, scoped to this integration, and starts with
--write=deny so Claude Code can inspect read-capable tools without receiving write access by default.
Eventbrite MCP Config for Claude Code
Claude Code can launch the local kosmo binary directly from the project MCP config.
{
"mcpServers": {
"kosmokrator-eventbrite": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=eventbrite",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=eventbrite --write=deny Why Use KosmoKrator Here
Expose only Eventbrite instead of a broad multi-service tool list.
Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.
Start read-only, then opt into ask or allow for trusted workspaces.
Eventbrite Tools Visible to Claude Code
Claude Code sees stable MCP tool names generated from the Eventbrite integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__eventbrite__eventbrite_list_events | eventbrite.eventbrite_list_events | Read | List events for the Eventbrite organization. Returns paginated events with name, status, dates, and URL. Filter by status (live, draft, started, ended, completed, canceled) or order results. |
integration__eventbrite__eventbrite_get_event | eventbrite.eventbrite_get_event | Read | Get full details for a single Eventbrite event by ID. Returns description, venue, ticket classes, organizer, and all settings. |
integration__eventbrite__eventbrite_create_event | eventbrite.eventbrite_create_event | Write | Create a new event on Eventbrite. Provide event name, start/end times, currency, and optionally a venue ID or online event details. |
integration__eventbrite__eventbrite_update_event | eventbrite.eventbrite_update_event | Write | Update an existing Eventbrite event. Only the fields you provide will be changed. Use to change title, times, description, venue, or status. |
integration__eventbrite__eventbrite_list_attendees | eventbrite.eventbrite_list_attendees | Read | List attendees for an Eventbrite event. Returns paginated attendee profiles with name, email, ticket class, and check-in status. |
integration__eventbrite__eventbrite_get_attendee | eventbrite.eventbrite_get_attendee | Read | Get full details for a single Eventbrite attendee by event and attendee ID. Includes profile, ticket info, custom answers, and barcode. |
integration__eventbrite__eventbrite_list_venues | eventbrite.eventbrite_list_venues | Read | List venues for the Eventbrite organization. Returns paginated venues with name, address, city, and capacity. |
integration__eventbrite__eventbrite_create_venue | eventbrite.eventbrite_create_venue | Write | Create a new venue on Eventbrite. Provide name and address details. Returns the venue ID for use when creating events. |
integration__eventbrite__eventbrite_get_current_user | eventbrite.eventbrite_get_current_user | Read | Get the currently authenticated Eventbrite user profile. Returns name, email, and organization memberships. Useful for verifying credentials. |