everything vs mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | mcp by sockeon | |
|---|---|---|
| Stars | ★ 85,748 | ★ 2 |
| 30d uses | — | — |
| Score | 77 | 35 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsOps & InfraAI / LLM Tools |
| Language | TypeScript | PHP |
| Last commit | this month | 1 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp · Summary
PHP-based MCP server providing modular tools, resources, and prompts for Sockeon framework development.
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 · Use cases
- Generating scaffolded Sockeon components like controllers and examples
- Configuring server settings such as rate limiting, CORS, and reverse proxy
- Setting up real-time features like WebSocket handlers and room management
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-everythingmcp · Install
Installation
- Clone the repository:
git clone https://github.com/sockeon/mcp.git
cd mcp- Install dependencies:
composer install- Run the MCP server:
php public/server.phpClaude Desktop Configuration
Add this to your Claude Desktop config.json:
{
"mcpServers": {
"sockeon": {
"command": "php",
"args": ["public/server.php"]
}
}
}