filesystem vs openrouter-deep-research-mcp
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | openrouter-deep-research-mcp by wheattoast11 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 50 |
| 30d uses | — | — |
| Score | 77 | 47 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | AI / LLM ToolsKnowledge GraphDeveloper Tools |
| Language | TypeScript | JavaScript |
| Last commit | this month | 2 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
openrouter-deep-research-mcp · Summary
Multi-agent research MCP server with async agents, semantic search, and persistent knowledge base.
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
openrouter-deep-research-mcp · Use cases
- Deep research with multiple specialized agents
- Knowledge management and semantic search
- AI-powered content synthesis and analysis
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.
openrouter-deep-research-mcp · Install
Install with npm:
npx @terminals-tech/openrouter-agents --stdioFor Claude Desktop, add to config file:
{
"mcpServers": {
"openrouter-agents": {
"command": "npx",
"args": ["@terminals-tech/openrouter-agents"],
"env": {
"OPENROUTER_API_KEY": "sk-or-..."
}
}
}
}