Back to Guides

How to Connect Marketo to MCP for AI Agents

Integrate Adobe Marketo Engage with AI agents via MCP. Manage leads, campaigns, and marketing automation through the AnythingMCP dashboard.

Marketo Marketing Automation with AI Agents

Adobe Marketo Engage is a leading marketing automation platform. Connecting Marketo to MCP enables AI agents to manage leads, query campaign performance, and automate marketing workflows.

Step-by-Step Guide

Step 1: Deploy AnythingMCP

git clone https://github.com/HelpCode-ai/anythingmcp.git
cd anythingmcp && docker compose up -d

Step 2: Create a REST Connector

Open the AnythingMCP dashboard at http://localhost:3000 and create a new REST connector. Set the base URL to your Marketo REST API endpoint (e.g., https://your-instance.mktorest.com/rest).

Step 3: Configure Authentication

In the connector settings, configure OAuth 2.0 Client Credentials with your Marketo LaunchPoint API credentials.

Step 4: Import and Customize Tools

Configure endpoints for leads, campaigns, programs, and activities in the dashboard.

Step 5: Test and Connect

{
  "mcpServers": {
    "marketo": {
      "url": "http://localhost:4000/mcp"
    }
  }
}

AI Agent Use Cases

  • "Show me all leads from the last webinar campaign"
  • "How many MQLs were generated this month?"
  • "Create a lead for john@example.com, source: Website"
  • "What's the open rate for the last email campaign?"
  • "List all active nurture programs"

Best Practices

  1. LaunchPoint API service — Create a dedicated API-only service in Marketo
  2. Daily API limits — Marketo enforces daily API call limits by tier
  3. Bulk API — Use bulk endpoints for large data operations
  4. Custom fields — Map Marketo custom fields to tool parameters

Next Steps