💼 Eventbrite Automation
Eventbriteのイベント管理、参加者追跡、団体やカテゴリ検索を自然言語で自動化するSkill。
📺 まず動画で見る(YouTube)
▶ 【自動化】AIガチ勢の最新活用術6選がこれ1本で丸分かり!【ClaudeCode・AIエージェント・AI経営・Skills・MCP】 ↗
※ jpskill.com 編集部が参考用に選んだ動画です。動画の内容と Skill の挙動は厳密には一致しないことがあります。
📜 元の英語説明(参考)
Automate Eventbrite event management, attendee tracking, organization discovery, and category browsing through natural language commands
🇯🇵 日本人クリエイター向け解説
Eventbriteのイベント管理、参加者追跡、団体やカテゴリ検索を自然言語で自動化するSkill。
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-17
- 取得日時
- 2026-05-17
- 同梱ファイル
- 1
💬 こう話しかけるだけ — サンプルプロンプト
- › Eventbrite Automation で、私のビジネスを分析して改善案を3つ提案して
- › Eventbrite Automation を使って、来週の会議用の資料を作って
- › Eventbrite Automation で、現状の課題を整理してアクションプランに落として
これをClaude Code に貼るだけで、このSkillが自動発動します。
📖 Claude が読む原文 SKILL.md(中身を展開)
この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。
Eventbrite Automation
Automate Eventbrite event management workflows -- list organization events, track attendees, browse categories and formats, and manage organizations -- all through natural language.
Toolkit docs: composio.dev/toolkits/eventbrite
Setup
- Add the Rube MCP server to your environment:
https://rube.app/mcp - Connect your Eventbrite account when prompted (OAuth flow via Composio)
- 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
organization_idneeded by event and attendee endpoints.
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:
organization_id-- the organization whose events to list (required; get fromEVENTBRITE_LIST_USER_ORGANIZATIONS)status-- filter bylive,draft,canceled,started,ended,completed, oralltime_filter-- filter bycurrent_futureorpastorder_by-- sort bystart_asc,start_desc,created_asc,created_desc,name_asc,name_descpage_size-- number of events per pagecontinuation-- pagination token from previous responseexpand-- comma-separated fields to expand:organizer,venue,ticket_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:
event_id-- the event to retrieve attendees for (required)status-- filter byattending,not_attending, orcancelledchanged_since-- ISO 8601 timestamp to get only recently changed attendeescontinuation-- pagination token for subsequent pages
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:
locale-- BCP-47 locale for localized names (e.g.,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:
locale-- BCP-47 locale for localized names (e.g.,en_US)
Example prompt:
"List all Eventbrite event subcategories"
Known Pitfalls
| Pitfall | Details |
|---|---|
| Organization ID required | Most event operations require organization_id -- always call EVENTBRITE_LIST_USER_ORGANIZATIONS first |
| Pagination via continuation | Results use continuation-token pagination, not page numbers -- pass the continuation value from the previous response to get the next page |
| Event ID discovery | You need to list events first via EVENTBRITE_LIST_ORGANIZATION_EVENTS to get event_id values for attendee queries |
| Status values are specific | Event status values (live, draft, canceled, started, ended, completed) must match exactly |
| Expand fields are comma-separated | The expand parameter takes a comma-separated string, not an array (e.g., "organizer,venue") |
| changed_since format | The changed_since parameter must be in ISO 8601 format (e.g., 2024-01-01T00:00:00Z) |
Quick Reference
| Action | Tool Slug | Key Params |
|---|---|---|
| List organizations | EVENTBRITE_LIST_USER_ORGANIZATIONS |
(none) |
| List events | EVENTBRITE_LIST_ORGANIZATION_EVENTS |
organization_id, status, time_filter |
| List attendees | EVENTBRITE_LIST_EVENT_ATTENDEES |
event_id, status, changed_since |
| Get categories | EVENTBRITE_GET_EVENT_CATEGORIES |
locale |
| Get subcategories | EVENTBRITE_GET_EVENT_SUBCATEGORIES |
locale |
| Get formats | EVENTBRITE_GET_EVENT_FORMATS |
(none) |
Powered by Composio