Marketo MCP Server
The Marketo MCP Server is a tool for managing Marketo forms via the Marketo API. It provides the following capabilities:
List Forms: Retrieve Marketo forms with pagination and filtering by status (draft or approved)
Get Form by ID: Fetch details of a specific form using its unique ID
Clone Forms: Create copies of existing forms with new names, descriptions, and destination folders
Approve Forms: Change form status to approved with optional audit comments
Handle Authentication: Manage Marketo API authentication and token refresh automatically
Error Handling: Provide solutions for common errors including authentication issues and rate limiting
Integration: Configure easily with Claude Desktop for seamless operation
Used for configuration management, storing sensitive Marketo API credentials and instance URL in environment variables.
Provides a Node.js runtime environment for the MCP server, with compatibility for v14 or higher required for server operation.
The MCP server is implemented in TypeScript, enabling type-safe interactions with the Marketo API.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Marketo MCP Serverlist all draft forms"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Marketo MCP Server
A Model Context Protocol server for Adobe Marketo Engage. Give Claude Desktop, Cursor, and other MCP-compatible clients direct, authenticated access to the Marketo REST API — read and write forms, smart lists, channels, leads, activities, and lists with natural language.
Why
Marketing ops, growth, and RevOps teams spend hours clicking through the Marketo UI to clone a form, approve assets, look up a lead, or audit a smart list. The Marketo MCP Server wires those same REST API operations into an LLM agent, so you can say:
"Clone form 1234 into the Q2 Webinars folder and approve it."
"Show me recent activities for lead alex@example.com."
"Create a new email channel called 'Lifecycle Nurture'."
…and the model executes the actual Marketo API calls on your behalf.
Related MCP server: Xero MCP Server
Table of Contents
Features
Form management — list, inspect, clone, and approve forms via the Marketo Asset API
Smart list operations — list and inspect smart lists
Channel CRUD — create, read, update, and delete channels
Lead database — get leads by ID or email, create or update leads in bulk, delete leads
Activity & change logs — fetch activities and field changes for any lead
List membership — add or remove leads from static lists
Automatic auth — OAuth 2.0 client-credentials flow with token caching & refresh
Stdio transport — works out of the box with Claude Desktop, Cursor, and any MCP client that speaks stdio
Quick start
Option A — Smithery (recommended)
npx -y @smithery/cli install @alexleventer/marketo-mcp --client claudeFollow the prompts to paste in your Marketo base URL, client ID, and client secret.
Option B — npx (no install)
Add the following to your MCP client's config (e.g. claude_desktop_config.json):
{
"mcpServers": {
"marketo": {
"command": "npx",
"args": ["-y", "marketo-mcp"],
"env": {
"MARKETO_BASE_URL": "https://123-ABC-456.mktorest.com/rest",
"MARKETO_CLIENT_ID": "your-client-id",
"MARKETO_CLIENT_SECRET": "your-client-secret"
}
}
}
}Option C — from source
git clone https://github.com/alexleventer/marketo-mcp.git
cd marketo-mcp
npm install
npm run buildCopy the config block printed by the build into your MCP client.
Prerequisites
Node.js 18 or higher
Marketo API credentials (client ID & client secret from a LaunchPoint service)
A Marketo instance with REST API access enabled
An MCP-compatible client — Claude Desktop, Cursor, Cline, or any other
Obtaining Marketo API credentials
Log into Marketo admin
Admin → Integration → LaunchPoint
New → New Service, set service type to Custom and pick a display name (e.g.
MCP Server)Assign an API-only user with the permissions you need (Read-Only Assets, Read-Write Lead, etc.)
Save the Client ID and Client Secret
Your base URL is under Admin → Integration → Web Services → REST API Endpoint (strip
/rest/v1/*— keep justhttps://<munchkin>.mktorest.com/rest)
Configuration
All configuration is via environment variables:
Variable | Required | Description |
| yes | Your REST endpoint, e.g. |
| yes | LaunchPoint service client ID |
| yes | LaunchPoint service client secret |
Copy .env.example to .env for local development.
Available tools
Tool | Description | |
| List forms (filter by `status: draft | approved |
| Get a single form by ID | |
| Clone a form into a destination folder | |
| Approve a draft form | |
| List smart lists | |
| Get a smart list by ID | |
| List channels | |
| Get a channel by ID | |
| Create a new channel | |
| Update an existing channel | |
| Delete a channel | |
| Get a lead by numeric ID | |
| Get a lead by email address | |
| Bulk create or update leads | |
| Delete a lead | |
| Fetch activities for a lead (paginated) | |
| Fetch field-change history for a lead | |
| Get lists that a lead belongs to | |
| Add leads to a static list | |
| Remove leads from a static list |
Each tool accepts typed arguments validated with zod and returns the raw Marketo JSON response. See the Adobe Marketo REST API reference for field-level details.
Usage with Claude Desktop
Install Claude Desktop
Open the config at
~/Library/Application Support/Claude/claude_desktop_config.json(macOS) or%APPDATA%\Claude\claude_desktop_config.json(Windows)Paste the
mcpServersblock from Quick startRestart Claude Desktop
Usage with Cursor / other MCP clients
Any MCP client that supports stdio servers will work. Point it at the built binary:
{
"mcpServers": {
"marketo": {
"command": "npx",
"args": ["-y", "marketo-mcp"],
"env": { "MARKETO_BASE_URL": "...", "MARKETO_CLIENT_ID": "...", "MARKETO_CLIENT_SECRET": "..." }
}
}
}Troubleshooting
Symptom | Likely cause |
| Wrong client ID/secret, or REST API not enabled for the LaunchPoint user |
| The API-only user lacks the role for that endpoint (e.g. Asset API vs Lead Database API) |
| Marketo caps at 100 calls / 20s / instance — batch calls and add delays |
| The folder/form/lead ID doesn't exist or is in a different workspace |
Auth works, but requests hang | Double-check |
You can inspect tool calls locally with the MCP inspector:
npm run inspectorDevelopment
src/
├── index.ts # MCP server + all tool registrations
├── auth.ts # OAuth token manager (caches until expiry)
└── constants.ts # Env var bindingsnpm run dev # Run with ts-node + .env
npm run typecheck # Type-check without emit
npm run lint # ESLint
npm run format # Prettier
npm run build # Compile to build/Contributing
Issues and pull requests welcome at github.com/alexleventer/marketo-mcp.
Fork the repo
Create a feature branch
npm run lint && npm run typecheckOpen a PR
License
ISC — see LICENSE.
Keywords: marketo mcp server, marketo model context protocol, marketo claude, marketo ai, adobe marketo mcp, marketo api claude desktop, marketo automation llm, marketo engage mcp
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Appeared in Searches
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/alexleventer/marketo-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server