filesystem vs ClawMem
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | ClawMem by yoloshii | |
|---|---|---|
| Stars | ★ 85,748 | ★ 168 |
| 30d uses | — | — |
| Score | 77 | 50 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsKnowledge Graph |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
ClawMem · Summary
On-device memory layer for AI agents with MCP server integration and hybrid RAG search.
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
ClawMem · Use cases
- Enhancing AI coding agents with persistent memory of project decisions and context
- Creating a unified memory layer across different AI agent platforms (Claude Code, OpenClaw, Hermes)
- Implementing retrieval-augmented generation for personal notes and documentation
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.
ClawMem · Install
Install via npm (recommended)
npm install -g clawmemInstall via Bun
bun add -g clawmemSetup for Claude Code (MCP integration)
clawmem bootstrap
clawmem setup hooks
clawmem setup mcpVerify installation
clawmem doctor