cio_list_campaigns

Pack: customer-io · Endpoint: https://gateway.pipeworx.io/customer-io/mcp

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/cio_list_campaigns for the schema, then POST the same URL with its arguments for the data.

Return Customer.io lifecycle campaigns with IDs, names, state, trigger configuration, actions, tags, and timestamps. Answers which automations exist and whether they are running, drafted, or stopped.

Example call

Arguments

{
  "_apiKey": "your-customer-io-app-api-key",
  "_region": "us"
}

curl

curl -X POST https://gateway.pipeworx.io/customer-io/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"cio_list_campaigns","arguments":{"_apiKey":"your-customer-io-app-api-key","_region":"us"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('cio_list_campaigns', {
  "_apiKey": "your-customer-io-app-api-key",
  "_region": "us"
});

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "customer-io": {
      "url": "https://gateway.pipeworx.io/customer-io/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 23, 2026