xclaude-plugin vs everything
Side-by-side comparison to help you pick between these two MCP servers.
xclaude-plugin by conorluddy | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 152 | ★ 85,748 |
| 30d uses | — | — |
| Score | 49 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 3 mo ago | this month |
xclaude-plugin · Summary
Modular iOS development automation with 8 workflow-specific MCP servers for Claude Code, enabling focused token usage and efficient workflows.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
xclaude-plugin · Use cases
- Build validation and error checking using the lightweight xc-build MCP
- Rapid development loop combining xc-build for compilation and xc-launch for app installation
- UI testing workflows using xc-interact for accessibility tree queries without rebuilding
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
xclaude-plugin · Install
Installation
From GitHub (Recommended)
/plugin marketplace add conorluddy/xclaude-plugin
/plugin install xclaude-pluginFrom Local Development
/plugin marketplace add /path/to/xclaude-plugin
/plugin install xclaude-pluginClaude Desktop configuration:
{
"mcpServers": {
"xc-build": {
"command": "node",
"args": ["${CLAUDE_PLUGIN_ROOT}/mcp-servers/xc-build/dist/index.js"]
},
"xc-launch": {
"command": "node",
"args": ["${CLAUDE_PLUGIN_ROOT}/mcp-servers/xc-launch/dist/index.js"]
}
}
}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