filesystem vs nowledge-mem
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | nowledge-mem by nowledge-co | |
|---|---|---|
| Stars | ★ 85,748 | ★ 181 |
| 30d uses | — | — |
| Score | 77 | 45 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | Knowledge GraphProductivityAI / LLM Tools |
| Language | TypeScript | — |
| Last commit | this month | 6 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
nowledge-mem · Summary
A local-first, graph-based memory manager that integrates with AI tools via MCP protocol.
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
nowledge-mem · Use cases
- Centralizing AI conversations across multiple platforms in one searchable location
- Automatically extracting and organizing insights from AI interactions into a knowledge graph
- Using MCP integration to capture conversation threads without manual intervention
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.
nowledge-mem · Install
Installation
- Download and install Nowledge Mem from [https://mem.nowledge.co/](https://mem.nowledge.co/)
- Configure MCP in your client (e.g., Claude Desktop):
{
"mcpServers": {
"nowledge-mem": {
"url": "http://localhost:14242/mcp",
"type": "streamableHttp",
"headers": {
"APP": "<MCP Client App Name here>"
}
}
}
}- Alternatively, use the Claude Code Plugin:
claude plugin marketplace add nowledge-co/community
claude plugin install nowledge-mem@nowledge-community