mcp-file-context-server vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
mcp-file-context-server by bsmi021 | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 36 | ★ 85,748 |
| 30d uses | — | — |
| Score | 43 | 77 |
| Official | — | ✓ |
| Categories | File SystemDeveloper ToolsAI / LLM Tools | File SystemDeveloper ToolsProductivity |
| Language | JavaScript | TypeScript |
| Last commit | 10 mo ago | this month |
mcp-file-context-server · Summary
A robust MCP server providing file system context to LLMs with advanced caching and code analysis capabilities.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
mcp-file-context-server · Use cases
- Code review and analysis in LLM-powered development environments
- Understanding file structure and dependencies of complex projects
- Real-time code monitoring with automatic cache updates
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-file-context-server · Install
Installing via Smithery
npx -y @smithery/cli install @bsmi021/mcp-file-context-server --client claudeManual Installation
npm install @modelcontextprotocol/file-context-serverClaude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"file-context": {
"command": "npx",
"args": ["file-context-server"]
}
}
}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.