Elementor数据管理面板
一个简单的服务器,允许对 WordPress 页面的 Elementor 数据进行 CRUD 操作,需要 WordPress 身份验证凭据才能与目标网站交互。
MCP 服务配置
复制以下 JSON 到 OPClaw 或其他 MCP 客户端的配置文件中即可使用
{
"mcpServers": {
"Elementor MCP": {
"args": [
"/c",
"npx",
"-y",
"elementor-mcp"
],
"command": "cmd",
"env": {
"WP_APP_PASSWORD": "Appl icat ion_ Pass word",
"WP_APP_USER": "wordpress_username",
"WP_URL": "https://url.of.target.website"
}
}
}
}
服务介绍
Elementor MCP Server
我们推荐您使用 这个模板项目 来管理您的 Elementor 项目。
这是一个简单的用于 Elementor 的 MCP 服务器。它用于对给定页面的 Elementor 数据执行 CRUD 操作。
安装
在您的 mcp.json 文件中配置 MCP 服务器。请注意,环境变量是必需的。
- WP_URL: 目标网站的 URL。
- WP_APP_USER: 目标网站的用户名。注意:这是登录目标网站的用户名,而不是应用程序名称。
- WP_APP_PASSWORD: 目标网站的应用程序密码,保留空格。您可以在目标网站的 WordPress 仪表板中创建一个,请参阅 此页面的手动生成部分。
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"
}
}
}
}
许可证
该项目根据 MIT 许可证许可。