marketo-mcp-server
MCP server for Marketo marketing automation — 32 tools for leads, programs, emails, forms, smart lists, static lists, channels, landing pages, and bulk export. Auth via Client ID + Secret.
README
marketo-mcp-server
MCP server for Marketo — query leads, programs, emails, forms, lists, and bulk exports from Claude in plain English.
32 tools covering leads (lookup, batch upsert, activity log), programs (list, clone, members), emails (clone, send sample), forms (clone, approve), smart + static lists, channels, landing pages, and bulk export jobs. Built for Marketo admins and marketing ops who'd rather ask a question than click through the UI.
Why this exists
The Marketo Admin UI is slow, the REST API is fiddly (LaunchPoint, identity tokens, OAuth client-credentials, bulk export polling), and most teams don't have an internal tool layer over it. This server abstracts the auth, retries, and pagination so you can ask Claude things like "which forms are approved on the Contact Us LP?" or "clone the Q1 webinar program into the Q2 folder" and it just works.
No other open-source Marketo MCP server ships this depth (32 tools across 9 categories). Earned a Glama AAA quality rating.
Example prompts
Once installed, ask Claude things like:
- "Show all leads created this week from the Webinar source."
- "What programs are currently active and what channel is each one under?"
- "Find all forms on the Contact Us landing page and show me their fields."
- "Clone the Q1 Webinar program into the Q2 folder and name it Q2 Webinar."
- "Export all leads updated in the last 30 days to CSV — email, firstName, lastName, company."
- "Send a sample of email ID 1234 to test@example.com rendered with lead 5678's data."
Demo
🎥 Walkthrough video coming soon — exporting filtered leads from Marketo via Claude in under 60 seconds.
Features
| Category | What you can do |
|---|---|
| Leads | Get by ID or email, create/update in batch, delete, retrieve activity log |
| Programs | List, get by ID, clone, get members |
| Emails | List, get by ID, clone, send sample/test |
| Forms | List, get by ID, clone, approve |
| Smart Lists | List, get by ID with full filter definitions |
| Static Lists | Get members, add leads, remove leads |
| Channels | List, get by ID, create with progression statuses |
| Landing Pages | List, get by ID, clone |
| Bulk Export | Create job, enqueue, poll status, download file |
Prerequisites
- Node.js 20+
- A Marketo instance with REST API access
- A Marketo API-only user and LaunchPoint service with Client ID and Client Secret
Setup
1. Get your Marketo REST credentials
In Marketo Admin: Integration → LaunchPoint → create or select a service → copy Client ID and Secret. Your base URL is under Integration → Web Services (e.g. https://xxx-xxx-xxx.mktorest.com).
2. Set environment variables
MARKETO_CLIENT_ID=your_client_id
MARKETO_CLIENT_SECRET=your_client_secret
MARKETO_BASE_URL=https://xxx-xxx-xxx.mktorest.com
Usage
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"marketo": {
"command": "npx",
"args": ["marketo-mcp-server"],
"env": {
"MARKETO_CLIENT_ID": "your_client_id",
"MARKETO_CLIENT_SECRET": "your_client_secret",
"MARKETO_BASE_URL": "https://xxx-xxx-xxx.mktorest.com"
}
}
}
}
Claude Code
claude mcp add marketo-mcp-server npx marketo-mcp-server \
-e MARKETO_CLIENT_ID=your_client_id \
-e MARKETO_CLIENT_SECRET=your_client_secret \
-e MARKETO_BASE_URL=https://xxx-xxx-xxx.mktorest.com
Cursor
Add to .cursor/mcp.json in your project root (or ~/.cursor/mcp.json globally):
{
"mcpServers": {
"marketo": {
"command": "npx",
"args": ["marketo-mcp-server"],
"env": {
"MARKETO_CLIENT_ID": "your_client_id",
"MARKETO_CLIENT_SECRET": "your_client_secret",
"MARKETO_BASE_URL": "https://xxx-xxx-xxx.mktorest.com"
}
}
}
}
Docker
docker build -t marketo-mcp-server .
docker run -e MARKETO_CLIENT_ID=... -e MARKETO_CLIENT_SECRET=... -e MARKETO_BASE_URL=... marketo-mcp-server
Tools reference
Leads (5 tools)
| Tool | Description |
|---|---|
marketo_get_lead_by_id |
Get a single lead by Marketo lead ID |
marketo_get_lead_by_email |
Look up a lead by email address |
marketo_create_or_update_leads |
Batch upsert up to 300 leads |
marketo_delete_lead |
Permanently delete a lead by ID |
marketo_get_lead_activities |
Get activity log for a lead (filterable by activity type) |
Programs (4 tools)
| Tool | Description |
|---|---|
marketo_get_programs |
List programs with pagination and type/date filtering |
marketo_get_program_by_id |
Get full program metadata by ID |
marketo_clone_program |
Clone a program with all local assets into a target folder |
marketo_get_program_members |
Get leads enrolled in a program |
Emails (4 tools)
| Tool | Description |
|---|---|
marketo_get_emails |
List email assets with status filtering |
marketo_get_email_by_id |
Get full email metadata including HTML and module structure |
marketo_clone_email |
Clone an email asset to a target folder |
marketo_send_sample |
Send a test/sample email, optionally rendered with a lead's tokens |
Forms (4 tools)
| Tool | Description |
|---|---|
marketo_get_forms |
List forms with pagination and status filtering |
marketo_get_form_by_id |
Get form metadata including fields and visibility rules |
marketo_clone_form |
Clone a form to a target folder |
marketo_approve_form |
Approve a form draft to make it live |
Smart Lists (2 tools)
| Tool | Description |
|---|---|
marketo_get_smart_lists |
List smart lists with pagination |
marketo_get_smart_list_by_id |
Get a smart list with its full filter definitions |
Static Lists (3 tools)
| Tool | Description |
|---|---|
marketo_get_lead_lists |
Get leads that are members of a static list |
marketo_add_leads_to_list |
Add up to 300 leads to a static list |
marketo_remove_leads_from_list |
Remove up to 300 leads from a static list |
Channels (3 tools)
| Tool | Description |
|---|---|
marketo_get_channels |
List all channels and their progression statuses |
marketo_get_channel_by_id |
Get a single channel by ID |
marketo_create_channel |
Create a channel with custom progression statuses |
Landing Pages (3 tools)
| Tool | Description |
|---|---|
marketo_get_landing_pages |
List landing pages with status filtering |
marketo_get_landing_page_by_id |
Get full LP metadata including template and form embeds |
marketo_clone_landing_page |
Clone a landing page to a target folder |
Bulk Export (4 tools)
| Tool | Description |
|---|---|
marketo_create_bulk_export_leads |
Create a bulk lead export job with field list and date filter |
marketo_enqueue_bulk_export |
Enqueue a created export job for processing |
marketo_get_bulk_export_status |
Poll the status of a running export job |
marketo_get_bulk_export_file |
Download the file from a completed export job |
Authentication
Marketo uses OAuth 2.0 client credentials. The server obtains and caches a token automatically, refreshing it 60 seconds before expiry. No manual token management required.
License
MIT — see LICENSE.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。