ActiveCampaign

live CRMData

ActiveCampaign MCP Pack — email marketing + CRM (API v3).

6 tools
0ms auth
free tier 50 calls/day

Tools

list_contacts

List/search contacts (subscribers) in an ActiveCampaign account. Filter by exact email or a free-text search across name/email. Returns contacts with IDs, emails, names, and meta.total.

No parameters required.

Try it
get_contact

Get a single contact by ID. Returns email, name, phone, custom field values, and engagement details.

No parameters required.

Try it
list_deals

List CRM deals (sales pipeline opportunities). Returns deal IDs, titles, values, stages, and owners with meta.total.

No parameters required.

Try it
list_campaigns

List email campaigns with send/open/click metrics. Returns campaign IDs, names, status, send dates, and aggregate stats.

No parameters required.

Try it
list_lists

List contact lists. Returns list IDs, names, subscriber counts, and creation dates.

No parameters required.

Try it
list_automations

List marketing automations (workflows). Returns automation IDs, names, status, and enrolled-contact counts.

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/activecampaign/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/activecampaign/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"list_contacts","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("list_contacts", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("activecampaign mcp pack — email marketing + crm (api v3)");

Related packs

Other Pipeworx packs in the same categories (CRM, Data):