mcp-desktop vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-desktop by http4k | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 40 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsCommunication | Developer ToolsAI / LLM ToolsOther |
| Language | Kotlin | TypeScript |
| Last commit | this month | this month |
mcp-desktop · Summary
A robust Kotlin-based MCP desktop client supporting multiple transport protocols and authentication methods for connecting to MCP servers.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-desktop · Use cases
- Connecting desktop AI applications like Claude to remote MCP servers
- Bridging local development environments with hosted MCP services
- Providing secure authentication for MCP connections in enterprise environments
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-desktop · Install
Installation
Via Homebrew:
brew tap http4k/tap
brew install http4k-mcp-desktopVia GitHub Releases: Download the latest release from [GitHub Releases](https://github.com/http4k/http4k-mcp-desktop/releases).
Claude Desktop Configuration
Create a config.json file:
{
"command": "http4k-mcp-desktop",
"args": [
"--url",
"http://your-mcp-server:port/mcp",
"--transport",
"http-stream"
],
"env": {}
}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