Get the FREE Ultimate OpenClaw Setup Guide →

Omnisend Automation

Scanned
npx machina-cli add skill ComposioHQ/awesome-claude-skills/omnisend-automation --openclaw
Files (1)
SKILL.md
5.1 KB

Omnisend Automation

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.

Toolkit docs: composio.dev/toolkits/omnisend


Setup

  1. Connect your Omnisend account through the Composio MCP server at https://rube.app/mcp
  2. The agent will prompt you with an authentication link if no active connection exists
  3. Once connected, all OMNISEND_* tools become available for execution

Core Workflows

1. Create or Update a Contact

Upsert a contact by email identifier with subscription status, profile fields, and optional welcome message.

Tool: OMNISEND_CREATE_OR_UPDATE_CONTACT

ParameterTypeRequiredDescription
identifiersarrayYesAt least one identifier object with id (email), type (email), optional channels.email.status (subscribed, nonSubscribed, unsubscribed), and sendWelcomeMessage (boolean)
firstNamestringNoContact's first name
lastNamestringNoContact's last name
genderstringNom or f
birthdatestringNoFormat: YYYY-MM-DD
countrystringNoFull country name
countryCodestringNoISO 3166-1 alpha-2 code (e.g., US)
citystringNoCity name
addressstringNoStreet address
postalCodestringNoZIP/postal code

2. List Contacts with Pagination

Retrieve contacts in batches with optional filters for email, phone, status, segment, or tag.

Tool: OMNISEND_LIST_CONTACTS

ParameterTypeRequiredDescription
limitintegerNoResults per page (default: 100, max: 250)
afterstringNoCursor for next page (base64-encoded ContactID)
beforestringNoCursor for previous page
emailstringNoFilter by exact email address
phonestringNoFilter by full phone number with country code
statusstringNoFilter by: subscribed, nonSubscribed, unsubscribed
segmentIDintegerNoFilter by segment ID
tagstringNoFilter by tag (e.g., VIP)

3. Get Contact Details

Retrieve the full profile for a single contact when you already have their contact ID.

Tool: OMNISEND_GET_CONTACT

ParameterTypeRequiredDescription
contactIdstringYesUnique contact identifier (e.g., 60e7412b1234567890abcdef)

4. Update an Existing Contact

Patch specific fields on a contact by ID without overwriting the entire record.

Tool: OMNISEND_UPDATE_CONTACT

Requires the contactId and the fields to update. Retrieve the contact ID first via OMNISEND_LIST_CONTACTS or OMNISEND_GET_CONTACT.


5. Bulk Batch Operations

Process many records asynchronously in a single call -- contacts, products, orders, events, or categories.

Tool: OMNISEND_CREATE_BATCH

ParameterTypeRequiredDescription
methodstringYesPOST or PUT
endpointstringYesTarget: contacts, orders, products, events, categories
itemsarrayYesArray of payload objects for each operation
eventIDstringConditionalRequired when endpoint is events

Use batch operations to avoid rate limits when processing large data sets.


Known Pitfalls

PitfallDetails
Identifier requiredOMNISEND_CREATE_OR_UPDATE_CONTACT requires at least one identifier in the identifiers array -- only email type is supported
Cursor-based paginationOMNISEND_LIST_CONTACTS uses base64-encoded after/before cursors, not page numbers -- follow cursors to avoid incomplete data
Contact ID resolutionOMNISEND_UPDATE_CONTACT requires a contactId -- always resolve it first via list or get operations
Batch method constraintsOMNISEND_CREATE_BATCH only accepts POST or PUT methods -- no DELETE or PATCH
Event ID dependencyWhen batching events, the eventID parameter is mandatory -- omitting it causes the batch to fail

Quick Reference

Tool SlugPurpose
OMNISEND_CREATE_OR_UPDATE_CONTACTCreate or upsert a contact by email
OMNISEND_LIST_CONTACTSList contacts with filtering and cursor pagination
OMNISEND_GET_CONTACTGet full profile for a single contact by ID
OMNISEND_UPDATE_CONTACTPatch specific fields on an existing contact
OMNISEND_CREATE_BATCHBulk async operations for contacts, products, orders, events

Powered by Composio

Source

git clone https://github.com/ComposioHQ/awesome-claude-skills/blob/master/composio-skills/omnisend-automation/SKILL.mdView on GitHub

Overview

Omnisend Automation orchestrates ecommerce marketing operations through the Composio MCP integration. It supports creating or updating contacts, paginated list management, bulk batch processing, and audience segmentation. This enables scalable, data-driven campaigns with minimal manual scripting.

How This Skill Works

Connect Omnisend to the Composio MCP server (https://rube.app/mcp). Then invoke the Omnisend tools: upsert contacts (OMNISEND_CREATE_OR_UPDATE_CONTACT), list contacts with cursor-based pagination (OMNISEND_LIST_CONTACTS), retrieve details (OMNISEND_GET_CONTACT), patch updates (OMNISEND_UPDATE_CONTACT), and perform bulk operations (OMNISEND_CREATE_BATCH).

When to Use It

  • Onboard new subscribers automatically from lead sources
  • Update customer profiles with fresh data or preferences
  • Retrieve and filter contacts for segmentation before campaigns
  • Migrate or synchronize large datasets with batch endpoints
  • Fetch a contact's details to personalize messages before sending

Quick Start

  1. Step 1: Connect Omnisend to the MCP server at https://rube.app/mcp
  2. Step 2: Authenticate when prompted to enable OMNISEND_* tools
  3. Step 3: Start using OMNISEND_CREATE_OR_UPDATE_CONTACT, OMNISEND_LIST_CONTACTS, OMNISEND_CREATE_BATCH, etc.

Best Practices

  • Use upsert with valid identifiers to avoid duplicates
  • Use cursor-based pagination with after/before for large lists
  • Validate email status (subscribed, nonSubscribed, unsubscribed) before actions
  • Combine filters and tags to build precise segments
  • Test batch operations with small payloads before scale

Example Use Cases

  • Upsert a new subscriber with a welcome message using OMNISEND_CREATE_OR_UPDATE_CONTACT
  • List all subscribed VIP customers via OMNISEND_LIST_CONTACTS and segment by tag
  • Get a contact's full profile and verify country before sending a promo
  • Update a contact's city without overwriting other fields via OMNISEND_UPDATE_CONTACT
  • Batch-create multiple orders/events using OMNISEND_CREATE_BATCH to process data at scale

Frequently Asked Questions

Add this skill to your agents
Sponsor this space

Reach thousands of developers