everything vs vibe
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | vibe by mondaycom | |
|---|---|---|
| Stars | ★ 85,748 | ★ 645 |
| 30d uses | — | — |
| Score | 77 | 51 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
vibe · Summary
MCP server for monday.com's Vibe Design System that helps discover component APIs and usage examples.
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
vibe · Use cases
- Discovering Vibe component APIs and properties
- Getting usage examples for specific components
- Finding appropriate icons for your application
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-everythingvibe · Install
To install the Vibe MCP server, follow the instructions in the [@vibe/mcp](https://github.com/mondaycom/vibe/blob/master/packages/mcp/README.md) documentation.
For Claude Desktop, add to your claude_desktop_config.json:
{
"mcpServers": {
"vibe": {
"command": "node",
"args": ["path/to/@vibe/mcp/dist/index.js"]
}
}
}