Want a free personalized recommendation for your software stack?Get yours
That Marketing Buddy
Home/MCP/LanderLab
LanderLab

LanderLab: No MCP yet

No verified MCP server as of 2026-07-03. LanderLab relies on its REST API for agent workflows.

NONE MCP✗ unreachablePublic APIOpenAPI spec
MCP status verified 2026-06-07Agent-readiness 8/10
Data from Buddy's database, auto-rechecked weekly

What is the LanderLab MCP server?

LanderLab is a small landing-page builder aimed at performance marketers, and it ships a GA MCP server. That combination caught me off guard. Plenty of much bigger landing-page and CRO tools have no agent story at all, so finding 30+ MCP tools on a tool this size is a genuine surprise. The server lives at https://api.landerlab.dev/api/v2/mcp and runs over HTTP with Server-Sent Events, so an agent can hold a live connection while it works through a task.

The tool set splits cleanly into read-only and mutation. Read-only covers things like workspaces_list, landers_list, analytics_stats, leads_list, and variants_list, so an agent can survey your account before it touches anything. Mutation covers lander_publish, editor_save, variants_set_weights, leads_update, and integration_create, which means Claude can actually ship changes, not just report on them. For a performance marketer who lives in A/B tests, that mutation set is the interesting part.

The honest read: a GA MCP server here is ahead of where I expected a tool of this size to be. It is not the deepest catalog in martech, but it covers the loop that matters for landing pages (list, edit, publish, measure, adjust weights) and it works from inside the agent clients people actually run.

For the rest of the picture see the LanderLab review, full pricing breakdown, .

What LanderLab exposes

LanderLab ships an official MCP server at landerlab.io/mcp, giving AI agents direct access to my landing page workflows. I also expose a REST API documented at landerlab.io/api, with an OpenAPI spec published at landerlab.io/openapi.json for tooling and client generation. Between the MCP server and the REST endpoints, I can automate page creation, template selection, and campaign asset management from external systems. Authentication details aren't published in the public docs I pull from, so confirm the method (OAuth or API key) before wiring production integrations. There's no Zapier or Make connector listed, no native ChatGPT or Claude integration, and webhook availability isn't documented; plan integrations around the MCP server and REST API directly.

Access, auth, and limits

Auth is one header: X-API-Key, with keys that start with ll_live_. No OAuth dance, no token refresh, no separate MCP credential to manage. You generate the key once and the same key works across REST and MCP. The server endpoint is https://api.landerlab.dev/api/v2/mcp, served over HTTP with Server-Sent Events so the agent keeps a live stream open while it runs a task.

The 30+ tools split into two groups, and that split is the part I like. Read-only tools (workspaces_list, landers_list, analytics_stats, leads_list, variants_list) let an agent survey the account, pull stats, and read leads without any risk of changing live pages. Mutation tools (lander_publish, editor_save, variants_set_weights, leads_update, integration_create) let it actually ship: save editor changes, publish a lander, reweight a split test, update a lead, wire an integration. The clean read/write boundary makes it easy to start an agent in a safe read-only posture and grant write access once you trust the workflow.

Where it works and what to build

The client list is broad for a tool this size: Claude (Code, Desktop, and claude.ai), Cursor, Windsurf, Manus, ChatGPT, Gemini CLI, and any MCP-compatible client. Manus and Gemini CLI showing up by name is a nice signal that the server was tested beyond the usual Claude-plus-Cursor pair. Worth knowing up front: Grok, Perplexity, and Copilot chat clients cannot connect, and there is no LanderLab CLI, so the surface is agent clients only.

Workflows that pay off once it is wired: tell an agent to clone the winning variant of a split test and shift traffic weights toward it (variants_list reads the current split, variants_set_weights writes the new one), so you reweight without opening the dashboard. Or have Claude pull analytics_stats across your landers, find the underperformer, edit the headline through editor_save, and publish with lander_publish in one pass. Or run a lead sweep: leads_list to pull recent submissions, leads_update to tag or score them, integration_create to push them onward. The read-then-write pattern means you can keep an agent read-only while you watch it work, then let it ship once you trust it.

Which AI clients can use LanderLab MCP?

Not every AI assistant supports MCP natively. Per-client picture for LanderLab:

