agent-lsp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
agent-lsp by blackwell-systems | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 26 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM Tools | File SystemDeveloper ToolsProductivity |
| 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.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
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
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
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.)
filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.