agent-lsp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
agent-lsp by blackwell-systems | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 26 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Go | TypeScript |
| Last commit | this month | this month |
agent-lsp · Summary
Stateful MCP server bridging language servers with AI agents, offering type-aware navigation, blast-radius analysis, and pre-verified edits across 30+ languages.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
agent-lsp · Use cases
- Large-scale refactoring with blast-radius analysis to understand impact before making changes
- Type-safe navigation across codebases to find implementations, references, and call hierarchies
- Speculative editing to preview changes in memory before writing to disk
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
agent-lsp · Install
Install agent-lsp as a Go binary:
go install github.com/blackwell-systems/agent-lsp@latestFor Claude Desktop, add to .mcp.json:
{
"mcpServers": {
"agent-lsp": {
"command": "agent-lsp",
"args": ["stdio"]
}
}
}Docker images are available for each language (go, typescript, python, etc.)
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