filesystem vs MCP-Nest
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | MCP-Nest by rekog-labs | |
|---|---|---|
| Stars | ★ 85,748 | ★ 647 |
| 30d uses | — | — |
| Score | 77 | 54 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOps & Infra |
| Language | TypeScript | TypeScript |
| Last commit | this month | 2 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
MCP-Nest · Summary
A NestJS module for creating MCP servers with tools, resources, and prompts using dependency injection.
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-Nest · Use cases
- Building enterprise-grade AI tool servers within existing NestJS applications
- Creating MCP servers with custom authentication and authorization mechanisms
- Developing reusable prompt templates and parameterized resources for AI interactions
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.
MCP-Nest · Install
npm install @rekog/mcp-nest @modelcontextprotocol/sdk zod@^4For optional built-in authorization with TypeORM:
npm install @nestjs/typeorm typeorm**Claude Desktop Configuration**: Add to claude_desktop_config.json:
{
"mcpServers": {
"mcp-nest": {
"command": "npx",
"args": ["@rekog/mcp-nest", "stdio"]
}
}
}