filesystem vs code-assistant
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | code-assistant by stippi | |
|---|---|---|
| Stars | ★ 85,748 | ★ 163 |
| 30d uses | — | — |
| Score | 77 | 48 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | Rust |
| Last commit | this month | this month |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
code-assistant · Summary
Rust-based AI coding assistant with GUI, CLI, MCP and ACP modes offering autonomous code analysis and modification.
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
code-assistant · Use cases
- Automated code refactoring and optimization across multiple projects
- Real-time debugging and issue resolution through conversational interface
- Integration with IDEs like Zed via ACP protocol for enhanced coding assistance
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.
code-assistant · Install
Installation
# Install Rust tool chain via rustup
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
# Clone and build
git clone https://github.com/stippi/code-assistant
cd code-assistant
cargo build --releaseClaude Desktop Integration
Configure in Claude Desktop settings (**Developer** tab → **Edit Config**):
{
"mcpServers": {
"code-assistant": {
"command": "/path/to/code-assistant/target/release/code-assistant",
"args": ["server"],
"env": {
"SHELL": "/bin/zsh"
}
}
}
}