filesystem vs docmole
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | docmole by Vigtu | |
|---|---|---|
| Stars | ★ 85,748 | ★ 18 |
| 30d uses | — | — |
| Score | 77 | 43 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsSearch |
| Language | TypeScript | TypeScript |
| Last commit | this month | 1 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
docmole · Summary
An MCP server that lets you query any documentation site with AI, supporting both local RAG and Mintlify-powered sites.
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
docmole · Use cases
- Search documentation directly from AI assistants like Claude or Cursor
- Build custom documentation search solutions for internal documentation
- Enable AI assistants to provide accurate, up-to-date information from documentation sources
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.
docmole · Install
Installation
Using bunx (no install needed):
bunx docmole --helpOr install globally:
bun install -g docmoleLocal RAG Mode
# One-time setup
bunx docmole setup --url https://docs.example.com --id my-docs
# Start the MCP server
bunx docmole serve --project my-docsMintlify Mode (zero setup)
bunx docmole -p agno-v2Claude Desktop Configuration
{
"mcpServers": {
"my-docs": {
"command": "bunx",
"args": ["docmole", "serve", "--project", "my-docs"]
},
"mintlify-docs": {
"command": "bunx",
"args": ["docmole", "-p", "agno-v2"]
}
}
}