Elementor MCP Server

Agency-grade MCP for WordPress Elementor — multi-site, safe edits, templates, versions.

Local serverstdioGo

What is the Elementor MCP server?

If you already use Elementor, the elementor mcp server is the piece that lets your assistant work with it directly. Agency-grade MCP for WordPress Elementor — multi-site, safe edits, templates, versions.

What the server does

Built for agencies running many client sites on Elementor / Elementor Pro who want Claude (or any MCP client) to drive the toil — without breaking pages.

  • Real backup before every edit — (postmeta via WP-CLI when SSH available, JSON file fallback — never silently lost)
  • Two-call confirmation — for any destructive op (TTL 60s)
  • JSON validation + auto-rollback — if an edit produces invalid Elementor data
  • 3-level CSS flush fallback — (REST → wp-cli native → option/meta delete → re-save)
  • Global widget awareness — — preflight check warns if a page references shared widgets
  • WP-CLI escape hatch — for everything the REST API can't do safely

Installation

The server ships on npm as elementor-mcp-agent, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • Pages — The Pages tool exposed by this server
  • Templates — The Templates tool exposed by this server
  • Visual — The Visual tool exposed by this server
  • Fleet — The Fleet tool exposed by this server

Credentials and setup notes

Configuration is passed through the environment: ELEMENTOR_MCP_SITES. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Worth knowing first

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Where it fits

This sits in the browser automation group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Elementor's toolset — Pages, Templates, Visual and 1 more — is a fair guide to whether it matches your workflow. It is maintained by Mogacode-ma; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Elementor's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Available tools

ToolWhat it does
PagesThe Pages tool exposed by this server.
TemplatesThe Templates tool exposed by this server.
VisualThe Visual tool exposed by this server.
FleetThe Fleet tool exposed by this server.

How to install the Elementor MCP server

{
  "mcpServers": {
    "elementor": {
      "command": "npx",
      "args": ["-y", "elementor-mcp-agent"],
      "env": {
        "ELEMENTOR_MCP_SITES": "[{\"id\":\"acme\",\"url\":\"https://acme.com\",\"username\":\"admin\",\"application_password\":\"...\"}]"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
ELEMENTOR_MCP_SITESConfiguration value read at startup.Optional

Example prompts to try

  • Use Elementor to Pages.
  • Use Elementor to Templates.
  • Use Elementor to Visual.

Frequently asked questions

It connects Elementor to MCP-compatible AI assistants such as Claude and Cursor, exposing 4 tools (Pages, Templates, Visual, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Elementor directly.