filesystem vs elementor-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
filesystem by modelcontextprotocol | elementor-mcp by msrbuilds | |
|---|---|---|
| Stars | ★ 85,748 | ★ 318 |
| 30天用量 | — | — |
| 综合分 | 77 | 52 |
| 官方 | ✓ | — |
| 分类 | 本地文件系统开发者工具效率工具 | 开发者工具电商效率工具 |
| 实现语言 | TypeScript | PHP |
| 最近提交 | 本月 | 本月 |
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
elementor-mcp · 概述
WordPress 插件,为 Elementor 添加 97 个 MCP 工具,支持 AI 驱动的页面设计管理。
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
elementor-mcp · 使用场景
- AI 辅助使用 Elementor 创建 WordPress 网站
- 程序化页面设计和内容管理
- 自动化模板生成以保持品牌一致性
- 跨多个网站的批量页面更新
filesystem · 安装
安装
使用 NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}使用 Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code 扩展
点击 README 中的安装按钮直接在 VS Code 中安装。
elementor-mcp · 安装
安装
- 安装并激活 [Elementor](https://wordpress.org/plugins/elementor/) (版本 3.20+)。
- 安装并激活 [WordPress MCP Adapter](https://github.com/WordPress/mcp-adapter) 插件。
- 从 [发布页面](https://github.com/msrbuilds/elementor-mcp/releases/) 下载最新的 zip 文件。
- 在 WordPress 中,转到 **插件 > 添加新 > 上传插件** 并上传下载的 zip 文件。
- 通过 WordPress 中的 **插件** 菜单激活插件。
- 转到 **设置 > MCP Tools for Elementor** 配置工具并查看连接信息。
Claude Desktop 配置
添加到 claude_desktop_config.json:
{
"mcpServers": {
"elementor-mcp": {
"type": "http",
"url": "https://your-site.com/wp-json/mcp/elementor-mcp-server",
"headers": {
"Authorization": "Basic BASE64_ENCODED_CREDENTIALS"
}
}
}
}