everything vs mcp-go-sdk
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | mcp-go-sdk by SetiabudiResearch | |
|---|---|---|
| Stars | ★ 85,748 | ★ 7 |
| 30d uses | — | — |
| Score | 77 | 32 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | Go |
| Last commit | this month | 15 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-go-sdk · Summary
Go SDK for implementing MCP servers with tool execution, resource access, and prompt handling.
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-go-sdk · Use cases
- Building MCP servers in Go for CLI applications
- Creating file system access tools through MCP
- Developing web-based AI applications with WebSocket transport
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-everythingmcp-go-sdk · Install
go get github.com/SetiabudiResearch/mcp-go-sdkFor Claude Desktop integration:
{
"mcpServers": {
"mcp-go-example": {
"command": "go",
"args": ["run", "/path/to/your/server.go"]
}
}
}