filesystem vs Matryoshka
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | Matryoshka by yogthos | |
|---|---|---|
| Stars | ★ 85,748 | ★ 134 |
| 30d uses | — | — |
| Score | 77 | 48 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsFile System |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
Matryoshka · Summary
MCP server for analyzing documents larger than context windows using recursive language models and symbolic commands.
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
Matryoshka · Use cases
- Analyzing large log files or error reports beyond context limits
- Processing and querying multi-document collections without chunking
- Building memory-aware agents that reference large context efficiently
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.
Matryoshka · Install
Install from npm:
pnpm add -g matryoshka-rlmOr run without installing:
npx matryoshka-rlm "How many ERROR entries are there?" ./server.logFor Claude Desktop integration, create claude_desktop_config.json with:
{
"mcpServers": {
"matryoshka": {
"command": "npx",
"args": ["matryoshka-rlm", "mcp"]
}
}
}