filesystem vs deep-research
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | deep-research by u14app | |
|---|---|---|
| Stars | ★ 85,748 | ★ 4,583 |
| 30d uses | — | — |
| Score | 77 | 56 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | AI / LLM ToolsKnowledge GraphProductivity |
| Language | TypeScript | JavaScript |
| Last commit | this month | 1 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
deep-research · Summary
An MCP server for deep research using multiple LLMs with web search capabilities and local processing.
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
deep-research · Use cases
- Academic research with LLM assistance
- Market analysis and competitive intelligence
- Content creation and knowledge synthesis
- Technical documentation generation
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.
deep-research · Install
Installation
Docker Deployment
docker pull xiangfa/deep-research:latest
docker run -d --name deep-research -p 3333:3000 xiangfa/deep-researchLocal Development
git clone https://github.com/u14app/deep-research.git
cd deep-research
pnpm install
# Copy env.tpl to .env and configure your API keys
pnpm devClaude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"deep-research": {
"command": "node",
"args": ["path/to/deep-research/server.js"]
}
}
}