[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-composio-omnisend-automation":3,"mdc--9nt7es-key":53,"related-repo-composio-omnisend-automation":1515,"related-org-composio-omnisend-automation":1601},{"slug":4,"name":5,"fn":6,"description":7,"org":8,"tags":13,"stars":28,"repoUrl":29,"updatedAt":30,"license":31,"forks":32,"topics":33,"repo":48,"sourceUrl":51,"mdContent":52},"omnisend-automation","Omnisend Automation","automate Omnisend ecommerce marketing workflows","Automate ecommerce marketing workflows including contact management, bulk operations, and subscriber segmentation through Omnisend via Composio",{"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,22,25],{"name":15,"slug":16,"type":17},"Marketing","marketing","tag",{"name":10,"slug":9,"type":17},{"name":20,"slug":21,"type":17},"Automation","automation",{"name":23,"slug":24,"type":17},"MCP","mcp",{"name":26,"slug":27,"type":17},"E-commerce","e-commerce",67499,"https:\u002F\u002Fgithub.com\u002FComposioHQ\u002Fawesome-claude-skills","2026-07-15T05:53:18.383242",null,7603,[34,35,36,21,37,38,39,9,40,41,42,24,43,44,45,46,47],"agent-skills","ai-agents","antigravity","claude","claude-code","codex","cursor","developer-tools","gemini-cli","openai-codex","rube","saas","skill","workflow-automation",{"repoUrl":29,"stars":28,"forks":32,"topics":49,"description":50},[34,35,36,21,37,38,39,9,40,41,42,24,43,44,45,46,47],"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\u002Fomnisend-automation","---\nname: Omnisend Automation\ndescription: \"Automate ecommerce marketing workflows including contact management, bulk operations, and subscriber segmentation through Omnisend via Composio\"\nrequires:\n  mcp:\n    - rube\n---\n\n# Omnisend Automation\n\nAutomate ecommerce marketing operations -- create and update contacts, manage subscriber lists with cursor pagination, run bulk batch operations, and segment audiences -- all orchestrated through the Composio MCP integration.\n\n**Toolkit docs:** [composio.dev\u002Ftoolkits\u002Fomnisend](https:\u002F\u002Fcomposio.dev\u002Ftoolkits\u002Fomnisend)\n\n---\n\n## Setup\n\n1. Connect your Omnisend account through the Composio MCP server at `https:\u002F\u002Frube.app\u002Fmcp`\n2. The agent will prompt you with an authentication link if no active connection exists\n3. Once connected, all `OMNISEND_*` tools become available for execution\n\n---\n\n## Core Workflows\n\n### 1. Create or Update a Contact\nUpsert a contact by email identifier with subscription status, profile fields, and optional welcome message.\n\n**Tool:** `OMNISEND_CREATE_OR_UPDATE_CONTACT`\n\n| Parameter | Type | Required | Description |\n|-----------|------|----------|-------------|\n| `identifiers` | array | Yes | At least one identifier object with `id` (email), `type` (`email`), optional `channels.email.status` (`subscribed`, `nonSubscribed`, `unsubscribed`), and `sendWelcomeMessage` (boolean) |\n| `firstName` | string | No | Contact's first name |\n| `lastName` | string | No | Contact's last name |\n| `gender` | string | No | `m` or `f` |\n| `birthdate` | string | No | Format: `YYYY-MM-DD` |\n| `country` | string | No | Full country name |\n| `countryCode` | string | No | ISO 3166-1 alpha-2 code (e.g., `US`) |\n| `city` | string | No | City name |\n| `address` | string | No | Street address |\n| `postalCode` | string | No | ZIP\u002Fpostal code |\n\n---\n\n### 2. List Contacts with Pagination\nRetrieve contacts in batches with optional filters for email, phone, status, segment, or tag.\n\n**Tool:** `OMNISEND_LIST_CONTACTS`\n\n| Parameter | Type | Required | Description |\n|-----------|------|----------|-------------|\n| `limit` | integer | No | Results per page (default: 100, max: 250) |\n| `after` | string | No | Cursor for next page (base64-encoded ContactID) |\n| `before` | string | No | Cursor for previous page |\n| `email` | string | No | Filter by exact email address |\n| `phone` | string | No | Filter by full phone number with country code |\n| `status` | string | No | Filter by: `subscribed`, `nonSubscribed`, `unsubscribed` |\n| `segmentID` | integer | No | Filter by segment ID |\n| `tag` | string | No | Filter by tag (e.g., `VIP`) |\n\n---\n\n### 3. Get Contact Details\nRetrieve the full profile for a single contact when you already have their contact ID.\n\n**Tool:** `OMNISEND_GET_CONTACT`\n\n| Parameter | Type | Required | Description |\n|-----------|------|----------|-------------|\n| `contactId` | string | Yes | Unique contact identifier (e.g., `60e7412b1234567890abcdef`) |\n\n---\n\n### 4. Update an Existing Contact\nPatch specific fields on a contact by ID without overwriting the entire record.\n\n**Tool:** `OMNISEND_UPDATE_CONTACT`\n\nRequires the `contactId` and the fields to update. Retrieve the contact ID first via `OMNISEND_LIST_CONTACTS` or `OMNISEND_GET_CONTACT`.\n\n---\n\n### 5. Bulk Batch Operations\nProcess many records asynchronously in a single call -- contacts, products, orders, events, or categories.\n\n**Tool:** `OMNISEND_CREATE_BATCH`\n\n| Parameter | Type | Required | Description |\n|-----------|------|----------|-------------|\n| `method` | string | Yes | `POST` or `PUT` |\n| `endpoint` | string | Yes | Target: `contacts`, `orders`, `products`, `events`, `categories` |\n| `items` | array | Yes | Array of payload objects for each operation |\n| `eventID` | string | Conditional | Required when endpoint is `events` |\n\nUse batch operations to avoid rate limits when processing large data sets.\n\n---\n\n## Known Pitfalls\n\n| Pitfall | Details |\n|---------|---------|\n| **Identifier required** | `OMNISEND_CREATE_OR_UPDATE_CONTACT` requires at least one identifier in the `identifiers` array -- only `email` type is supported |\n| **Cursor-based pagination** | `OMNISEND_LIST_CONTACTS` uses base64-encoded `after`\u002F`before` cursors, not page numbers -- follow cursors to avoid incomplete data |\n| **Contact ID resolution** | `OMNISEND_UPDATE_CONTACT` requires a `contactId` -- always resolve it first via list or get operations |\n| **Batch method constraints** | `OMNISEND_CREATE_BATCH` only accepts `POST` or `PUT` methods -- no `DELETE` or `PATCH` |\n| **Event ID dependency** | When batching events, the `eventID` parameter is mandatory -- omitting it causes the batch to fail |\n\n---\n\n## Quick Reference\n\n| Tool Slug | Purpose |\n|-----------|---------|\n| `OMNISEND_CREATE_OR_UPDATE_CONTACT` | Create or upsert a contact by email |\n| `OMNISEND_LIST_CONTACTS` | List contacts with filtering and cursor pagination |\n| `OMNISEND_GET_CONTACT` | Get full profile for a single contact by ID |\n| `OMNISEND_UPDATE_CONTACT` | Patch specific fields on an existing contact |\n| `OMNISEND_CREATE_BATCH` | Bulk async operations for contacts, products, orders, events |\n\n---\n\n*Powered by [Composio](https:\u002F\u002Fcomposio.dev)*\n",{"data":54,"body":57},{"name":5,"description":7,"requires":55},{"mcp":56},[44],{"type":58,"children":59},"root",[60,67,73,93,97,104,139,142,148,155,160,175,555,558,564,569,583,834,837,843,848,862,922,925,931,936,950,975,978,984,989,1003,1182,1187,1190,1196,1386,1389,1395,1497,1500],{"type":61,"tag":62,"props":63,"children":64},"element","h1",{"id":4},[65],{"type":66,"value":5},"text",{"type":61,"tag":68,"props":69,"children":70},"p",{},[71],{"type":66,"value":72},"Automate ecommerce marketing operations -- create and update contacts, manage subscriber lists with cursor pagination, run bulk batch operations, and segment audiences -- all orchestrated through the Composio MCP integration.",{"type":61,"tag":68,"props":74,"children":75},{},[76,82,84],{"type":61,"tag":77,"props":78,"children":79},"strong",{},[80],{"type":66,"value":81},"Toolkit docs:",{"type":66,"value":83}," ",{"type":61,"tag":85,"props":86,"children":90},"a",{"href":87,"rel":88},"https:\u002F\u002Fcomposio.dev\u002Ftoolkits\u002Fomnisend",[89],"nofollow",[91],{"type":66,"value":92},"composio.dev\u002Ftoolkits\u002Fomnisend",{"type":61,"tag":94,"props":95,"children":96},"hr",{},[],{"type":61,"tag":98,"props":99,"children":101},"h2",{"id":100},"setup",[102],{"type":66,"value":103},"Setup",{"type":61,"tag":105,"props":106,"children":107},"ol",{},[108,121,126],{"type":61,"tag":109,"props":110,"children":111},"li",{},[112,114],{"type":66,"value":113},"Connect your Omnisend account through the Composio MCP server at ",{"type":61,"tag":115,"props":116,"children":118},"code",{"className":117},[],[119],{"type":66,"value":120},"https:\u002F\u002Frube.app\u002Fmcp",{"type":61,"tag":109,"props":122,"children":123},{},[124],{"type":66,"value":125},"The agent will prompt you with an authentication link if no active connection exists",{"type":61,"tag":109,"props":127,"children":128},{},[129,131,137],{"type":66,"value":130},"Once connected, all ",{"type":61,"tag":115,"props":132,"children":134},{"className":133},[],[135],{"type":66,"value":136},"OMNISEND_*",{"type":66,"value":138}," tools become available for execution",{"type":61,"tag":94,"props":140,"children":141},{},[],{"type":61,"tag":98,"props":143,"children":145},{"id":144},"core-workflows",[146],{"type":66,"value":147},"Core Workflows",{"type":61,"tag":149,"props":150,"children":152},"h3",{"id":151},"_1-create-or-update-a-contact",[153],{"type":66,"value":154},"1. Create or Update a Contact",{"type":61,"tag":68,"props":156,"children":157},{},[158],{"type":66,"value":159},"Upsert a contact by email identifier with subscription status, profile fields, and optional welcome message.",{"type":61,"tag":68,"props":161,"children":162},{},[163,168,169],{"type":61,"tag":77,"props":164,"children":165},{},[166],{"type":66,"value":167},"Tool:",{"type":66,"value":83},{"type":61,"tag":115,"props":170,"children":172},{"className":171},[],[173],{"type":66,"value":174},"OMNISEND_CREATE_OR_UPDATE_CONTACT",{"type":61,"tag":176,"props":177,"children":178},"table",{},[179,208],{"type":61,"tag":180,"props":181,"children":182},"thead",{},[183],{"type":61,"tag":184,"props":185,"children":186},"tr",{},[187,193,198,203],{"type":61,"tag":188,"props":189,"children":190},"th",{},[191],{"type":66,"value":192},"Parameter",{"type":61,"tag":188,"props":194,"children":195},{},[196],{"type":66,"value":197},"Type",{"type":61,"tag":188,"props":199,"children":200},{},[201],{"type":66,"value":202},"Required",{"type":61,"tag":188,"props":204,"children":205},{},[206],{"type":66,"value":207},"Description",{"type":61,"tag":209,"props":210,"children":211},"tbody",{},[212,302,329,354,391,422,447,480,505,530],{"type":61,"tag":184,"props":213,"children":214},{},[215,225,230,235],{"type":61,"tag":216,"props":217,"children":218},"td",{},[219],{"type":61,"tag":115,"props":220,"children":222},{"className":221},[],[223],{"type":66,"value":224},"identifiers",{"type":61,"tag":216,"props":226,"children":227},{},[228],{"type":66,"value":229},"array",{"type":61,"tag":216,"props":231,"children":232},{},[233],{"type":66,"value":234},"Yes",{"type":61,"tag":216,"props":236,"children":237},{},[238,240,246,248,254,256,262,264,270,271,277,279,285,286,292,294,300],{"type":66,"value":239},"At least one identifier object with ",{"type":61,"tag":115,"props":241,"children":243},{"className":242},[],[244],{"type":66,"value":245},"id",{"type":66,"value":247}," (email), ",{"type":61,"tag":115,"props":249,"children":251},{"className":250},[],[252],{"type":66,"value":253},"type",{"type":66,"value":255}," (",{"type":61,"tag":115,"props":257,"children":259},{"className":258},[],[260],{"type":66,"value":261},"email",{"type":66,"value":263},"), optional ",{"type":61,"tag":115,"props":265,"children":267},{"className":266},[],[268],{"type":66,"value":269},"channels.email.status",{"type":66,"value":255},{"type":61,"tag":115,"props":272,"children":274},{"className":273},[],[275],{"type":66,"value":276},"subscribed",{"type":66,"value":278},", ",{"type":61,"tag":115,"props":280,"children":282},{"className":281},[],[283],{"type":66,"value":284},"nonSubscribed",{"type":66,"value":278},{"type":61,"tag":115,"props":287,"children":289},{"className":288},[],[290],{"type":66,"value":291},"unsubscribed",{"type":66,"value":293},"), and ",{"type":61,"tag":115,"props":295,"children":297},{"className":296},[],[298],{"type":66,"value":299},"sendWelcomeMessage",{"type":66,"value":301}," (boolean)",{"type":61,"tag":184,"props":303,"children":304},{},[305,314,319,324],{"type":61,"tag":216,"props":306,"children":307},{},[308],{"type":61,"tag":115,"props":309,"children":311},{"className":310},[],[312],{"type":66,"value":313},"firstName",{"type":61,"tag":216,"props":315,"children":316},{},[317],{"type":66,"value":318},"string",{"type":61,"tag":216,"props":320,"children":321},{},[322],{"type":66,"value":323},"No",{"type":61,"tag":216,"props":325,"children":326},{},[327],{"type":66,"value":328},"Contact's first name",{"type":61,"tag":184,"props":330,"children":331},{},[332,341,345,349],{"type":61,"tag":216,"props":333,"children":334},{},[335],{"type":61,"tag":115,"props":336,"children":338},{"className":337},[],[339],{"type":66,"value":340},"lastName",{"type":61,"tag":216,"props":342,"children":343},{},[344],{"type":66,"value":318},{"type":61,"tag":216,"props":346,"children":347},{},[348],{"type":66,"value":323},{"type":61,"tag":216,"props":350,"children":351},{},[352],{"type":66,"value":353},"Contact's last name",{"type":61,"tag":184,"props":355,"children":356},{},[357,366,370,374],{"type":61,"tag":216,"props":358,"children":359},{},[360],{"type":61,"tag":115,"props":361,"children":363},{"className":362},[],[364],{"type":66,"value":365},"gender",{"type":61,"tag":216,"props":367,"children":368},{},[369],{"type":66,"value":318},{"type":61,"tag":216,"props":371,"children":372},{},[373],{"type":66,"value":323},{"type":61,"tag":216,"props":375,"children":376},{},[377,383,385],{"type":61,"tag":115,"props":378,"children":380},{"className":379},[],[381],{"type":66,"value":382},"m",{"type":66,"value":384}," or ",{"type":61,"tag":115,"props":386,"children":388},{"className":387},[],[389],{"type":66,"value":390},"f",{"type":61,"tag":184,"props":392,"children":393},{},[394,403,407,411],{"type":61,"tag":216,"props":395,"children":396},{},[397],{"type":61,"tag":115,"props":398,"children":400},{"className":399},[],[401],{"type":66,"value":402},"birthdate",{"type":61,"tag":216,"props":404,"children":405},{},[406],{"type":66,"value":318},{"type":61,"tag":216,"props":408,"children":409},{},[410],{"type":66,"value":323},{"type":61,"tag":216,"props":412,"children":413},{},[414,416],{"type":66,"value":415},"Format: ",{"type":61,"tag":115,"props":417,"children":419},{"className":418},[],[420],{"type":66,"value":421},"YYYY-MM-DD",{"type":61,"tag":184,"props":423,"children":424},{},[425,434,438,442],{"type":61,"tag":216,"props":426,"children":427},{},[428],{"type":61,"tag":115,"props":429,"children":431},{"className":430},[],[432],{"type":66,"value":433},"country",{"type":61,"tag":216,"props":435,"children":436},{},[437],{"type":66,"value":318},{"type":61,"tag":216,"props":439,"children":440},{},[441],{"type":66,"value":323},{"type":61,"tag":216,"props":443,"children":444},{},[445],{"type":66,"value":446},"Full country name",{"type":61,"tag":184,"props":448,"children":449},{},[450,459,463,467],{"type":61,"tag":216,"props":451,"children":452},{},[453],{"type":61,"tag":115,"props":454,"children":456},{"className":455},[],[457],{"type":66,"value":458},"countryCode",{"type":61,"tag":216,"props":460,"children":461},{},[462],{"type":66,"value":318},{"type":61,"tag":216,"props":464,"children":465},{},[466],{"type":66,"value":323},{"type":61,"tag":216,"props":468,"children":469},{},[470,472,478],{"type":66,"value":471},"ISO 3166-1 alpha-2 code (e.g., ",{"type":61,"tag":115,"props":473,"children":475},{"className":474},[],[476],{"type":66,"value":477},"US",{"type":66,"value":479},")",{"type":61,"tag":184,"props":481,"children":482},{},[483,492,496,500],{"type":61,"tag":216,"props":484,"children":485},{},[486],{"type":61,"tag":115,"props":487,"children":489},{"className":488},[],[490],{"type":66,"value":491},"city",{"type":61,"tag":216,"props":493,"children":494},{},[495],{"type":66,"value":318},{"type":61,"tag":216,"props":497,"children":498},{},[499],{"type":66,"value":323},{"type":61,"tag":216,"props":501,"children":502},{},[503],{"type":66,"value":504},"City name",{"type":61,"tag":184,"props":506,"children":507},{},[508,517,521,525],{"type":61,"tag":216,"props":509,"children":510},{},[511],{"type":61,"tag":115,"props":512,"children":514},{"className":513},[],[515],{"type":66,"value":516},"address",{"type":61,"tag":216,"props":518,"children":519},{},[520],{"type":66,"value":318},{"type":61,"tag":216,"props":522,"children":523},{},[524],{"type":66,"value":323},{"type":61,"tag":216,"props":526,"children":527},{},[528],{"type":66,"value":529},"Street address",{"type":61,"tag":184,"props":531,"children":532},{},[533,542,546,550],{"type":61,"tag":216,"props":534,"children":535},{},[536],{"type":61,"tag":115,"props":537,"children":539},{"className":538},[],[540],{"type":66,"value":541},"postalCode",{"type":61,"tag":216,"props":543,"children":544},{},[545],{"type":66,"value":318},{"type":61,"tag":216,"props":547,"children":548},{},[549],{"type":66,"value":323},{"type":61,"tag":216,"props":551,"children":552},{},[553],{"type":66,"value":554},"ZIP\u002Fpostal code",{"type":61,"tag":94,"props":556,"children":557},{},[],{"type":61,"tag":149,"props":559,"children":561},{"id":560},"_2-list-contacts-with-pagination",[562],{"type":66,"value":563},"2. List Contacts with Pagination",{"type":61,"tag":68,"props":565,"children":566},{},[567],{"type":66,"value":568},"Retrieve contacts in batches with optional filters for email, phone, status, segment, or tag.",{"type":61,"tag":68,"props":570,"children":571},{},[572,576,577],{"type":61,"tag":77,"props":573,"children":574},{},[575],{"type":66,"value":167},{"type":66,"value":83},{"type":61,"tag":115,"props":578,"children":580},{"className":579},[],[581],{"type":66,"value":582},"OMNISEND_LIST_CONTACTS",{"type":61,"tag":176,"props":584,"children":585},{},[586,608],{"type":61,"tag":180,"props":587,"children":588},{},[589],{"type":61,"tag":184,"props":590,"children":591},{},[592,596,600,604],{"type":61,"tag":188,"props":593,"children":594},{},[595],{"type":66,"value":192},{"type":61,"tag":188,"props":597,"children":598},{},[599],{"type":66,"value":197},{"type":61,"tag":188,"props":601,"children":602},{},[603],{"type":66,"value":202},{"type":61,"tag":188,"props":605,"children":606},{},[607],{"type":66,"value":207},{"type":61,"tag":209,"props":609,"children":610},{},[611,637,662,687,711,736,778,803],{"type":61,"tag":184,"props":612,"children":613},{},[614,623,628,632],{"type":61,"tag":216,"props":615,"children":616},{},[617],{"type":61,"tag":115,"props":618,"children":620},{"className":619},[],[621],{"type":66,"value":622},"limit",{"type":61,"tag":216,"props":624,"children":625},{},[626],{"type":66,"value":627},"integer",{"type":61,"tag":216,"props":629,"children":630},{},[631],{"type":66,"value":323},{"type":61,"tag":216,"props":633,"children":634},{},[635],{"type":66,"value":636},"Results per page (default: 100, max: 250)",{"type":61,"tag":184,"props":638,"children":639},{},[640,649,653,657],{"type":61,"tag":216,"props":641,"children":642},{},[643],{"type":61,"tag":115,"props":644,"children":646},{"className":645},[],[647],{"type":66,"value":648},"after",{"type":61,"tag":216,"props":650,"children":651},{},[652],{"type":66,"value":318},{"type":61,"tag":216,"props":654,"children":655},{},[656],{"type":66,"value":323},{"type":61,"tag":216,"props":658,"children":659},{},[660],{"type":66,"value":661},"Cursor for next page (base64-encoded ContactID)",{"type":61,"tag":184,"props":663,"children":664},{},[665,674,678,682],{"type":61,"tag":216,"props":666,"children":667},{},[668],{"type":61,"tag":115,"props":669,"children":671},{"className":670},[],[672],{"type":66,"value":673},"before",{"type":61,"tag":216,"props":675,"children":676},{},[677],{"type":66,"value":318},{"type":61,"tag":216,"props":679,"children":680},{},[681],{"type":66,"value":323},{"type":61,"tag":216,"props":683,"children":684},{},[685],{"type":66,"value":686},"Cursor for previous page",{"type":61,"tag":184,"props":688,"children":689},{},[690,698,702,706],{"type":61,"tag":216,"props":691,"children":692},{},[693],{"type":61,"tag":115,"props":694,"children":696},{"className":695},[],[697],{"type":66,"value":261},{"type":61,"tag":216,"props":699,"children":700},{},[701],{"type":66,"value":318},{"type":61,"tag":216,"props":703,"children":704},{},[705],{"type":66,"value":323},{"type":61,"tag":216,"props":707,"children":708},{},[709],{"type":66,"value":710},"Filter by exact email address",{"type":61,"tag":184,"props":712,"children":713},{},[714,723,727,731],{"type":61,"tag":216,"props":715,"children":716},{},[717],{"type":61,"tag":115,"props":718,"children":720},{"className":719},[],[721],{"type":66,"value":722},"phone",{"type":61,"tag":216,"props":724,"children":725},{},[726],{"type":66,"value":318},{"type":61,"tag":216,"props":728,"children":729},{},[730],{"type":66,"value":323},{"type":61,"tag":216,"props":732,"children":733},{},[734],{"type":66,"value":735},"Filter by full phone number with country code",{"type":61,"tag":184,"props":737,"children":738},{},[739,748,752,756],{"type":61,"tag":216,"props":740,"children":741},{},[742],{"type":61,"tag":115,"props":743,"children":745},{"className":744},[],[746],{"type":66,"value":747},"status",{"type":61,"tag":216,"props":749,"children":750},{},[751],{"type":66,"value":318},{"type":61,"tag":216,"props":753,"children":754},{},[755],{"type":66,"value":323},{"type":61,"tag":216,"props":757,"children":758},{},[759,761,766,767,772,773],{"type":66,"value":760},"Filter by: ",{"type":61,"tag":115,"props":762,"children":764},{"className":763},[],[765],{"type":66,"value":276},{"type":66,"value":278},{"type":61,"tag":115,"props":768,"children":770},{"className":769},[],[771],{"type":66,"value":284},{"type":66,"value":278},{"type":61,"tag":115,"props":774,"children":776},{"className":775},[],[777],{"type":66,"value":291},{"type":61,"tag":184,"props":779,"children":780},{},[781,790,794,798],{"type":61,"tag":216,"props":782,"children":783},{},[784],{"type":61,"tag":115,"props":785,"children":787},{"className":786},[],[788],{"type":66,"value":789},"segmentID",{"type":61,"tag":216,"props":791,"children":792},{},[793],{"type":66,"value":627},{"type":61,"tag":216,"props":795,"children":796},{},[797],{"type":66,"value":323},{"type":61,"tag":216,"props":799,"children":800},{},[801],{"type":66,"value":802},"Filter by segment ID",{"type":61,"tag":184,"props":804,"children":805},{},[806,814,818,822],{"type":61,"tag":216,"props":807,"children":808},{},[809],{"type":61,"tag":115,"props":810,"children":812},{"className":811},[],[813],{"type":66,"value":17},{"type":61,"tag":216,"props":815,"children":816},{},[817],{"type":66,"value":318},{"type":61,"tag":216,"props":819,"children":820},{},[821],{"type":66,"value":323},{"type":61,"tag":216,"props":823,"children":824},{},[825,827,833],{"type":66,"value":826},"Filter by tag (e.g., ",{"type":61,"tag":115,"props":828,"children":830},{"className":829},[],[831],{"type":66,"value":832},"VIP",{"type":66,"value":479},{"type":61,"tag":94,"props":835,"children":836},{},[],{"type":61,"tag":149,"props":838,"children":840},{"id":839},"_3-get-contact-details",[841],{"type":66,"value":842},"3. Get Contact Details",{"type":61,"tag":68,"props":844,"children":845},{},[846],{"type":66,"value":847},"Retrieve the full profile for a single contact when you already have their contact ID.",{"type":61,"tag":68,"props":849,"children":850},{},[851,855,856],{"type":61,"tag":77,"props":852,"children":853},{},[854],{"type":66,"value":167},{"type":66,"value":83},{"type":61,"tag":115,"props":857,"children":859},{"className":858},[],[860],{"type":66,"value":861},"OMNISEND_GET_CONTACT",{"type":61,"tag":176,"props":863,"children":864},{},[865,887],{"type":61,"tag":180,"props":866,"children":867},{},[868],{"type":61,"tag":184,"props":869,"children":870},{},[871,875,879,883],{"type":61,"tag":188,"props":872,"children":873},{},[874],{"type":66,"value":192},{"type":61,"tag":188,"props":876,"children":877},{},[878],{"type":66,"value":197},{"type":61,"tag":188,"props":880,"children":881},{},[882],{"type":66,"value":202},{"type":61,"tag":188,"props":884,"children":885},{},[886],{"type":66,"value":207},{"type":61,"tag":209,"props":888,"children":889},{},[890],{"type":61,"tag":184,"props":891,"children":892},{},[893,902,906,910],{"type":61,"tag":216,"props":894,"children":895},{},[896],{"type":61,"tag":115,"props":897,"children":899},{"className":898},[],[900],{"type":66,"value":901},"contactId",{"type":61,"tag":216,"props":903,"children":904},{},[905],{"type":66,"value":318},{"type":61,"tag":216,"props":907,"children":908},{},[909],{"type":66,"value":234},{"type":61,"tag":216,"props":911,"children":912},{},[913,915,921],{"type":66,"value":914},"Unique contact identifier (e.g., ",{"type":61,"tag":115,"props":916,"children":918},{"className":917},[],[919],{"type":66,"value":920},"60e7412b1234567890abcdef",{"type":66,"value":479},{"type":61,"tag":94,"props":923,"children":924},{},[],{"type":61,"tag":149,"props":926,"children":928},{"id":927},"_4-update-an-existing-contact",[929],{"type":66,"value":930},"4. Update an Existing Contact",{"type":61,"tag":68,"props":932,"children":933},{},[934],{"type":66,"value":935},"Patch specific fields on a contact by ID without overwriting the entire record.",{"type":61,"tag":68,"props":937,"children":938},{},[939,943,944],{"type":61,"tag":77,"props":940,"children":941},{},[942],{"type":66,"value":167},{"type":66,"value":83},{"type":61,"tag":115,"props":945,"children":947},{"className":946},[],[948],{"type":66,"value":949},"OMNISEND_UPDATE_CONTACT",{"type":61,"tag":68,"props":951,"children":952},{},[953,955,960,962,967,968,973],{"type":66,"value":954},"Requires the ",{"type":61,"tag":115,"props":956,"children":958},{"className":957},[],[959],{"type":66,"value":901},{"type":66,"value":961}," and the fields to update. Retrieve the contact ID first via ",{"type":61,"tag":115,"props":963,"children":965},{"className":964},[],[966],{"type":66,"value":582},{"type":66,"value":384},{"type":61,"tag":115,"props":969,"children":971},{"className":970},[],[972],{"type":66,"value":861},{"type":66,"value":974},".",{"type":61,"tag":94,"props":976,"children":977},{},[],{"type":61,"tag":149,"props":979,"children":981},{"id":980},"_5-bulk-batch-operations",[982],{"type":66,"value":983},"5. Bulk Batch Operations",{"type":61,"tag":68,"props":985,"children":986},{},[987],{"type":66,"value":988},"Process many records asynchronously in a single call -- contacts, products, orders, events, or categories.",{"type":61,"tag":68,"props":990,"children":991},{},[992,996,997],{"type":61,"tag":77,"props":993,"children":994},{},[995],{"type":66,"value":167},{"type":66,"value":83},{"type":61,"tag":115,"props":998,"children":1000},{"className":999},[],[1001],{"type":66,"value":1002},"OMNISEND_CREATE_BATCH",{"type":61,"tag":176,"props":1004,"children":1005},{},[1006,1028],{"type":61,"tag":180,"props":1007,"children":1008},{},[1009],{"type":61,"tag":184,"props":1010,"children":1011},{},[1012,1016,1020,1024],{"type":61,"tag":188,"props":1013,"children":1014},{},[1015],{"type":66,"value":192},{"type":61,"tag":188,"props":1017,"children":1018},{},[1019],{"type":66,"value":197},{"type":61,"tag":188,"props":1021,"children":1022},{},[1023],{"type":66,"value":202},{"type":61,"tag":188,"props":1025,"children":1026},{},[1027],{"type":66,"value":207},{"type":61,"tag":209,"props":1029,"children":1030},{},[1031,1067,1126,1151],{"type":61,"tag":184,"props":1032,"children":1033},{},[1034,1043,1047,1051],{"type":61,"tag":216,"props":1035,"children":1036},{},[1037],{"type":61,"tag":115,"props":1038,"children":1040},{"className":1039},[],[1041],{"type":66,"value":1042},"method",{"type":61,"tag":216,"props":1044,"children":1045},{},[1046],{"type":66,"value":318},{"type":61,"tag":216,"props":1048,"children":1049},{},[1050],{"type":66,"value":234},{"type":61,"tag":216,"props":1052,"children":1053},{},[1054,1060,1061],{"type":61,"tag":115,"props":1055,"children":1057},{"className":1056},[],[1058],{"type":66,"value":1059},"POST",{"type":66,"value":384},{"type":61,"tag":115,"props":1062,"children":1064},{"className":1063},[],[1065],{"type":66,"value":1066},"PUT",{"type":61,"tag":184,"props":1068,"children":1069},{},[1070,1079,1083,1087],{"type":61,"tag":216,"props":1071,"children":1072},{},[1073],{"type":61,"tag":115,"props":1074,"children":1076},{"className":1075},[],[1077],{"type":66,"value":1078},"endpoint",{"type":61,"tag":216,"props":1080,"children":1081},{},[1082],{"type":66,"value":318},{"type":61,"tag":216,"props":1084,"children":1085},{},[1086],{"type":66,"value":234},{"type":61,"tag":216,"props":1088,"children":1089},{},[1090,1092,1098,1099,1105,1106,1112,1113,1119,1120],{"type":66,"value":1091},"Target: ",{"type":61,"tag":115,"props":1093,"children":1095},{"className":1094},[],[1096],{"type":66,"value":1097},"contacts",{"type":66,"value":278},{"type":61,"tag":115,"props":1100,"children":1102},{"className":1101},[],[1103],{"type":66,"value":1104},"orders",{"type":66,"value":278},{"type":61,"tag":115,"props":1107,"children":1109},{"className":1108},[],[1110],{"type":66,"value":1111},"products",{"type":66,"value":278},{"type":61,"tag":115,"props":1114,"children":1116},{"className":1115},[],[1117],{"type":66,"value":1118},"events",{"type":66,"value":278},{"type":61,"tag":115,"props":1121,"children":1123},{"className":1122},[],[1124],{"type":66,"value":1125},"categories",{"type":61,"tag":184,"props":1127,"children":1128},{},[1129,1138,1142,1146],{"type":61,"tag":216,"props":1130,"children":1131},{},[1132],{"type":61,"tag":115,"props":1133,"children":1135},{"className":1134},[],[1136],{"type":66,"value":1137},"items",{"type":61,"tag":216,"props":1139,"children":1140},{},[1141],{"type":66,"value":229},{"type":61,"tag":216,"props":1143,"children":1144},{},[1145],{"type":66,"value":234},{"type":61,"tag":216,"props":1147,"children":1148},{},[1149],{"type":66,"value":1150},"Array of payload objects for each operation",{"type":61,"tag":184,"props":1152,"children":1153},{},[1154,1163,1167,1172],{"type":61,"tag":216,"props":1155,"children":1156},{},[1157],{"type":61,"tag":115,"props":1158,"children":1160},{"className":1159},[],[1161],{"type":66,"value":1162},"eventID",{"type":61,"tag":216,"props":1164,"children":1165},{},[1166],{"type":66,"value":318},{"type":61,"tag":216,"props":1168,"children":1169},{},[1170],{"type":66,"value":1171},"Conditional",{"type":61,"tag":216,"props":1173,"children":1174},{},[1175,1177],{"type":66,"value":1176},"Required when endpoint is ",{"type":61,"tag":115,"props":1178,"children":1180},{"className":1179},[],[1181],{"type":66,"value":1118},{"type":61,"tag":68,"props":1183,"children":1184},{},[1185],{"type":66,"value":1186},"Use batch operations to avoid rate limits when processing large data sets.",{"type":61,"tag":94,"props":1188,"children":1189},{},[],{"type":61,"tag":98,"props":1191,"children":1193},{"id":1192},"known-pitfalls",[1194],{"type":66,"value":1195},"Known Pitfalls",{"type":61,"tag":176,"props":1197,"children":1198},{},[1199,1215],{"type":61,"tag":180,"props":1200,"children":1201},{},[1202],{"type":61,"tag":184,"props":1203,"children":1204},{},[1205,1210],{"type":61,"tag":188,"props":1206,"children":1207},{},[1208],{"type":66,"value":1209},"Pitfall",{"type":61,"tag":188,"props":1211,"children":1212},{},[1213],{"type":66,"value":1214},"Details",{"type":61,"tag":209,"props":1216,"children":1217},{},[1218,1253,1288,1316,1363],{"type":61,"tag":184,"props":1219,"children":1220},{},[1221,1229],{"type":61,"tag":216,"props":1222,"children":1223},{},[1224],{"type":61,"tag":77,"props":1225,"children":1226},{},[1227],{"type":66,"value":1228},"Identifier required",{"type":61,"tag":216,"props":1230,"children":1231},{},[1232,1237,1239,1244,1246,1251],{"type":61,"tag":115,"props":1233,"children":1235},{"className":1234},[],[1236],{"type":66,"value":174},{"type":66,"value":1238}," requires at least one identifier in the ",{"type":61,"tag":115,"props":1240,"children":1242},{"className":1241},[],[1243],{"type":66,"value":224},{"type":66,"value":1245}," array -- only ",{"type":61,"tag":115,"props":1247,"children":1249},{"className":1248},[],[1250],{"type":66,"value":261},{"type":66,"value":1252}," type is supported",{"type":61,"tag":184,"props":1254,"children":1255},{},[1256,1264],{"type":61,"tag":216,"props":1257,"children":1258},{},[1259],{"type":61,"tag":77,"props":1260,"children":1261},{},[1262],{"type":66,"value":1263},"Cursor-based pagination",{"type":61,"tag":216,"props":1265,"children":1266},{},[1267,1272,1274,1279,1281,1286],{"type":61,"tag":115,"props":1268,"children":1270},{"className":1269},[],[1271],{"type":66,"value":582},{"type":66,"value":1273}," uses base64-encoded ",{"type":61,"tag":115,"props":1275,"children":1277},{"className":1276},[],[1278],{"type":66,"value":648},{"type":66,"value":1280},"\u002F",{"type":61,"tag":115,"props":1282,"children":1284},{"className":1283},[],[1285],{"type":66,"value":673},{"type":66,"value":1287}," cursors, not page numbers -- follow cursors to avoid incomplete data",{"type":61,"tag":184,"props":1289,"children":1290},{},[1291,1299],{"type":61,"tag":216,"props":1292,"children":1293},{},[1294],{"type":61,"tag":77,"props":1295,"children":1296},{},[1297],{"type":66,"value":1298},"Contact ID resolution",{"type":61,"tag":216,"props":1300,"children":1301},{},[1302,1307,1309,1314],{"type":61,"tag":115,"props":1303,"children":1305},{"className":1304},[],[1306],{"type":66,"value":949},{"type":66,"value":1308}," requires a ",{"type":61,"tag":115,"props":1310,"children":1312},{"className":1311},[],[1313],{"type":66,"value":901},{"type":66,"value":1315}," -- always resolve it first via list or get operations",{"type":61,"tag":184,"props":1317,"children":1318},{},[1319,1327],{"type":61,"tag":216,"props":1320,"children":1321},{},[1322],{"type":61,"tag":77,"props":1323,"children":1324},{},[1325],{"type":66,"value":1326},"Batch method constraints",{"type":61,"tag":216,"props":1328,"children":1329},{},[1330,1335,1337,1342,1343,1348,1350,1356,1357],{"type":61,"tag":115,"props":1331,"children":1333},{"className":1332},[],[1334],{"type":66,"value":1002},{"type":66,"value":1336}," only accepts ",{"type":61,"tag":115,"props":1338,"children":1340},{"className":1339},[],[1341],{"type":66,"value":1059},{"type":66,"value":384},{"type":61,"tag":115,"props":1344,"children":1346},{"className":1345},[],[1347],{"type":66,"value":1066},{"type":66,"value":1349}," methods -- no ",{"type":61,"tag":115,"props":1351,"children":1353},{"className":1352},[],[1354],{"type":66,"value":1355},"DELETE",{"type":66,"value":384},{"type":61,"tag":115,"props":1358,"children":1360},{"className":1359},[],[1361],{"type":66,"value":1362},"PATCH",{"type":61,"tag":184,"props":1364,"children":1365},{},[1366,1374],{"type":61,"tag":216,"props":1367,"children":1368},{},[1369],{"type":61,"tag":77,"props":1370,"children":1371},{},[1372],{"type":66,"value":1373},"Event ID dependency",{"type":61,"tag":216,"props":1375,"children":1376},{},[1377,1379,1384],{"type":66,"value":1378},"When batching events, the ",{"type":61,"tag":115,"props":1380,"children":1382},{"className":1381},[],[1383],{"type":66,"value":1162},{"type":66,"value":1385}," parameter is mandatory -- omitting it causes the batch to fail",{"type":61,"tag":94,"props":1387,"children":1388},{},[],{"type":61,"tag":98,"props":1390,"children":1392},{"id":1391},"quick-reference",[1393],{"type":66,"value":1394},"Quick Reference",{"type":61,"tag":176,"props":1396,"children":1397},{},[1398,1414],{"type":61,"tag":180,"props":1399,"children":1400},{},[1401],{"type":61,"tag":184,"props":1402,"children":1403},{},[1404,1409],{"type":61,"tag":188,"props":1405,"children":1406},{},[1407],{"type":66,"value":1408},"Tool Slug",{"type":61,"tag":188,"props":1410,"children":1411},{},[1412],{"type":66,"value":1413},"Purpose",{"type":61,"tag":209,"props":1415,"children":1416},{},[1417,1433,1449,1465,1481],{"type":61,"tag":184,"props":1418,"children":1419},{},[1420,1428],{"type":61,"tag":216,"props":1421,"children":1422},{},[1423],{"type":61,"tag":115,"props":1424,"children":1426},{"className":1425},[],[1427],{"type":66,"value":174},{"type":61,"tag":216,"props":1429,"children":1430},{},[1431],{"type":66,"value":1432},"Create or upsert a contact by email",{"type":61,"tag":184,"props":1434,"children":1435},{},[1436,1444],{"type":61,"tag":216,"props":1437,"children":1438},{},[1439],{"type":61,"tag":115,"props":1440,"children":1442},{"className":1441},[],[1443],{"type":66,"value":582},{"type":61,"tag":216,"props":1445,"children":1446},{},[1447],{"type":66,"value":1448},"List contacts with filtering and cursor pagination",{"type":61,"tag":184,"props":1450,"children":1451},{},[1452,1460],{"type":61,"tag":216,"props":1453,"children":1454},{},[1455],{"type":61,"tag":115,"props":1456,"children":1458},{"className":1457},[],[1459],{"type":66,"value":861},{"type":61,"tag":216,"props":1461,"children":1462},{},[1463],{"type":66,"value":1464},"Get full profile for a single contact by ID",{"type":61,"tag":184,"props":1466,"children":1467},{},[1468,1476],{"type":61,"tag":216,"props":1469,"children":1470},{},[1471],{"type":61,"tag":115,"props":1472,"children":1474},{"className":1473},[],[1475],{"type":66,"value":949},{"type":61,"tag":216,"props":1477,"children":1478},{},[1479],{"type":66,"value":1480},"Patch specific fields on an existing contact",{"type":61,"tag":184,"props":1482,"children":1483},{},[1484,1492],{"type":61,"tag":216,"props":1485,"children":1486},{},[1487],{"type":61,"tag":115,"props":1488,"children":1490},{"className":1489},[],[1491],{"type":66,"value":1002},{"type":61,"tag":216,"props":1493,"children":1494},{},[1495],{"type":66,"value":1496},"Bulk async operations for contacts, products, orders, events",{"type":61,"tag":94,"props":1498,"children":1499},{},[],{"type":61,"tag":68,"props":1501,"children":1502},{},[1503],{"type":61,"tag":1504,"props":1505,"children":1506},"em",{},[1507,1509],{"type":66,"value":1508},"Powered by ",{"type":61,"tag":85,"props":1510,"children":1513},{"href":1511,"rel":1512},"https:\u002F\u002Fcomposio.dev",[89],[1514],{"type":66,"value":10},{"items":1516,"total":1600},[1517,1531,1547,1556,1566,1578,1587],{"slug":1518,"name":1519,"fn":1520,"description":1521,"org":1522,"tags":1523,"stars":28,"repoUrl":29,"updatedAt":1530},"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},[1524,1525,1526,1527],{"name":20,"slug":21,"type":17},{"name":10,"slug":9,"type":17},{"name":23,"slug":24,"type":17},{"name":1528,"slug":1529,"type":17},"Risk Assessment","risk-assessment","2026-07-15T05:54:18.790529",{"slug":1532,"name":1533,"fn":1534,"description":1535,"org":1536,"tags":1537,"stars":28,"repoUrl":29,"updatedAt":1546},"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},[1538,1539,1542,1543],{"name":20,"slug":21,"type":17},{"name":1540,"slug":1541,"type":17},"Communications","communications",{"name":23,"slug":24,"type":17},{"name":1544,"slug":1545,"type":17},"Messaging","messaging","2026-07-15T05:51:27.190332",{"slug":1548,"name":1548,"fn":1549,"description":1550,"org":1551,"tags":1552,"stars":28,"repoUrl":29,"updatedAt":1555},"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},[1553,1554],{"name":20,"slug":21,"type":17},{"name":23,"slug":24,"type":17},"2026-07-12T08:09:55.453088",{"slug":1557,"name":1557,"fn":1558,"description":1559,"org":1560,"tags":1561,"stars":28,"repoUrl":29,"updatedAt":1565},"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},[1562,1563,1564],{"name":20,"slug":21,"type":17},{"name":10,"slug":9,"type":17},{"name":23,"slug":24,"type":17},"2026-07-15T05:45:16.470309",{"slug":1567,"name":1567,"fn":1568,"description":1569,"org":1570,"tags":1571,"stars":28,"repoUrl":29,"updatedAt":1577},"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},[1572,1573,1574],{"name":20,"slug":21,"type":17},{"name":23,"slug":24,"type":17},{"name":1575,"slug":1576,"type":17},"Security","security","2026-07-15T05:56:20.013366",{"slug":1579,"name":1579,"fn":1580,"description":1581,"org":1582,"tags":1583,"stars":28,"repoUrl":29,"updatedAt":1586},"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},[1584,1585],{"name":20,"slug":21,"type":17},{"name":10,"slug":9,"type":17},"2026-07-15T05:54:50.762889",{"slug":1588,"name":1588,"fn":1589,"description":1590,"org":1591,"tags":1592,"stars":28,"repoUrl":29,"updatedAt":1599},"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},[1593,1594,1595,1598],{"name":20,"slug":21,"type":17},{"name":10,"slug":9,"type":17},{"name":1596,"slug":1597,"type":17},"CRM","crm",{"name":23,"slug":24,"type":17},"2026-07-15T05:48:43.429136",860,{"items":1602,"total":1706},[1603,1610,1617,1622,1628,1634,1639,1646,1660,1673,1686,1696],{"slug":1518,"name":1519,"fn":1520,"description":1521,"org":1604,"tags":1605,"stars":28,"repoUrl":29,"updatedAt":1530},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1606,1607,1608,1609],{"name":20,"slug":21,"type":17},{"name":10,"slug":9,"type":17},{"name":23,"slug":24,"type":17},{"name":1528,"slug":1529,"type":17},{"slug":1532,"name":1533,"fn":1534,"description":1535,"org":1611,"tags":1612,"stars":28,"repoUrl":29,"updatedAt":1546},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1613,1614,1615,1616],{"name":20,"slug":21,"type":17},{"name":1540,"slug":1541,"type":17},{"name":23,"slug":24,"type":17},{"name":1544,"slug":1545,"type":17},{"slug":1548,"name":1548,"fn":1549,"description":1550,"org":1618,"tags":1619,"stars":28,"repoUrl":29,"updatedAt":1555},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1620,1621],{"name":20,"slug":21,"type":17},{"name":23,"slug":24,"type":17},{"slug":1557,"name":1557,"fn":1558,"description":1559,"org":1623,"tags":1624,"stars":28,"repoUrl":29,"updatedAt":1565},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1625,1626,1627],{"name":20,"slug":21,"type":17},{"name":10,"slug":9,"type":17},{"name":23,"slug":24,"type":17},{"slug":1567,"name":1567,"fn":1568,"description":1569,"org":1629,"tags":1630,"stars":28,"repoUrl":29,"updatedAt":1577},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1631,1632,1633],{"name":20,"slug":21,"type":17},{"name":23,"slug":24,"type":17},{"name":1575,"slug":1576,"type":17},{"slug":1579,"name":1579,"fn":1580,"description":1581,"org":1635,"tags":1636,"stars":28,"repoUrl":29,"updatedAt":1586},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1637,1638],{"name":20,"slug":21,"type":17},{"name":10,"slug":9,"type":17},{"slug":1588,"name":1588,"fn":1589,"description":1590,"org":1640,"tags":1641,"stars":28,"repoUrl":29,"updatedAt":1599},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1642,1643,1644,1645],{"name":20,"slug":21,"type":17},{"name":10,"slug":9,"type":17},{"name":1596,"slug":1597,"type":17},{"name":23,"slug":24,"type":17},{"slug":1647,"name":1647,"fn":1648,"description":1649,"org":1650,"tags":1651,"stars":28,"repoUrl":29,"updatedAt":1659},"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},[1652,1653,1656],{"name":20,"slug":21,"type":17},{"name":1654,"slug":1655,"type":17},"Documents","documents",{"name":1657,"slug":1658,"type":17},"E-Signature","e-signature","2026-07-15T05:55:33.159639",{"slug":1661,"name":1661,"fn":1662,"description":1663,"org":1664,"tags":1665,"stars":28,"repoUrl":29,"updatedAt":1672},"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},[1666,1667,1668,1669],{"name":20,"slug":21,"type":17},{"name":10,"slug":9,"type":17},{"name":23,"slug":24,"type":17},{"name":1670,"slug":1671,"type":17},"Operations","operations","2026-07-15T05:58:48.059284",{"slug":1674,"name":1674,"fn":1675,"description":1676,"org":1677,"tags":1678,"stars":28,"repoUrl":29,"updatedAt":1685},"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},[1679,1680,1681,1682],{"name":20,"slug":21,"type":17},{"name":10,"slug":9,"type":17},{"name":1596,"slug":1597,"type":17},{"name":1683,"slug":1684,"type":17},"Email Marketing","email-marketing","2026-07-15T05:49:44.281711",{"slug":1687,"name":1687,"fn":1688,"description":1689,"org":1690,"tags":1691,"stars":28,"repoUrl":29,"updatedAt":1695},"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},[1692,1693,1694],{"name":20,"slug":21,"type":17},{"name":10,"slug":9,"type":17},{"name":23,"slug":24,"type":17},"2026-07-15T05:47:51.742515",{"slug":1697,"name":1697,"fn":1698,"description":1699,"org":1700,"tags":1701,"stars":28,"repoUrl":29,"updatedAt":1705},"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},[1702,1703,1704],{"name":20,"slug":21,"type":17},{"name":10,"slug":9,"type":17},{"name":23,"slug":24,"type":17},"2026-07-15T05:45:05.303254",863]