everything vs elementor-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | elementor-mcp by msrbuilds | |
|---|---|---|
| Stars | ★ 85,748 | ★ 318 |
| 30d uses | — | — |
| Score | 77 | 52 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsE-commerceProductivity |
| Language | TypeScript | PHP |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
elementor-mcp · Summary
WordPress plugin that extends Elementor with 97 MCP tools for AI-powered page design management.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
elementor-mcp · Use cases
- AI-assisted WordPress website creation using Elementor
- Programmatic page design and content management
- Automated template generation for consistent branding
- Batch page updates across multiple sites
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingelementor-mcp · Install
Installation
- Install and activate [Elementor](https://wordpress.org/plugins/elementor/) (version 3.20+).
- Install and activate the [WordPress MCP Adapter](https://github.com/WordPress/mcp-adapter) plugin.
- Download the latest release zip from the [Releases page](https://github.com/msrbuilds/elementor-mcp/releases/).
- In WordPress, go to **Plugins > Add New > Upload Plugin** and upload the downloaded zip file.
- Activate the plugin through the **Plugins** menu in WordPress.
- Go to **Settings > MCP Tools for Elementor** to configure tools and view connection info.
Claude Desktop Configuration
Add to 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"
}
}
}
}