[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-composio-eventbrite-automation":3,"mdc-ixsvfm-key":48,"related-org-composio-eventbrite-automation":1188,"related-repo-composio-eventbrite-automation":1335},{"slug":4,"name":5,"fn":6,"description":7,"org":8,"tags":13,"stars":22,"repoUrl":23,"updatedAt":24,"license":25,"forks":26,"topics":27,"repo":43,"sourceUrl":46,"mdContent":47},"eventbrite-automation","Eventbrite Automation","automate Eventbrite event management","Automate Eventbrite event management, attendee tracking, organization discovery, and category browsing through natural language commands",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},"composio","Composio","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fcomposio.png","ComposioHQ",[14,18,19],{"name":15,"slug":16,"type":17},"Events","events","tag",{"name":10,"slug":9,"type":17},{"name":20,"slug":21,"type":17},"Automation","automation",67499,"https:\u002F\u002Fgithub.com\u002FComposioHQ\u002Fawesome-claude-skills","2026-07-15T05:51:10.825846",null,7603,[28,29,30,21,31,32,33,9,34,35,36,37,38,39,40,41,42],"agent-skills","ai-agents","antigravity","claude","claude-code","codex","cursor","developer-tools","gemini-cli","mcp","openai-codex","rube","saas","skill","workflow-automation",{"repoUrl":23,"stars":22,"forks":26,"topics":44,"description":45},[28,29,30,21,31,32,33,9,34,35,36,37,38,39,40,41,42],"A curated list of awesome Claude Skills, resources, and tools for customizing Claude AI workflows","https:\u002F\u002Fgithub.com\u002FComposioHQ\u002Fawesome-claude-skills\u002Ftree\u002FHEAD\u002Fcomposio-skills\u002Feventbrite-automation","---\nname: Eventbrite Automation\ndescription: \"Automate Eventbrite event management, attendee tracking, organization discovery, and category browsing through natural language commands\"\nrequires:\n  mcp:\n    - rube\n---\n\n# Eventbrite Automation\n\nAutomate Eventbrite event management workflows -- list organization events, track attendees, browse categories and formats, and manage organizations -- all through natural language.\n\n**Toolkit docs:** [composio.dev\u002Ftoolkits\u002Feventbrite](https:\u002F\u002Fcomposio.dev\u002Ftoolkits\u002Feventbrite)\n\n---\n\n## Setup\n\n1. Add the Rube MCP server to your environment: `https:\u002F\u002Frube.app\u002Fmcp`\n2. Connect your Eventbrite account when prompted (OAuth flow via Composio)\n3. Start issuing natural language commands for Eventbrite automation\n\n---\n\n## Core Workflows\n\n### 1. Discover Your Organizations\n\nRetrieve the organizations the authenticated user belongs to. This is a prerequisite for most other Eventbrite operations since `organization_id` is required.\n\n**Tool:** `EVENTBRITE_LIST_USER_ORGANIZATIONS`\n\nNo parameters required. Returns organization IDs, names, and metadata.\n\n> Always call this first to obtain the `organization_id` needed by event and attendee endpoints.\n\nExample prompt:\n> \"List my Eventbrite organizations\"\n\n---\n\n### 2. List and Search Organization Events\n\nBrowse events owned by a specific organization with filtering by status, time period, and pagination.\n\n**Tool:** `EVENTBRITE_LIST_ORGANIZATION_EVENTS`\n\nKey parameters:\n- `organization_id` -- the organization whose events to list (required; get from `EVENTBRITE_LIST_USER_ORGANIZATIONS`)\n- `status` -- filter by `live`, `draft`, `canceled`, `started`, `ended`, `completed`, or `all`\n- `time_filter` -- filter by `current_future` or `past`\n- `order_by` -- sort by `start_asc`, `start_desc`, `created_asc`, `created_desc`, `name_asc`, `name_desc`\n- `page_size` -- number of events per page\n- `continuation` -- pagination token from previous response\n- `expand` -- comma-separated fields to expand: `organizer`, `venue`, `ticket_classes`\n\nExample prompt:\n> \"Show me all live events for my organization, sorted by start date\"\n\n---\n\n### 3. Track Event Attendees\n\nRetrieve the attendee list for any event, with optional status filtering and pagination.\n\n**Tool:** `EVENTBRITE_LIST_EVENT_ATTENDEES`\n\nKey parameters:\n- `event_id` -- the event to retrieve attendees for (required)\n- `status` -- filter by `attending`, `not_attending`, or `cancelled`\n- `changed_since` -- ISO 8601 timestamp to get only recently changed attendees\n- `continuation` -- pagination token for subsequent pages\n\nExample prompt:\n> \"Get all attending attendees for event 123456789 who changed since January 1st\"\n\n---\n\n### 4. Browse Event Categories\n\nRetrieve available event categories for use when creating or filtering events.\n\n**Tool:** `EVENTBRITE_GET_EVENT_CATEGORIES`\n\nKey parameters:\n- `locale` -- BCP-47 locale for localized names (e.g., `en_US`, `es_ES`)\n\nFollow up with `EVENTBRITE_GET_EVENT_SUBCATEGORIES` to get subcategories within a selected category.\n\nExample prompt:\n> \"List all Eventbrite event categories in English\"\n\n---\n\n### 5. List Event Formats\n\nRetrieve all available event format types (conference, seminar, workshop, etc.).\n\n**Tool:** `EVENTBRITE_GET_EVENT_FORMATS`\n\nNo parameters required. Returns format IDs and display names.\n\nExample prompt:\n> \"What event formats are available on Eventbrite?\"\n\n---\n\n### 6. Browse Event Subcategories\n\nRetrieve subcategories for more granular event classification.\n\n**Tool:** `EVENTBRITE_GET_EVENT_SUBCATEGORIES`\n\nKey parameters:\n- `locale` -- BCP-47 locale for localized names (e.g., `en_US`)\n\nExample prompt:\n> \"List all Eventbrite event subcategories\"\n\n---\n\n## Known Pitfalls\n\n| Pitfall | Details |\n|---------|---------|\n| Organization ID required | Most event operations require `organization_id` -- always call `EVENTBRITE_LIST_USER_ORGANIZATIONS` first |\n| Pagination via continuation | Results use continuation-token pagination, not page numbers -- pass the `continuation` value from the previous response to get the next page |\n| Event ID discovery | You need to list events first via `EVENTBRITE_LIST_ORGANIZATION_EVENTS` to get `event_id` values for attendee queries |\n| Status values are specific | Event status values (`live`, `draft`, `canceled`, `started`, `ended`, `completed`) must match exactly |\n| Expand fields are comma-separated | The `expand` parameter takes a comma-separated string, not an array (e.g., `\"organizer,venue\"`) |\n| changed_since format | The `changed_since` parameter must be in ISO 8601 format (e.g., `2024-01-01T00:00:00Z`) |\n\n---\n\n## Quick Reference\n\n| Action | Tool Slug | Key Params |\n|--------|-----------|------------|\n| List organizations | `EVENTBRITE_LIST_USER_ORGANIZATIONS` | (none) |\n| List events | `EVENTBRITE_LIST_ORGANIZATION_EVENTS` | `organization_id`, `status`, `time_filter` |\n| List attendees | `EVENTBRITE_LIST_EVENT_ATTENDEES` | `event_id`, `status`, `changed_since` |\n| Get categories | `EVENTBRITE_GET_EVENT_CATEGORIES` | `locale` |\n| Get subcategories | `EVENTBRITE_GET_EVENT_SUBCATEGORIES` | `locale` |\n| Get formats | `EVENTBRITE_GET_EVENT_FORMATS` | (none) |\n\n---\n\n*Powered by [Composio](https:\u002F\u002Fcomposio.dev)*\n",{"data":49,"body":52},{"name":5,"description":7,"requires":50},{"mcp":51},[39],{"type":53,"children":54},"root",[55,62,68,88,92,99,126,129,135,142,155,170,175,191,196,204,207,213,218,232,237,448,452,460,463,469,474,488,492,556,560,568,571,577,582,596,600,628,641,645,653,656,662,667,681,686,690,698,701,707,712,725,729,747,751,759,762,768,973,976,982,1170,1173],{"type":56,"tag":57,"props":58,"children":59},"element","h1",{"id":4},[60],{"type":61,"value":5},"text",{"type":56,"tag":63,"props":64,"children":65},"p",{},[66],{"type":61,"value":67},"Automate Eventbrite event management workflows -- list organization events, track attendees, browse categories and formats, and manage organizations -- all through natural language.",{"type":56,"tag":63,"props":69,"children":70},{},[71,77,79],{"type":56,"tag":72,"props":73,"children":74},"strong",{},[75],{"type":61,"value":76},"Toolkit docs:",{"type":61,"value":78}," ",{"type":56,"tag":80,"props":81,"children":85},"a",{"href":82,"rel":83},"https:\u002F\u002Fcomposio.dev\u002Ftoolkits\u002Feventbrite",[84],"nofollow",[86],{"type":61,"value":87},"composio.dev\u002Ftoolkits\u002Feventbrite",{"type":56,"tag":89,"props":90,"children":91},"hr",{},[],{"type":56,"tag":93,"props":94,"children":96},"h2",{"id":95},"setup",[97],{"type":61,"value":98},"Setup",{"type":56,"tag":100,"props":101,"children":102},"ol",{},[103,116,121],{"type":56,"tag":104,"props":105,"children":106},"li",{},[107,109],{"type":61,"value":108},"Add the Rube MCP server to your environment: ",{"type":56,"tag":110,"props":111,"children":113},"code",{"className":112},[],[114],{"type":61,"value":115},"https:\u002F\u002Frube.app\u002Fmcp",{"type":56,"tag":104,"props":117,"children":118},{},[119],{"type":61,"value":120},"Connect your Eventbrite account when prompted (OAuth flow via Composio)",{"type":56,"tag":104,"props":122,"children":123},{},[124],{"type":61,"value":125},"Start issuing natural language commands for Eventbrite automation",{"type":56,"tag":89,"props":127,"children":128},{},[],{"type":56,"tag":93,"props":130,"children":132},{"id":131},"core-workflows",[133],{"type":61,"value":134},"Core Workflows",{"type":56,"tag":136,"props":137,"children":139},"h3",{"id":138},"_1-discover-your-organizations",[140],{"type":61,"value":141},"1. Discover Your Organizations",{"type":56,"tag":63,"props":143,"children":144},{},[145,147,153],{"type":61,"value":146},"Retrieve the organizations the authenticated user belongs to. This is a prerequisite for most other Eventbrite operations since ",{"type":56,"tag":110,"props":148,"children":150},{"className":149},[],[151],{"type":61,"value":152},"organization_id",{"type":61,"value":154}," is required.",{"type":56,"tag":63,"props":156,"children":157},{},[158,163,164],{"type":56,"tag":72,"props":159,"children":160},{},[161],{"type":61,"value":162},"Tool:",{"type":61,"value":78},{"type":56,"tag":110,"props":165,"children":167},{"className":166},[],[168],{"type":61,"value":169},"EVENTBRITE_LIST_USER_ORGANIZATIONS",{"type":56,"tag":63,"props":171,"children":172},{},[173],{"type":61,"value":174},"No parameters required. Returns organization IDs, names, and metadata.",{"type":56,"tag":176,"props":177,"children":178},"blockquote",{},[179],{"type":56,"tag":63,"props":180,"children":181},{},[182,184,189],{"type":61,"value":183},"Always call this first to obtain the ",{"type":56,"tag":110,"props":185,"children":187},{"className":186},[],[188],{"type":61,"value":152},{"type":61,"value":190}," needed by event and attendee endpoints.",{"type":56,"tag":63,"props":192,"children":193},{},[194],{"type":61,"value":195},"Example prompt:",{"type":56,"tag":176,"props":197,"children":198},{},[199],{"type":56,"tag":63,"props":200,"children":201},{},[202],{"type":61,"value":203},"\"List my Eventbrite organizations\"",{"type":56,"tag":89,"props":205,"children":206},{},[],{"type":56,"tag":136,"props":208,"children":210},{"id":209},"_2-list-and-search-organization-events",[211],{"type":61,"value":212},"2. List and Search Organization Events",{"type":56,"tag":63,"props":214,"children":215},{},[216],{"type":61,"value":217},"Browse events owned by a specific organization with filtering by status, time period, and pagination.",{"type":56,"tag":63,"props":219,"children":220},{},[221,225,226],{"type":56,"tag":72,"props":222,"children":223},{},[224],{"type":61,"value":162},{"type":61,"value":78},{"type":56,"tag":110,"props":227,"children":229},{"className":228},[],[230],{"type":61,"value":231},"EVENTBRITE_LIST_ORGANIZATION_EVENTS",{"type":56,"tag":63,"props":233,"children":234},{},[235],{"type":61,"value":236},"Key parameters:",{"type":56,"tag":238,"props":239,"children":240},"ul",{},[241,258,319,343,395,406,417],{"type":56,"tag":104,"props":242,"children":243},{},[244,249,251,256],{"type":56,"tag":110,"props":245,"children":247},{"className":246},[],[248],{"type":61,"value":152},{"type":61,"value":250}," -- the organization whose events to list (required; get from ",{"type":56,"tag":110,"props":252,"children":254},{"className":253},[],[255],{"type":61,"value":169},{"type":61,"value":257},")",{"type":56,"tag":104,"props":259,"children":260},{},[261,267,269,275,277,283,284,290,291,297,298,304,305,311,313],{"type":56,"tag":110,"props":262,"children":264},{"className":263},[],[265],{"type":61,"value":266},"status",{"type":61,"value":268}," -- filter by ",{"type":56,"tag":110,"props":270,"children":272},{"className":271},[],[273],{"type":61,"value":274},"live",{"type":61,"value":276},", ",{"type":56,"tag":110,"props":278,"children":280},{"className":279},[],[281],{"type":61,"value":282},"draft",{"type":61,"value":276},{"type":56,"tag":110,"props":285,"children":287},{"className":286},[],[288],{"type":61,"value":289},"canceled",{"type":61,"value":276},{"type":56,"tag":110,"props":292,"children":294},{"className":293},[],[295],{"type":61,"value":296},"started",{"type":61,"value":276},{"type":56,"tag":110,"props":299,"children":301},{"className":300},[],[302],{"type":61,"value":303},"ended",{"type":61,"value":276},{"type":56,"tag":110,"props":306,"children":308},{"className":307},[],[309],{"type":61,"value":310},"completed",{"type":61,"value":312},", or ",{"type":56,"tag":110,"props":314,"children":316},{"className":315},[],[317],{"type":61,"value":318},"all",{"type":56,"tag":104,"props":320,"children":321},{},[322,328,329,335,337],{"type":56,"tag":110,"props":323,"children":325},{"className":324},[],[326],{"type":61,"value":327},"time_filter",{"type":61,"value":268},{"type":56,"tag":110,"props":330,"children":332},{"className":331},[],[333],{"type":61,"value":334},"current_future",{"type":61,"value":336}," or ",{"type":56,"tag":110,"props":338,"children":340},{"className":339},[],[341],{"type":61,"value":342},"past",{"type":56,"tag":104,"props":344,"children":345},{},[346,352,354,360,361,367,368,374,375,381,382,388,389],{"type":56,"tag":110,"props":347,"children":349},{"className":348},[],[350],{"type":61,"value":351},"order_by",{"type":61,"value":353}," -- sort by ",{"type":56,"tag":110,"props":355,"children":357},{"className":356},[],[358],{"type":61,"value":359},"start_asc",{"type":61,"value":276},{"type":56,"tag":110,"props":362,"children":364},{"className":363},[],[365],{"type":61,"value":366},"start_desc",{"type":61,"value":276},{"type":56,"tag":110,"props":369,"children":371},{"className":370},[],[372],{"type":61,"value":373},"created_asc",{"type":61,"value":276},{"type":56,"tag":110,"props":376,"children":378},{"className":377},[],[379],{"type":61,"value":380},"created_desc",{"type":61,"value":276},{"type":56,"tag":110,"props":383,"children":385},{"className":384},[],[386],{"type":61,"value":387},"name_asc",{"type":61,"value":276},{"type":56,"tag":110,"props":390,"children":392},{"className":391},[],[393],{"type":61,"value":394},"name_desc",{"type":56,"tag":104,"props":396,"children":397},{},[398,404],{"type":56,"tag":110,"props":399,"children":401},{"className":400},[],[402],{"type":61,"value":403},"page_size",{"type":61,"value":405}," -- number of events per page",{"type":56,"tag":104,"props":407,"children":408},{},[409,415],{"type":56,"tag":110,"props":410,"children":412},{"className":411},[],[413],{"type":61,"value":414},"continuation",{"type":61,"value":416}," -- pagination token from previous response",{"type":56,"tag":104,"props":418,"children":419},{},[420,426,428,434,435,441,442],{"type":56,"tag":110,"props":421,"children":423},{"className":422},[],[424],{"type":61,"value":425},"expand",{"type":61,"value":427}," -- comma-separated fields to expand: ",{"type":56,"tag":110,"props":429,"children":431},{"className":430},[],[432],{"type":61,"value":433},"organizer",{"type":61,"value":276},{"type":56,"tag":110,"props":436,"children":438},{"className":437},[],[439],{"type":61,"value":440},"venue",{"type":61,"value":276},{"type":56,"tag":110,"props":443,"children":445},{"className":444},[],[446],{"type":61,"value":447},"ticket_classes",{"type":56,"tag":63,"props":449,"children":450},{},[451],{"type":61,"value":195},{"type":56,"tag":176,"props":453,"children":454},{},[455],{"type":56,"tag":63,"props":456,"children":457},{},[458],{"type":61,"value":459},"\"Show me all live events for my organization, sorted by start date\"",{"type":56,"tag":89,"props":461,"children":462},{},[],{"type":56,"tag":136,"props":464,"children":466},{"id":465},"_3-track-event-attendees",[467],{"type":61,"value":468},"3. Track Event Attendees",{"type":56,"tag":63,"props":470,"children":471},{},[472],{"type":61,"value":473},"Retrieve the attendee list for any event, with optional status filtering and pagination.",{"type":56,"tag":63,"props":475,"children":476},{},[477,481,482],{"type":56,"tag":72,"props":478,"children":479},{},[480],{"type":61,"value":162},{"type":61,"value":78},{"type":56,"tag":110,"props":483,"children":485},{"className":484},[],[486],{"type":61,"value":487},"EVENTBRITE_LIST_EVENT_ATTENDEES",{"type":56,"tag":63,"props":489,"children":490},{},[491],{"type":61,"value":236},{"type":56,"tag":238,"props":493,"children":494},{},[495,506,535,546],{"type":56,"tag":104,"props":496,"children":497},{},[498,504],{"type":56,"tag":110,"props":499,"children":501},{"className":500},[],[502],{"type":61,"value":503},"event_id",{"type":61,"value":505}," -- the event to retrieve attendees for (required)",{"type":56,"tag":104,"props":507,"children":508},{},[509,514,515,521,522,528,529],{"type":56,"tag":110,"props":510,"children":512},{"className":511},[],[513],{"type":61,"value":266},{"type":61,"value":268},{"type":56,"tag":110,"props":516,"children":518},{"className":517},[],[519],{"type":61,"value":520},"attending",{"type":61,"value":276},{"type":56,"tag":110,"props":523,"children":525},{"className":524},[],[526],{"type":61,"value":527},"not_attending",{"type":61,"value":312},{"type":56,"tag":110,"props":530,"children":532},{"className":531},[],[533],{"type":61,"value":534},"cancelled",{"type":56,"tag":104,"props":536,"children":537},{},[538,544],{"type":56,"tag":110,"props":539,"children":541},{"className":540},[],[542],{"type":61,"value":543},"changed_since",{"type":61,"value":545}," -- ISO 8601 timestamp to get only recently changed attendees",{"type":56,"tag":104,"props":547,"children":548},{},[549,554],{"type":56,"tag":110,"props":550,"children":552},{"className":551},[],[553],{"type":61,"value":414},{"type":61,"value":555}," -- pagination token for subsequent pages",{"type":56,"tag":63,"props":557,"children":558},{},[559],{"type":61,"value":195},{"type":56,"tag":176,"props":561,"children":562},{},[563],{"type":56,"tag":63,"props":564,"children":565},{},[566],{"type":61,"value":567},"\"Get all attending attendees for event 123456789 who changed since January 1st\"",{"type":56,"tag":89,"props":569,"children":570},{},[],{"type":56,"tag":136,"props":572,"children":574},{"id":573},"_4-browse-event-categories",[575],{"type":61,"value":576},"4. Browse Event Categories",{"type":56,"tag":63,"props":578,"children":579},{},[580],{"type":61,"value":581},"Retrieve available event categories for use when creating or filtering events.",{"type":56,"tag":63,"props":583,"children":584},{},[585,589,590],{"type":56,"tag":72,"props":586,"children":587},{},[588],{"type":61,"value":162},{"type":61,"value":78},{"type":56,"tag":110,"props":591,"children":593},{"className":592},[],[594],{"type":61,"value":595},"EVENTBRITE_GET_EVENT_CATEGORIES",{"type":56,"tag":63,"props":597,"children":598},{},[599],{"type":61,"value":236},{"type":56,"tag":238,"props":601,"children":602},{},[603],{"type":56,"tag":104,"props":604,"children":605},{},[606,612,614,620,621,627],{"type":56,"tag":110,"props":607,"children":609},{"className":608},[],[610],{"type":61,"value":611},"locale",{"type":61,"value":613}," -- BCP-47 locale for localized names (e.g., ",{"type":56,"tag":110,"props":615,"children":617},{"className":616},[],[618],{"type":61,"value":619},"en_US",{"type":61,"value":276},{"type":56,"tag":110,"props":622,"children":624},{"className":623},[],[625],{"type":61,"value":626},"es_ES",{"type":61,"value":257},{"type":56,"tag":63,"props":629,"children":630},{},[631,633,639],{"type":61,"value":632},"Follow up with ",{"type":56,"tag":110,"props":634,"children":636},{"className":635},[],[637],{"type":61,"value":638},"EVENTBRITE_GET_EVENT_SUBCATEGORIES",{"type":61,"value":640}," to get subcategories within a selected category.",{"type":56,"tag":63,"props":642,"children":643},{},[644],{"type":61,"value":195},{"type":56,"tag":176,"props":646,"children":647},{},[648],{"type":56,"tag":63,"props":649,"children":650},{},[651],{"type":61,"value":652},"\"List all Eventbrite event categories in English\"",{"type":56,"tag":89,"props":654,"children":655},{},[],{"type":56,"tag":136,"props":657,"children":659},{"id":658},"_5-list-event-formats",[660],{"type":61,"value":661},"5. List Event Formats",{"type":56,"tag":63,"props":663,"children":664},{},[665],{"type":61,"value":666},"Retrieve all available event format types (conference, seminar, workshop, etc.).",{"type":56,"tag":63,"props":668,"children":669},{},[670,674,675],{"type":56,"tag":72,"props":671,"children":672},{},[673],{"type":61,"value":162},{"type":61,"value":78},{"type":56,"tag":110,"props":676,"children":678},{"className":677},[],[679],{"type":61,"value":680},"EVENTBRITE_GET_EVENT_FORMATS",{"type":56,"tag":63,"props":682,"children":683},{},[684],{"type":61,"value":685},"No parameters required. Returns format IDs and display names.",{"type":56,"tag":63,"props":687,"children":688},{},[689],{"type":61,"value":195},{"type":56,"tag":176,"props":691,"children":692},{},[693],{"type":56,"tag":63,"props":694,"children":695},{},[696],{"type":61,"value":697},"\"What event formats are available on Eventbrite?\"",{"type":56,"tag":89,"props":699,"children":700},{},[],{"type":56,"tag":136,"props":702,"children":704},{"id":703},"_6-browse-event-subcategories",[705],{"type":61,"value":706},"6. Browse Event Subcategories",{"type":56,"tag":63,"props":708,"children":709},{},[710],{"type":61,"value":711},"Retrieve subcategories for more granular event classification.",{"type":56,"tag":63,"props":713,"children":714},{},[715,719,720],{"type":56,"tag":72,"props":716,"children":717},{},[718],{"type":61,"value":162},{"type":61,"value":78},{"type":56,"tag":110,"props":721,"children":723},{"className":722},[],[724],{"type":61,"value":638},{"type":56,"tag":63,"props":726,"children":727},{},[728],{"type":61,"value":236},{"type":56,"tag":238,"props":730,"children":731},{},[732],{"type":56,"tag":104,"props":733,"children":734},{},[735,740,741,746],{"type":56,"tag":110,"props":736,"children":738},{"className":737},[],[739],{"type":61,"value":611},{"type":61,"value":613},{"type":56,"tag":110,"props":742,"children":744},{"className":743},[],[745],{"type":61,"value":619},{"type":61,"value":257},{"type":56,"tag":63,"props":748,"children":749},{},[750],{"type":61,"value":195},{"type":56,"tag":176,"props":752,"children":753},{},[754],{"type":56,"tag":63,"props":755,"children":756},{},[757],{"type":61,"value":758},"\"List all Eventbrite event subcategories\"",{"type":56,"tag":89,"props":760,"children":761},{},[],{"type":56,"tag":93,"props":763,"children":765},{"id":764},"known-pitfalls",[766],{"type":61,"value":767},"Known Pitfalls",{"type":56,"tag":769,"props":770,"children":771},"table",{},[772,791],{"type":56,"tag":773,"props":774,"children":775},"thead",{},[776],{"type":56,"tag":777,"props":778,"children":779},"tr",{},[780,786],{"type":56,"tag":781,"props":782,"children":783},"th",{},[784],{"type":61,"value":785},"Pitfall",{"type":56,"tag":781,"props":787,"children":788},{},[789],{"type":61,"value":790},"Details",{"type":56,"tag":792,"props":793,"children":794},"tbody",{},[795,823,843,870,920,947],{"type":56,"tag":777,"props":796,"children":797},{},[798,804],{"type":56,"tag":799,"props":800,"children":801},"td",{},[802],{"type":61,"value":803},"Organization ID required",{"type":56,"tag":799,"props":805,"children":806},{},[807,809,814,816,821],{"type":61,"value":808},"Most event operations require ",{"type":56,"tag":110,"props":810,"children":812},{"className":811},[],[813],{"type":61,"value":152},{"type":61,"value":815}," -- always call ",{"type":56,"tag":110,"props":817,"children":819},{"className":818},[],[820],{"type":61,"value":169},{"type":61,"value":822}," first",{"type":56,"tag":777,"props":824,"children":825},{},[826,831],{"type":56,"tag":799,"props":827,"children":828},{},[829],{"type":61,"value":830},"Pagination via continuation",{"type":56,"tag":799,"props":832,"children":833},{},[834,836,841],{"type":61,"value":835},"Results use continuation-token pagination, not page numbers -- pass the ",{"type":56,"tag":110,"props":837,"children":839},{"className":838},[],[840],{"type":61,"value":414},{"type":61,"value":842}," value from the previous response to get the next page",{"type":56,"tag":777,"props":844,"children":845},{},[846,851],{"type":56,"tag":799,"props":847,"children":848},{},[849],{"type":61,"value":850},"Event ID discovery",{"type":56,"tag":799,"props":852,"children":853},{},[854,856,861,863,868],{"type":61,"value":855},"You need to list events first via ",{"type":56,"tag":110,"props":857,"children":859},{"className":858},[],[860],{"type":61,"value":231},{"type":61,"value":862}," to get ",{"type":56,"tag":110,"props":864,"children":866},{"className":865},[],[867],{"type":61,"value":503},{"type":61,"value":869}," values for attendee queries",{"type":56,"tag":777,"props":871,"children":872},{},[873,878],{"type":56,"tag":799,"props":874,"children":875},{},[876],{"type":61,"value":877},"Status values are specific",{"type":56,"tag":799,"props":879,"children":880},{},[881,883,888,889,894,895,900,901,906,907,912,913,918],{"type":61,"value":882},"Event status values (",{"type":56,"tag":110,"props":884,"children":886},{"className":885},[],[887],{"type":61,"value":274},{"type":61,"value":276},{"type":56,"tag":110,"props":890,"children":892},{"className":891},[],[893],{"type":61,"value":282},{"type":61,"value":276},{"type":56,"tag":110,"props":896,"children":898},{"className":897},[],[899],{"type":61,"value":289},{"type":61,"value":276},{"type":56,"tag":110,"props":902,"children":904},{"className":903},[],[905],{"type":61,"value":296},{"type":61,"value":276},{"type":56,"tag":110,"props":908,"children":910},{"className":909},[],[911],{"type":61,"value":303},{"type":61,"value":276},{"type":56,"tag":110,"props":914,"children":916},{"className":915},[],[917],{"type":61,"value":310},{"type":61,"value":919},") must match exactly",{"type":56,"tag":777,"props":921,"children":922},{},[923,928],{"type":56,"tag":799,"props":924,"children":925},{},[926],{"type":61,"value":927},"Expand fields are comma-separated",{"type":56,"tag":799,"props":929,"children":930},{},[931,933,938,940,946],{"type":61,"value":932},"The ",{"type":56,"tag":110,"props":934,"children":936},{"className":935},[],[937],{"type":61,"value":425},{"type":61,"value":939}," parameter takes a comma-separated string, not an array (e.g., ",{"type":56,"tag":110,"props":941,"children":943},{"className":942},[],[944],{"type":61,"value":945},"\"organizer,venue\"",{"type":61,"value":257},{"type":56,"tag":777,"props":948,"children":949},{},[950,955],{"type":56,"tag":799,"props":951,"children":952},{},[953],{"type":61,"value":954},"changed_since format",{"type":56,"tag":799,"props":956,"children":957},{},[958,959,964,966,972],{"type":61,"value":932},{"type":56,"tag":110,"props":960,"children":962},{"className":961},[],[963],{"type":61,"value":543},{"type":61,"value":965}," parameter must be in ISO 8601 format (e.g., ",{"type":56,"tag":110,"props":967,"children":969},{"className":968},[],[970],{"type":61,"value":971},"2024-01-01T00:00:00Z",{"type":61,"value":257},{"type":56,"tag":89,"props":974,"children":975},{},[],{"type":56,"tag":93,"props":977,"children":979},{"id":978},"quick-reference",[980],{"type":61,"value":981},"Quick Reference",{"type":56,"tag":769,"props":983,"children":984},{},[985,1006],{"type":56,"tag":773,"props":986,"children":987},{},[988],{"type":56,"tag":777,"props":989,"children":990},{},[991,996,1001],{"type":56,"tag":781,"props":992,"children":993},{},[994],{"type":61,"value":995},"Action",{"type":56,"tag":781,"props":997,"children":998},{},[999],{"type":61,"value":1000},"Tool Slug",{"type":56,"tag":781,"props":1002,"children":1003},{},[1004],{"type":61,"value":1005},"Key Params",{"type":56,"tag":792,"props":1007,"children":1008},{},[1009,1030,1066,1102,1126,1150],{"type":56,"tag":777,"props":1010,"children":1011},{},[1012,1017,1025],{"type":56,"tag":799,"props":1013,"children":1014},{},[1015],{"type":61,"value":1016},"List organizations",{"type":56,"tag":799,"props":1018,"children":1019},{},[1020],{"type":56,"tag":110,"props":1021,"children":1023},{"className":1022},[],[1024],{"type":61,"value":169},{"type":56,"tag":799,"props":1026,"children":1027},{},[1028],{"type":61,"value":1029},"(none)",{"type":56,"tag":777,"props":1031,"children":1032},{},[1033,1038,1046],{"type":56,"tag":799,"props":1034,"children":1035},{},[1036],{"type":61,"value":1037},"List events",{"type":56,"tag":799,"props":1039,"children":1040},{},[1041],{"type":56,"tag":110,"props":1042,"children":1044},{"className":1043},[],[1045],{"type":61,"value":231},{"type":56,"tag":799,"props":1047,"children":1048},{},[1049,1054,1055,1060,1061],{"type":56,"tag":110,"props":1050,"children":1052},{"className":1051},[],[1053],{"type":61,"value":152},{"type":61,"value":276},{"type":56,"tag":110,"props":1056,"children":1058},{"className":1057},[],[1059],{"type":61,"value":266},{"type":61,"value":276},{"type":56,"tag":110,"props":1062,"children":1064},{"className":1063},[],[1065],{"type":61,"value":327},{"type":56,"tag":777,"props":1067,"children":1068},{},[1069,1074,1082],{"type":56,"tag":799,"props":1070,"children":1071},{},[1072],{"type":61,"value":1073},"List attendees",{"type":56,"tag":799,"props":1075,"children":1076},{},[1077],{"type":56,"tag":110,"props":1078,"children":1080},{"className":1079},[],[1081],{"type":61,"value":487},{"type":56,"tag":799,"props":1083,"children":1084},{},[1085,1090,1091,1096,1097],{"type":56,"tag":110,"props":1086,"children":1088},{"className":1087},[],[1089],{"type":61,"value":503},{"type":61,"value":276},{"type":56,"tag":110,"props":1092,"children":1094},{"className":1093},[],[1095],{"type":61,"value":266},{"type":61,"value":276},{"type":56,"tag":110,"props":1098,"children":1100},{"className":1099},[],[1101],{"type":61,"value":543},{"type":56,"tag":777,"props":1103,"children":1104},{},[1105,1110,1118],{"type":56,"tag":799,"props":1106,"children":1107},{},[1108],{"type":61,"value":1109},"Get categories",{"type":56,"tag":799,"props":1111,"children":1112},{},[1113],{"type":56,"tag":110,"props":1114,"children":1116},{"className":1115},[],[1117],{"type":61,"value":595},{"type":56,"tag":799,"props":1119,"children":1120},{},[1121],{"type":56,"tag":110,"props":1122,"children":1124},{"className":1123},[],[1125],{"type":61,"value":611},{"type":56,"tag":777,"props":1127,"children":1128},{},[1129,1134,1142],{"type":56,"tag":799,"props":1130,"children":1131},{},[1132],{"type":61,"value":1133},"Get subcategories",{"type":56,"tag":799,"props":1135,"children":1136},{},[1137],{"type":56,"tag":110,"props":1138,"children":1140},{"className":1139},[],[1141],{"type":61,"value":638},{"type":56,"tag":799,"props":1143,"children":1144},{},[1145],{"type":56,"tag":110,"props":1146,"children":1148},{"className":1147},[],[1149],{"type":61,"value":611},{"type":56,"tag":777,"props":1151,"children":1152},{},[1153,1158,1166],{"type":56,"tag":799,"props":1154,"children":1155},{},[1156],{"type":61,"value":1157},"Get formats",{"type":56,"tag":799,"props":1159,"children":1160},{},[1161],{"type":56,"tag":110,"props":1162,"children":1164},{"className":1163},[],[1165],{"type":61,"value":680},{"type":56,"tag":799,"props":1167,"children":1168},{},[1169],{"type":61,"value":1029},{"type":56,"tag":89,"props":1171,"children":1172},{},[],{"type":56,"tag":63,"props":1174,"children":1175},{},[1176],{"type":56,"tag":1177,"props":1178,"children":1179},"em",{},[1180,1182],{"type":61,"value":1181},"Powered by ",{"type":56,"tag":80,"props":1183,"children":1186},{"href":1184,"rel":1185},"https:\u002F\u002Fcomposio.dev",[84],[1187],{"type":61,"value":10},{"items":1189,"total":1334},[1190,1205,1221,1230,1240,1252,1261,1274,1288,1301,1314,1324],{"slug":1191,"name":1192,"fn":1193,"description":1194,"org":1195,"tags":1196,"stars":22,"repoUrl":23,"updatedAt":1204},"21risk-automation","-21risk-automation","automate 21risk compliance and safety tasks","Automate 21risk tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1197,1198,1199,1201],{"name":20,"slug":21,"type":17},{"name":10,"slug":9,"type":17},{"name":1200,"slug":37,"type":17},"MCP",{"name":1202,"slug":1203,"type":17},"Risk Assessment","risk-assessment","2026-07-15T05:54:18.790529",{"slug":1206,"name":1207,"fn":1208,"description":1209,"org":1210,"tags":1211,"stars":22,"repoUrl":23,"updatedAt":1220},"2chat-automation","-2chat-automation","automate 2chat messaging tasks","Automate 2chat tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1212,1213,1216,1217],{"name":20,"slug":21,"type":17},{"name":1214,"slug":1215,"type":17},"Communications","communications",{"name":1200,"slug":37,"type":17},{"name":1218,"slug":1219,"type":17},"Messaging","messaging","2026-07-15T05:51:27.190332",{"slug":1222,"name":1222,"fn":1223,"description":1224,"org":1225,"tags":1226,"stars":22,"repoUrl":23,"updatedAt":1229},"ably-automation","automate Ably tasks with Composio","Automate Ably tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1227,1228],{"name":20,"slug":21,"type":17},{"name":1200,"slug":37,"type":17},"2026-07-12T08:09:55.453088",{"slug":1231,"name":1231,"fn":1232,"description":1233,"org":1234,"tags":1235,"stars":22,"repoUrl":23,"updatedAt":1239},"abstract-automation","automate Abstract tasks via Composio","Automate Abstract tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1236,1237,1238],{"name":20,"slug":21,"type":17},{"name":10,"slug":9,"type":17},{"name":1200,"slug":37,"type":17},"2026-07-15T05:45:16.470309",{"slug":1241,"name":1241,"fn":1242,"description":1243,"org":1244,"tags":1245,"stars":22,"repoUrl":23,"updatedAt":1251},"abuselpdb-automation","automate Abuselpdb tasks via Composio","Automate Abuselpdb tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1246,1247,1248],{"name":20,"slug":21,"type":17},{"name":1200,"slug":37,"type":17},{"name":1249,"slug":1250,"type":17},"Security","security","2026-07-15T05:56:20.013366",{"slug":1253,"name":1253,"fn":1254,"description":1255,"org":1256,"tags":1257,"stars":22,"repoUrl":23,"updatedAt":1260},"abyssale-automation","automate Abyssale tasks via Composio","Automate Abyssale tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1258,1259],{"name":20,"slug":21,"type":17},{"name":10,"slug":9,"type":17},"2026-07-15T05:54:50.762889",{"slug":1262,"name":1262,"fn":1263,"description":1264,"org":1265,"tags":1266,"stars":22,"repoUrl":23,"updatedAt":1273},"accelo-automation","automate Accelo tasks via Composio","Automate Accelo tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1267,1268,1269,1272],{"name":20,"slug":21,"type":17},{"name":10,"slug":9,"type":17},{"name":1270,"slug":1271,"type":17},"CRM","crm",{"name":1200,"slug":37,"type":17},"2026-07-15T05:48:43.429136",{"slug":1275,"name":1275,"fn":1276,"description":1277,"org":1278,"tags":1279,"stars":22,"repoUrl":23,"updatedAt":1287},"accredible-certificates-automation","automate Accredible certificate management","Automate Accredible Certificates tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1280,1281,1284],{"name":20,"slug":21,"type":17},{"name":1282,"slug":1283,"type":17},"Documents","documents",{"name":1285,"slug":1286,"type":17},"E-Signature","e-signature","2026-07-15T05:55:33.159639",{"slug":1289,"name":1289,"fn":1290,"description":1291,"org":1292,"tags":1293,"stars":22,"repoUrl":23,"updatedAt":1300},"acculynx-automation","automate Acculynx construction management tasks","Automate Acculynx tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1294,1295,1296,1297],{"name":20,"slug":21,"type":17},{"name":10,"slug":9,"type":17},{"name":1200,"slug":37,"type":17},{"name":1298,"slug":1299,"type":17},"Operations","operations","2026-07-15T05:58:48.059284",{"slug":1302,"name":1302,"fn":1303,"description":1304,"org":1305,"tags":1306,"stars":22,"repoUrl":23,"updatedAt":1313},"active-campaign-automation","automate ActiveCampaign marketing and CRM tasks","Automate ActiveCampaign tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1307,1308,1309,1310],{"name":20,"slug":21,"type":17},{"name":10,"slug":9,"type":17},{"name":1270,"slug":1271,"type":17},{"name":1311,"slug":1312,"type":17},"Email Marketing","email-marketing","2026-07-15T05:49:44.281711",{"slug":1315,"name":1315,"fn":1316,"description":1317,"org":1318,"tags":1319,"stars":22,"repoUrl":23,"updatedAt":1323},"addresszen-automation","automate Addresszen address validation","Automate Addresszen tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1320,1321,1322],{"name":20,"slug":21,"type":17},{"name":10,"slug":9,"type":17},{"name":1200,"slug":37,"type":17},"2026-07-15T05:47:51.742515",{"slug":1325,"name":1325,"fn":1326,"description":1327,"org":1328,"tags":1329,"stars":22,"repoUrl":23,"updatedAt":1333},"adobe-automation","automate Adobe tasks via Composio","Automate Adobe tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1330,1331,1332],{"name":20,"slug":21,"type":17},{"name":10,"slug":9,"type":17},{"name":1200,"slug":37,"type":17},"2026-07-15T05:45:05.303254",863,{"items":1336,"total":1380},[1337,1344,1351,1356,1362,1368,1373],{"slug":1191,"name":1192,"fn":1193,"description":1194,"org":1338,"tags":1339,"stars":22,"repoUrl":23,"updatedAt":1204},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1340,1341,1342,1343],{"name":20,"slug":21,"type":17},{"name":10,"slug":9,"type":17},{"name":1200,"slug":37,"type":17},{"name":1202,"slug":1203,"type":17},{"slug":1206,"name":1207,"fn":1208,"description":1209,"org":1345,"tags":1346,"stars":22,"repoUrl":23,"updatedAt":1220},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1347,1348,1349,1350],{"name":20,"slug":21,"type":17},{"name":1214,"slug":1215,"type":17},{"name":1200,"slug":37,"type":17},{"name":1218,"slug":1219,"type":17},{"slug":1222,"name":1222,"fn":1223,"description":1224,"org":1352,"tags":1353,"stars":22,"repoUrl":23,"updatedAt":1229},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1354,1355],{"name":20,"slug":21,"type":17},{"name":1200,"slug":37,"type":17},{"slug":1231,"name":1231,"fn":1232,"description":1233,"org":1357,"tags":1358,"stars":22,"repoUrl":23,"updatedAt":1239},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1359,1360,1361],{"name":20,"slug":21,"type":17},{"name":10,"slug":9,"type":17},{"name":1200,"slug":37,"type":17},{"slug":1241,"name":1241,"fn":1242,"description":1243,"org":1363,"tags":1364,"stars":22,"repoUrl":23,"updatedAt":1251},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1365,1366,1367],{"name":20,"slug":21,"type":17},{"name":1200,"slug":37,"type":17},{"name":1249,"slug":1250,"type":17},{"slug":1253,"name":1253,"fn":1254,"description":1255,"org":1369,"tags":1370,"stars":22,"repoUrl":23,"updatedAt":1260},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1371,1372],{"name":20,"slug":21,"type":17},{"name":10,"slug":9,"type":17},{"slug":1262,"name":1262,"fn":1263,"description":1264,"org":1374,"tags":1375,"stars":22,"repoUrl":23,"updatedAt":1273},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1376,1377,1378,1379],{"name":20,"slug":21,"type":17},{"name":10,"slug":9,"type":17},{"name":1270,"slug":1271,"type":17},{"name":1200,"slug":37,"type":17},860]