Instantly Automation
Scannednpx machina-cli add skill ComposioHQ/awesome-claude-skills/instantly-automation --openclawInstantly Automation
Automate your cold email outreach with Instantly -- create and manage campaigns with multi-step sequences, configure sending schedules, import leads in bulk, manage sending accounts, and track campaign performance -- all through natural language commands.
Toolkit docs: composio.dev/toolkits/instantly
Setup
- Add the Composio MCP server to your client configuration:
https://rube.app/mcp - Connect your Instantly account when prompted (API key authentication).
- Start issuing natural language commands to manage your outreach campaigns.
Core Workflows
1. List Sending Accounts
Retrieve all email accounts configured in your Instantly workspace, with filtering by status and provider.
Tool: INSTANTLY_LIST_ACCOUNTS
Example prompt:
"Show all active sending accounts in my Instantly workspace"
Key parameters:
status-- Filter by status:1(Active),2(Paused),-1(Connection Error),-2(Soft Bounce Error),-3(Sending Error)provider_code-- Filter by provider:1(Custom IMAP/SMTP),2(Google),3(Microsoft),4(AWS)search-- Search by email substring or domainlimit-- Max items (1-100)starting_after-- Pagination cursor from previous responsetag_ids-- Comma-separated tag UUIDs
2. Create a Campaign
Launch a new outreach campaign with scheduling, email sequences, A/B testing variants, and sending configuration.
Tool: INSTANTLY_CREATE_CAMPAIGN
Example prompt:
"Create an Instantly campaign called 'Q1 Outreach' that sends Monday-Friday 9am-5pm Central time with a 3-step email sequence"
Key parameters:
name(required) -- Campaign namecampaign_schedule(required) -- Schedule configuration:schedules(required) -- Array of schedule objects, each with:name-- Schedule nametiming--{from: "09:00", to: "17:00"}(HH:mm format)days-- Map of day index strings "0" (Sun) to "6" (Sat) to booleanstimezone-- Supported values include "America/Chicago", "America/Detroit", "America/Boise", "America/Anchorage"
start_date/end_date-- ISO 8601 dates
email_list-- Array of sending account email addresses (must be pre-configured accounts; useINSTANTLY_LIST_ACCOUNTSto discover valid addresses)sequences-- Array (only first element used) containing:steps-- Array of step objects with:type-- Must be "email"delay-- Days before NEXT email (integer, min 0)variants-- Array of{subject, body}objects for A/B testing
daily_limit-- Daily sending capemail_gap-- Minutes between emailsstop_on_reply-- Stop campaign when lead replies (boolean)stop_on_auto_reply-- Stop on auto-replies (boolean)open_tracking/link_tracking-- Enable tracking (booleans)
Timezone notes:
- Verified working: "America/Chicago" (Central), "America/Detroit" (Eastern), "America/Boise" (Mountain)
- Auto-mapped: "America/New_York" maps to "America/Detroit", "America/Denver" maps to "America/Boise"
- NOT supported: "America/Los_Angeles", "US/Pacific" -- use "America/Anchorage" or "America/Dawson" as alternatives
3. Update Campaign Settings
Modify an existing campaign's schedule, sending limits, sequences, or tracking settings.
Tool: INSTANTLY_UPDATE_CAMPAIGN
Example prompt:
"Update my Instantly campaign to increase the daily limit to 100 and enable open tracking"
Key parameters:
id(required) -- Campaign UUID- Any combination of:
name,campaign_schedule,email_list,sequences,daily_limit,email_gap,stop_on_reply,open_tracking,link_tracking, etc. - Set any parameter to
nullto unset it
4. Manage Lead Lists and Bulk Import
Create dedicated lead lists and import prospects in bulk for campaign targeting.
Tools: INSTANTLY_CREATE_LEAD_LIST, INSTANTLY_ADD_LEADS_BULK
Example prompt:
"Create a lead list called 'Q1 Prospects' and add 50 leads to my Instantly campaign"
Key parameters for creating lead lists:
- List name and configuration
Key parameters for bulk lead import:
- Campaign or list ID to import into
- Array of lead objects with email and metadata
- Duplicate handling options
- Lead verification settings
5. Review Campaign Details
Retrieve full campaign configuration to verify settings, inspect sequences, or prepare for updates.
Tool: INSTANTLY_GET_CAMPAIGN
Example prompt:
"Show me the full details of my Instantly campaign"
Key parameters:
id(required) -- Campaign UUID
6. List All Campaigns
Enumerate all campaigns in your workspace with optional filters and pagination.
Tool: INSTANTLY_LIST_CAMPAIGNS
Example prompt:
"List all my Instantly campaigns"
Key parameters:
- Optional filters and pagination parameters
Known Pitfalls
- Timezone support is limited: The Instantly API accepts a restricted set of timezone strings. Pacific Time ("America/Los_Angeles") is NOT supported. Use "America/Anchorage" (UTC-9/UTC-8) or "America/Dawson" (UTC-7 year-round) as alternatives.
- Invalid schedule payloads cause 400 errors: A malformed
campaign_schedule(missingdays,from,to, orschedules) triggers HTTP 400. Repeated 400s indicate payload issues, not transient failures. - Sequences must be complete: Each sequence step requires a valid
type("email"),delay, and at least one variant with bothsubjectandbody. Incomplete variants block campaign creation. - Only first sequence element is used: The API only processes
sequences[0]. Additional sequences are ignored. - email_list must reference existing accounts: The
email_listfield requires email addresses of pre-configured sending accounts in your Instantly workspace, not arbitrary recipient addresses. Always useINSTANTLY_LIST_ACCOUNTSto discover valid sending addresses. - 401 scope errors on campaign creation: Campaign creation can fail with "Invalid scope. Required: campaigns:create". Update your API key permissions before retrying writes.
- Read-back fields may differ: Field names in
INSTANTLY_GET_CAMPAIGNresponses may differ from create payloads (e.g.,timing.from_vstiming.from). Parse defensively.
Quick Reference
| Action | Tool Slug | Required Params |
|---|---|---|
| List sending accounts | INSTANTLY_LIST_ACCOUNTS | None (optional filters) |
| Create campaign | INSTANTLY_CREATE_CAMPAIGN | name, campaign_schedule |
| Update campaign | INSTANTLY_UPDATE_CAMPAIGN | id |
| Get campaign details | INSTANTLY_GET_CAMPAIGN | id |
| List campaigns | INSTANTLY_LIST_CAMPAIGNS | None (optional filters) |
| Create lead list | INSTANTLY_CREATE_LEAD_LIST | List name |
| Bulk import leads | INSTANTLY_ADD_LEADS_BULK | Campaign/list ID, leads |
Powered by Composio
Source
git clone https://github.com/ComposioHQ/awesome-claude-skills/blob/master/composio-skills/instantly-automation/SKILL.mdView on GitHub Overview
Instantly Automation lets you create and manage campaigns, sending accounts, lead lists, and bulk imports, while tracking analytics—all through natural language commands via the Composio MCP integration. It supports multi-step sequences, scheduling, and A/B variants to optimize outreach. This makes cold email outreach repeatable, scalable, and data-driven.
How This Skill Works
You connect the Composio MCP server, authenticate your Instantly account, and issue natural language commands. The system translates those prompts into Instantly API calls (like INSTANTLY_LIST_ACCOUNTS and INSTANTLY_CREATE_CAMPAIGN) to manage accounts, build campaigns with sequencing and scheduling, import leads in bulk, and fetch performance metrics.
When to Use It
- Create and schedule a new Instantly campaign with a 3-step email sequence and specific sending times.
- Bulk import a list of leads and attach them to a campaign for automated outreach.
- Add, remove, or rotate sending accounts and adjust provider settings for a campaign.
- Update campaign settings such as daily sending limits, email gaps, or tracking options.
- Pull campaign analytics to review performance and optimize sequences and timing.
Quick Start
- Step 1: Connect the Composio MCP server at https://rube.app/mcp and authenticate your Instantly account.
- Step 2: Use a natural language command like 'Create an Instantly campaign named "Q1 Outreach" with a 3-step sequence and scheduling.'
- Step 3: Review results in the MCP console and iterate with updates or analytics requests (e.g., 'Show me campaign analytics for Q1 Outreach').
Best Practices
- Define clear, goal-oriented sequences with realistic delays and testing variants.
- Verify all sending accounts are active and have proper credentials before launching campaigns.
- Enable open and click tracking to accurately measure engagement and adjust content.
- Run small A/B tests on subject lines or body copy before scaling.
- Verify timezone and scheduling to avoid sending during off-hours or holidays.
Example Use Cases
- Create a campaign named 'Q1 Outreach' with a 3-step sequence and Monday–Friday 9am–5pm Central time.
- List all active sending accounts for the Instantly workspace and filter by provider.
- Bulk import 500 leads from CSV and attach them to an existing campaign.
- Increase a campaign's daily limit to 100 and enable open tracking.
- Retrieve performance analytics for the last 30 days and adjust the sequence delays.