claudeus-wp-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
claudeus-wp-mcp by deus-h | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 142 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsProductivityOther | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 2 mo ago | this month |
claudeus-wp-mcp · Summary
A comprehensive MCP server with 145 WordPress management tools for content, media, users, and site operations.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
claudeus-wp-mcp · Use cases
- Automate WordPress content creation and management workflows
- Monitor and diagnose site health issues proactively
- Integrate WordPress operations with Claude AI for intelligent site 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
claudeus-wp-mcp · Install
Installation
Via NPM (Recommended):
npm install -g claudeus-wp-mcpFor Development:
git clone https://github.com/deus-h/claudeus-wp-mcp
cd claudeus-wp-mcp
pnpm install
pnpm buildConfiguration
- Create a
wp-sites.jsonfile with your WordPress sites configuration:
{
"default_test": {
"URL": "https://your-site.com",
"USER": "admin",
"PASS": "your-application-password",
"authType": "basic"
}
}- Add to Claude Desktop configuration:
{
"mcpServers": {
"claudeus-wp-mcp": {
"command": "npx",
"args": ["-y", "claudeus-wp-mcp"],
"env": {
"WP_SITES_PATH": "/absolute/path/to/your/wp-sites.json"
}
}
}
}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-everything