Vibe-Coder-MCP vs everything
Side-by-side comparison to help you pick between these two MCP servers.
Vibe-Coder-MCP by freshtechbro | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 99 | ★ 85,748 |
| 30d uses | — | — |
| Score | 44 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 9 mo ago | this month |
Vibe-Coder-MCP · Summary
Vibe-Coder-MCP is a TypeScript-based MCP server that extends AI assistants with specialized software development tools.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
Vibe-Coder-MCP · Use cases
- Enhancing AI coding assistants with specialized software development tools
- Automating codebase analysis and documentation generation
- Creating product requirements documents and user stories from prompts
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-Coder-MCP · Install
Installation
**Global Installation (Recommended)**
npm install -g vibe-coder-mcp@latest**Quick Run with npx**
npx vibe-coder-mcp@latest**MCP Client Integration (Claude Desktop)** Add to your claude_desktop_config.json:
{
"mcpServers": {
"vibe-coder-mcp": {
"command": "npx",
"args": ["vibe-coder-mcp"],
"env": {
"OPENROUTER_API_KEY": "your-openrouter-api-key",
"VIBE_PROJECT_ROOT": "/path/to/your/project"
}
}
}
}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