Skip to content
VS Code

ActiveCampaign for VS Code

io.github.ohneben/activecampaign-mcp

ActiveCampaign API: ~325 endpoints (v3, SMS, WhatsApp, Segments) as safety-categorized MCP tools.

client:VS Code transport:stdio runtime:oci

Install ActiveCampaign in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "mcp-transport",
      "description": "MCP_TRANSPORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "activecampaign-api-url",
      "description": "ACTIVECAMPAIGN_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "activecampaign-api-token",
      "description": "ACTIVECAMPAIGN_API_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mcp-auth-token",
      "description": "MCP_AUTH_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "activecampaign-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/ohneben/activecampaign-mcp:1.1.1"
      ],
      "env": {
        "MCP_TRANSPORT": "${input:mcp-transport}",
        "ACTIVECAMPAIGN_API_URL": "${input:activecampaign-api-url}",
        "ACTIVECAMPAIGN_API_TOKEN": "${input:activecampaign-api-token}",
        "MCP_AUTH_TOKEN": "${input:mcp-auth-token}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

ActiveCampaign in other clients