ClientSupportNotes
Claude (Desktop/Web)Native MCPConnect via the LanderLab MCP endpoint; X-API-Key header auth with an ll_live_ key.
Claude CodeNative MCP
ChatGPTNative MCP
CursorNative MCP
WindsurfNative MCPListed among supported clients alongside Manus and Gemini CLI.

Does LanderLab MCP cost extra?

Verify on docs

LanderLab has no verified MCP server.

  • No published MCP integration was detected at the last check.
  • For now, agent workflows depend on the REST API or third-party automation.

LanderLab subscription pricing

PlanMonthlyAnnual / mo
Free
Launch$129$69
Grow$219$119
Scale$429$239
Enterprise$1,199$639

Source: landerlab.io/pricing. Verified 2026-06-07.

LanderLab also publishes a REST API

LanderLab publishes an API, but per-tier gating wasn't extracted automatically.

Auth method
SDK languages
OpenAPI spec
Webhooks
Structured outputs
See LanderLab API page

What you can do with LanderLab from an AI agent

Three shapes of agent workflow. Pick the row that matches how you actually use Claude / Cursor / Codex day to day.

INDIE / SOLO

Skip the dashboard, ask Claude

  • "What changed this week?" answered in seconds
  • Quick one-off questions without leaving the editor
  • Pipe LanderLab data into your personal notes / docs without writing a script
Effort: 30 seconds — paste the config, restart Claude
AGENCY

Run client analysis at agent speed

  • Hand the MCP server to your team — every consultant can ask Claude about any client's LanderLab account
  • Multi-account workflows without context-switching the LanderLab UI
  • Reports you'd normally spend hours on, done before standup
Effort: An afternoon — set up auth per client
IN-HOUSE TEAM

Production agent workflows

  • Embed in your internal Codex / Cursor agents that triage LanderLab data daily
  • Combine with other MCP servers in a multi-step agent chain
  • Constrain agents to read-only roles to keep production LanderLab safe
Effort: Days — security review + role config

Limits and gotchas

  • ⚠ Server unreachable on last check. May be down, moved, or auth-gated.
  • Fallback: the REST API works for any flow the MCP server doesn't cover.
  • OpenAPI spec is published — easy to validate which endpoints the MCP server actually exposes vs the full API surface.
  • Rate limits: MCP calls count against your underlying LanderLab API quota. Burst usage from a curious agent can drain a daily allowance fast.
  • No MCP available — until LanderLab ships one, use the REST API directly.
8/10

Agent-readiness verdict

Score: 8/10 on MCP-readiness. LanderLab ships a GA MCP server with 30+ tools covering the full landing-page loop (list, edit, publish, measure, adjust traffic weights), authenticated with a simple X-API-Key header, and it connects from Claude, Cursor, Windsurf, Manus, ChatGPT, and Gemini CLI. For a tool this small, that is well ahead of much larger landing-page and CRO competitors. The score is not a 10 because there is no CLI, and several chat clients (Grok, Perplexity, Copilot) cannot connect, so the agent surface is narrower than the catalog of tools would suggest.

Weak agent-fit without MCP or SDK support. LanderLab publishes an OpenAPI spec and maintains public API docs, but offers no MCP server, language SDKs, or structured output support needed for seamless Claude/Cursor integration. Native agent connectors would be required to make this workflow-viable.

Public API with docsOpenAPI/Swagger spec published

Scored 2026-06-07 by Joonas (TMB).

LanderLab MCP & API FAQ

Does LanderLab have a public API?+
Yes — public REST API at landerlab.io/api.
Does LanderLab publish an OpenAPI / Swagger spec?+
Yes — landerlab.io/openapi.json. Auto-generate typed clients from it.
Does LanderLab plan to add an MCP server?+
Not announced as of the last check. For now, the REST API is the agent-friendly path.

Sources

Data verified by Joonas on the dates shown. MCP server status auto-rechecked weekly.

Joonas Rotko
Joonas RotkoAuthor & Founder of That Marketing Buddy

10+ years in digital marketing. I review marketing software for AI-stack fit: real pricing, MCP and API support, and how cleanly each tool drops into an AI agent workflow, cross-checked against verified data and real user feedback.

LanderLab

Try LanderLab
WEEKLY NEWSLETTER

The marketing tools worth your money, scored for AI agent readiness

Every week I score the tools for MCP, API, and agent-readiness, then email you the ones that actually deliver, what plugs into Claude and Cursor, the pricing changes, and what to skip. No fluff, no daily spam.

Join for free. One email a week, unsubscribe anytime.