context-sync vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
context-sync by Intina47 | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 124 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsKnowledge Graph | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this month |
context-sync · Summary
Local persistent memory store for LLM applications providing project continuity through MCP tools.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
context-sync · Use cases
- Maintaining project context across multiple AI coding sessions
- Preserving important decisions and constraints for AI assistants
- Providing structured file exploration with git awareness
- Integrating with Notion for additional context lookup
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
context-sync · Install
Installation
Install globally:
npm install -g @context-sync/serverAuto-configuration runs during global install. After install, restart your AI tool.
Claude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"context-sync": {
"command": "context-sync",
"args": []
}
}
}VS Code (GitHub Copilot)
Context Sync should be detected automatically when installed globally.
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.