Zikkaron vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
Zikkaron by amanhij | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 59 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsKnowledge Graph | File SystemDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | this month |
Zikkaron · Summary
Biologically-inspired persistent memory engine for Claude Code with 26 cognitive subsystems, local SQLite storage, and advanced memory recall capabilities.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
Zikkaron · Use cases
- Long-term code projects where context needs to persist across sessions
- Complex debugging sessions where Claude needs to remember previous approaches
- Multi-session development where architectural decisions must be preserved
- Teams working on shared codebases with consistent implementation patterns
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
Zikkaron · Install
pip install zikkaronAdd to your Claude Code config:
{
"mcpServers": {
"zikkaron": {
"command": "zikkaron"
}
}
}Tell Claude how to use it by adding instructions to your global ~/.claude/CLAUDE.md:
## Memory
- On every new session, call `recall` with the current project name
- Before starting any task, call `get_project_context` for the current directory
- After completing significant work, call `remember` to store decisions and outcomesfilesystem · 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.