Browse your connected apps
Your assistant sees all your connected apps with their credentials — ready to reference when writing integration code.
MCP server
Connect your coding assistant to EmailFunnelAI so it can create connected projects, fetch webhook specs, inspect forms, and verify setup from your editor.
Capabilities
Seven actions covering Connected Projects and Embeddable Forms. Every call is team-scoped, rate-limited, and audited.
Your assistant sees all your connected apps with their credentials — ready to reference when writing integration code.
Ask your assistant to set up a new project. It creates the connection, retrieves the API key and signing secret, and hands them to you — all without touching the dashboard.
Need the endpoint URL, auth header format, or payload schema? Your assistant fetches the full integration spec so it can write the code correctly.
Send a live test through the pipeline and get a tracking ID back. Your assistant can confirm end-to-end before you ship.
Browse your published forms with embed URLs, status, and display settings — so your assistant knows exactly which form to embed.
Ask your assistant to embed a form anywhere on your site. It returns the iframe snippet — you just say where it goes.
Building a custom integration? Your assistant can pull every field's type, label, and validation rules to write the submission handler correctly.
Every action is scoped to your team, rate-limited, and audited. Revoke access with one click. Nothing touches other teams or billing.
See it in action
Connect a Next.js app and embed a signup form — from inside your editor, without opening the dashboard once.
Start your integration✓ Created project My Next.js App
pk_live_7f3k••••sk_9x2m•••• — save now, shown once// route.ts
const res = await fetch(process.env.EFA_WEBHOOK_URL, {
method: 'POST',
headers: { 'X-Project-Key': process.env.EFA_API_KEY },
body: JSON.stringify({ email, name }),
}); Found Early Access form. Paste into PricingPage:
<iframe
src="https://app.emailfunnel.ai/f/embed/ea-uuid"
width="100%" style="border:none;min-height:400px"
/> FAQ
Setup
MCP access is included on paid plans. See pricing →
{
"mcpServers": {
"emailfunnelai": {
"type": "http",
"url": "https://app.emailfunnel.ai/mcp/account",
"headers": {
"Authorization": "Bearer <YOUR_TOKEN>"
}
}
}
} {
"mcpServers": {
"emailfunnelai": {
"command": "npx",
"args": [
"-y", "mcp-remote",
"https://app.emailfunnel.ai/mcp/account",
"--header", "Authorization: Bearer <YOUR_TOKEN>"
]
}
}
}