mcp-expose-abilities vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-expose-abilities by bjornfix | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 25 | ★ 85,748 |
| 30d uses | — | — |
| Score | 44 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsProductivityWeb Scraping | Developer ToolsAI / LLM ToolsOther |
| Language | PHP | TypeScript |
| Last commit | 1 mo ago | this month |
mcp-expose-abilities · Summary
WordPress MCP server with 61+ core abilities and 12+ add-ons for content, SEO, and site management via AI agents.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-expose-abilities · Use cases
- Automate content fixes across multiple WordPress posts and pages
- Update menus, media, and plugin settings through AI commands
- Perform site maintenance tasks like SEO optimization and security checks
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
mcp-expose-abilities · Install
Installation
- Install and activate the required plugins:
- Abilities API: https://github.com/WordPress/abilities-api/releases/latest - MCP Adapter: https://github.com/WordPress/mcp-adapter
- Download the latest release from [Releases](https://github.com/bjornfix/mcp-expose-abilities/releases)
- Upload via WordPress Admin → Plugins → Add New → Upload Plugin
- Activate the plugin
- (Optional) Install add-on plugins for vendor-specific features
Claude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"wordpress": {
"command": "npx",
"args": ["@modelcontextprotocol/server-wordpress"],
"env": {
"WORDPRESS_URL": "https://your-site.com",
"WORDPRESS_USERNAME": "your-username",
"WORDPRESS_APPLICATION_PASSWORD": "your-app-password"
}
}
}
}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