everything vs gospy
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | gospy by monsterxx03 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 96 |
| 30d uses | — | — |
| Score | 77 | 44 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsMonitoringOps & Infra |
| Language | TypeScript | Go |
| Last commit | this month | 9 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
gospy · Summary
Go process inspector MCP server with goroutine analysis, memory statistics, and binary information via terminal UI or API.
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
gospy · Use cases
- Debugging Go applications by inspecting goroutine states and memory usage
- Monitoring production Go services for performance issues and resource leaks
- Analyzing runtime characteristics of third-party Go binaries without source code
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-everythinggospy · Install
Installation
go install github.com/monsterxx03/gospy@latestClaude Desktop Configuration
Add to Claude Desktop config.json:
{
"mcpServers": {
"gospy": {
"command": "sudo",
"args": ["gospy", "serve", "--enable-mcp", "--port", "8974"],
"env": {}
}
}
}