heimdall-mcp-server vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
heimdall-mcp-server by lcbcFoo | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 104 | ★ 85,748 |
| 30d uses | — | — |
| Score | 44 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsKnowledge Graph | File SystemDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 8 mo ago | this month |
heimdall-mcp-server · Summary
Heimdall MCP Server provides persistent memory for AI coding assistants by indexing documentation and git history.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
heimdall-mcp-server · Use cases
- Persistent memory for AI coding assistants across multiple sessions
- Retrieving relevant code solutions and architectural patterns from previous work
- Automatically updating AI knowledge base with code changes and commits
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
heimdall-mcp-server · Install
pip install heimdall-mcp
# Initialize project
heimdall project init
# For Claude Desktop, add to config.json:
{
"mcpServers": {
"heimdall": {
"command": "python",
"args": ["-m", "heimdall.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.