Skip to content
VS Code

elementor mcp agent for VS Code

io.github.mogacode-ma/elementor-mcp-agent

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

client:VS Code transport:stdio runtime:npm

Install elementor mcp agent in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "elementor-mcp-sites",
      "description": "ELEMENTOR_MCP_SITES",
      "password": true
    },
    {
      "type": "promptString",
      "id": "elementor-mcp-config-path",
      "description": "ELEMENTOR_MCP_CONFIG_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "elementor-mcp-default-site-id",
      "description": "ELEMENTOR_MCP_DEFAULT_SITE_ID",
      "password": true
    }
  ],
  "servers": {
    "elementor-mcp-agent": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "elementor-mcp-agent"
      ],
      "env": {
        "ELEMENTOR_MCP_SITES": "${input:elementor-mcp-sites}",
        "ELEMENTOR_MCP_CONFIG_PATH": "${input:elementor-mcp-config-path}",
        "ELEMENTOR_MCP_DEFAULT_SITE_ID": "${input:elementor-mcp-default-site-id}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

elementor mcp agent in other clients