everything vs go-modelcontextprotocol
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | go-modelcontextprotocol by Warashi | |
|---|---|---|
| Stars | ★ 85,748 | ★ 3 |
| 30d uses | — | — |
| Score | 77 | 35 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsCommunication |
| Language | TypeScript | Go |
| Last commit | this month | 5 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
go-modelcontextprotocol · Summary
A pure Go implementation of the Model Context Protocol without third-party dependencies, supporting tools, resources, and multiple transport mechanisms.
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
go-modelcontextprotocol · Use cases
- Building Go-based MCP servers for AI applications
- Creating AI/LLM backends with custom tools and resources
- Implementing MCP services in containerized or cloud environments
- Developing AI applications that require low-latency communication
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-everythinggo-modelcontextprotocol · Install
go get github.com/Warashi/go-modelcontextprotocolFor Claude Desktop, add to claude_desktop_config.json:
{
"mcpServers": {
"go-mcp": {
"command": "go",
"args": ["run", "github.com/Warashi/go-modelcontextprotocol"]
}
}
}