mcp-documentation-server vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
mcp-documentation-server by andrea9293 | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 313 | ★ 85,748 |
| 30d uses | — | — |
| Score | 52 | 77 |
| Official | — | ✓ |
| Categories | File SystemSearchAI / LLM Tools | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 3 mo ago | this month |
mcp-documentation-server · Summary
A TypeScript MCP server for local document management with semantic search using Orama vector database and optional Gemini AI integration.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
mcp-documentation-server · Use cases
- Managing and searching technical documentation and API references
- Creating a knowledge base for internal company documentation
- Personal document organization with semantic search capabilities
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
mcp-documentation-server · Install
Installation
- Configure your MCP client (e.g., Claude Desktop, VS Code):
{
"mcpServers": {
"documentation": {
"command": "npx",
"args": [
"-y",
"@andrea9293/mcp-documentation-server"
],
"env": {
"MCP_BASE_DIR": "/path/to/workspace",
"GEMINI_API_KEY": "your-api-key-here",
"MCP_EMBEDDING_MODEL": "Xenova/all-MiniLM-L6-v2",
"START_WEB_UI": "true",
"WEB_PORT": "3080"
}
}
}
}- Install the package:
npm install -g @andrea9293/mcp-documentation-serverfilesystem · 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.