code-context-engine vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
code-context-engine by elara-labs | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 120 | ★ 85,748 |
| 30d uses | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | File SystemDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | this month | this month |
code-context-engine · Summary
Local MCP server that indexes codebases to reduce AI token consumption by 94% through semantic search and compression.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
code-context-engine · Use cases
- Reduce Claude Code and other AI coding assistant costs by up to 94%
- Maintain cross-session memory and context for AI coding agents
- Keep code private with local indexing instead of cloud solutions
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-context-engine · Install
# Install with uv
uv tool install code-context-engine
# Or with pipx
pipx install code-context-engine
# Initialize your project
cd /path/to/your/project
cce init # or: cce init --agent allFor Claude Desktop integration, add to Claude Desktop config:
{
"mcpServers": {
"code-context-engine": {
"command": "uv",
"args": ["run", "code-context-engine", "mcp"]
}
}
}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.