BifrostMCP vs everything
Side-by-side comparison to help you pick between these two MCP servers.
BifrostMCP by biegehydra | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 212 | ★ 85,748 |
| 30d uses | — | — |
| Score | 49 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 2 mo ago | this month |
BifrostMCP · Summary
VSCode extension exposing language server features to AI tools via MCP protocol.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
BifrostMCP · Use cases
- Enable AI coding assistants to perform advanced code navigation and analysis
- Provide AI access to refactoring suggestions and quick fixes in VSCode
- Support cross-project symbol search and type information retrieval
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
BifrostMCP · Install
Installation
- Install [the extension](https://marketplace.visualstudio.com/items?itemName=ConnorHallman.bifrost-mcp) from the VS Code marketplace
- Install any language-specific extensions you need for your development
- Open your project in VS Code
Configuration
The extension will automatically start an MCP server when activated. Configure your MCP-compatible AI assistant to connect to:
- SSE endpoint:
http://localhost:8008/sse - Message endpoint:
http://localhost:8008/message
Claude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"Bifrost": {
"url": "http://localhost:8008/sse"
}
}
}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