A-Curated-List-of-Awesome-Claude-Skills Eventbrite Automation
Automate Eventbrite event management, attendee tracking, organization discovery, and category browsing through natural language commands
git clone https://github.com/Engineer1999/A-Curated-List-of-Awesome-Claude-Skills
T=$(mktemp -d) && git clone --depth=1 https://github.com/Engineer1999/A-Curated-List-of-Awesome-Claude-Skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/app-automations/eventbrite-automation" ~/.claude/skills/engineer1999-a-curated-list-of-awesome-claude-skills-eventbrite-automation && rm -rf "$T"
app-automations/eventbrite-automation/SKILL.mdEventbrite Automation
Automate Eventbrite event management workflows -- list organization events, track attendees, browse categories and formats, and manage organizations -- all through natural language.
Toolkit docs: claude-skills.ai/toolkits/eventbrite
Setup
- Add the Rube MCP server to your environment:
https://rube.app/mcp - Connect your Eventbrite account when prompted (OAuth flow via Claude Skill)
- Start issuing natural language commands for Eventbrite automation
Core Workflows
1. Discover Your Organizations
Retrieve the organizations the authenticated user belongs to. This is a prerequisite for most other Eventbrite operations since
organization_id is required.
Tool:
EVENTBRITE_LIST_USER_ORGANIZATIONS
No parameters required. Returns organization IDs, names, and metadata.
Always call this first to obtain the
needed by event and attendee endpoints.organization_id
Example prompt:
"List my Eventbrite organizations"
2. List and Search Organization Events
Browse events owned by a specific organization with filtering by status, time period, and pagination.
Tool:
EVENTBRITE_LIST_ORGANIZATION_EVENTS
Key parameters:
-- the organization whose events to list (required; get fromorganization_id
)EVENTBRITE_LIST_USER_ORGANIZATIONS
-- filter bystatus
,live
,draft
,canceled
,started
,ended
, orcompletedall
-- filter bytime_filter
orcurrent_futurepast
-- sort byorder_by
,start_asc
,start_desc
,created_asc
,created_desc
,name_ascname_desc
-- number of events per pagepage_size
-- pagination token from previous responsecontinuation
-- comma-separated fields to expand:expand
,organizer
,venueticket_classes
Example prompt:
"Show me all live events for my organization, sorted by start date"
3. Track Event Attendees
Retrieve the attendee list for any event, with optional status filtering and pagination.
Tool:
EVENTBRITE_LIST_EVENT_ATTENDEES
Key parameters:
-- the event to retrieve attendees for (required)event_id
-- filter bystatus
,attending
, ornot_attendingcancelled
-- ISO 8601 timestamp to get only recently changed attendeeschanged_since
-- pagination token for subsequent pagescontinuation
Example prompt:
"Get all attending attendees for event 123456789 who changed since January 1st"
4. Browse Event Categories
Retrieve available event categories for use when creating or filtering events.
Tool:
EVENTBRITE_GET_EVENT_CATEGORIES
Key parameters:
-- BCP-47 locale for localized names (e.g.,locale
,en_US
)es_ES
Follow up with
EVENTBRITE_GET_EVENT_SUBCATEGORIES to get subcategories within a selected category.
Example prompt:
"List all Eventbrite event categories in English"
5. List Event Formats
Retrieve all available event format types (conference, seminar, workshop, etc.).
Tool:
EVENTBRITE_GET_EVENT_FORMATS
No parameters required. Returns format IDs and display names.
Example prompt:
"What event formats are available on Eventbrite?"
6. Browse Event Subcategories
Retrieve subcategories for more granular event classification.
Tool:
EVENTBRITE_GET_EVENT_SUBCATEGORIES
Key parameters:
-- BCP-47 locale for localized names (e.g.,locale
)en_US
Example prompt:
"List all Eventbrite event subcategories"
Known Pitfalls
| Pitfall | Details |
|---|---|
| Organization ID required | Most event operations require -- always call first |
| Pagination via continuation | Results use continuation-token pagination, not page numbers -- pass the value from the previous response to get the next page |
| Event ID discovery | You need to list events first via to get values for attendee queries |
| Status values are specific | Event status values (, , , , , ) must match exactly |
| Expand fields are comma-separated | The parameter takes a comma-separated string, not an array (e.g., ) |
| changed_since format | The parameter must be in ISO 8601 format (e.g., ) |
Quick Reference
| Action | Tool Slug | Key Params |
|---|---|---|
| List organizations | | (none) |
| List events | | , , |
| List attendees | | , , |
| Get categories | | |
| Get subcategories | | |
| Get formats | | (none) |
Part of the Claude Skills Hub