Server data from the Official MCP Registry
MCP server for Marketo — 32 tools for leads, programs, emails, forms, lists, and bulk export.
MCP server for Marketo — 32 tools for leads, programs, emails, forms, lists, and bulk export.
This is a well-structured MCP server for Marketo API integration with proper OAuth 2.0 authentication, input validation via Zod, and appropriate error handling. Credentials are correctly managed via environment variables rather than hardcoded. Permissions align with the server's purpose (API queries, lead/program/asset management). Minor code quality observations around broad exception handling do not materially impact security. Supply chain analysis found 8 known vulnerabilities in dependencies (0 critical, 6 high severity). Package verification found 1 issue.
7 files analyzed · 13 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: MARKETO_CLIENT_ID
Environment variable: MARKETO_CLIENT_SECRET
Environment variable: MARKETO_BASE_URL
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-zleventer-marketo-mcp-server": {
"env": {
"MARKETO_BASE_URL": "your-marketo-base-url-here",
"MARKETO_CLIENT_ID": "your-marketo-client-id-here",
"MARKETO_CLIENT_SECRET": "your-marketo-client-secret-here"
},
"args": [
"-y",
"marketo-mcp-server"
],
"command": "npx"
}
}
}From the project's GitHub README.
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.
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.
Once installed, ask Claude things like:
🎥 Walkthrough video coming soon — exporting filtered leads from Marketo via Claude in under 60 seconds.
| 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 |
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).
MARKETO_CLIENT_ID=your_client_id
MARKETO_CLIENT_SECRET=your_client_secret
MARKETO_BASE_URL=https://xxx-xxx-xxx.mktorest.com
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 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
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 build -t marketo-mcp-server .
docker run -e MARKETO_CLIENT_ID=... -e MARKETO_CLIENT_SECRET=... -e MARKETO_BASE_URL=... marketo-mcp-server
| 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) |
| 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 |
| 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 |
| 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 |
| 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 |
| 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 |
| 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 |
| 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 |
| 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 |
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.
MIT — see LICENSE.
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.