mcp-gopls vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-gopls by hloiseau | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 84 | ★ 85,748 |
| 30d uses | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Go | TypeScript |
| Last commit | 4 mo ago | this month |
mcp-gopls · Summary
MCP server for Go using gopls – LSP-powered analysis, tests, coverage, and tooling.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-gopls · Use cases
- AI assistants analyzing Go codebases with full LSP capabilities
- Automating Go test execution and coverage reporting
- Refactoring Go code with AI assistance using LSP tools
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-gopls · Install
# Install the server
go install github.com/hloiseau/mcp-gopls/v2/cmd/mcp-gopls@latest
# Configure Claude Desktop
{
"mcpServers": {
"mcp-gopls": {
"command": "mcp-gopls",
"args": ["--workspace", "/absolute/path/to/your/go/project"],
"env": {
"MCP_GOPLS_LOG_LEVEL": "info"
}
}
}
}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