Elementor MCP Server

Elementor MCP Server

site icon
2025.04.23 0
JavaScriptWordPress集成Elementor管理其它
Elementor-MCP是一个简单的MCP服务器,用于对Elementor页面数据进行CRUD操作。它需要配置目标WordPress网站的URL、用户名和应用密码来运行。
View on GitHub

Overview

基本能力

产品定位

Elementor-MCP是一个专为Elementor设计的MCP服务器,主要用于管理和操作Elementor页面数据。

核心功能

  • 对Elementor页面数据执行CRUD(创建、读取、更新、删除)操作
  • 通过环境变量配置目标WordPress网站信息

适用场景

  • 需要自动化管理Elementor页面数据的场景
  • 需要与WordPress网站集成的Elementor项目

工具列表

  • npx:用于运行Elementor-MCP的工具

常见问题解答

使用教程

使用依赖

  • 需要安装Node.js和npx

安装教程

  1. mcp.json文件中配置MCP服务器
  2. 设置必要的环境变量:
  3. WP_URL:目标网站的URL
  4. WP_APP_USER:目标网站的用户名
  5. WP_APP_PASSWORD:目标网站的应用密码

MacOS/Linux安装命令

{
  "mcpServers": {
    "Elementor MCP": {
      "command": "npx",
      "args": ["-y", "elementor-mcp"],
      "env": {
        "WP_URL": "https://url.of.target.website",
        "WP_APP_USER": "wordpress_username",
        "WP_APP_PASSWORD": "Appl icat ion_ Pass word"
      }
    }
  }
}

Windows安装命令

{
  "mcpServers": {
    "Elementor MCP": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "elementor-mcp"],
      "env": {
        "WP_URL": "https://url.of.target.website",
        "WP_APP_USER": "wordpress_username",
        "WP_APP_PASSWORD": "Appl icat ion_ Pass word"
      }
    }
  }
}

调试方式

  • 确保环境变量配置正确
  • 检查目标WordPress网站的可访问性
  • 验证应用密码是否正确

许可证

该项目遵循 MIT 开源许可条款。