docfork vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
docfork by docfork | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 479 | ★ 85,748 |
| 30d uses | — | — |
| Score | 53 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsSearch | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
docfork · Summary
Docfork provides AI coding agents with real-time documentation access through MCP servers to prevent API hallucinations.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
docfork · Use cases
- AI coding assistants accessing up-to-date documentation for third-party libraries
- Development teams maintaining consistent API documentation across their organization
- Searching through complex documentation without leaving the coding environment
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
docfork · Install
Installation
- **Automatic Setup (Recommended)**
``bash npx dgrep setup --cursor # For Cursor npx dgrep setup --claude # For Claude Code npx dgrep setup --opencode # For OpenCode ``
- **Manual Configuration for Claude Desktop**
Add to your Claude Desktop config: ``json { "mcpServers": { "docfork": { "url": "https://mcp.docfork.com/mcp", "headers": { "DOCFORK_API_KEY": "YOUR_API_KEY" } } } } ``
- **For Other MCP Clients**
Follow the setup guides for your specific client at [docfork.com/docs/mcp/setup](https://docfork.com/docs/mcp/setup)
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.