MCP Catalogs
Home

nest-mcp vs filesystem

Side-by-side comparison to help you pick between these two MCP servers.

nest-mcp
by btwld
filesystem
by modelcontextprotocol
Stars★ 7★ 85,748
30d uses
Score4177
Official
Categories
Developer ToolsAI / LLM ToolsOps & Infra
File SystemDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last committhis monththis month

nest-mcp · Summary

A NestJS-based framework for building MCP servers, clients and gateways with TypeScript decorators and dependency injection.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

nest-mcp · Use cases

  • Building MCP servers that expose tools, resources and prompts for AI clients
  • Creating MCP clients to integrate with existing MCP servers in NestJS applications
  • Aggregating multiple MCP servers behind a unified gateway with prefixes and policies

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

nest-mcp · Install

Install the appropriate package for your use case:

# Server — expose tools/resources to AI clients
npm install @nest-mcp/server @modelcontextprotocol/sdk zod@^4

# Client — call tools on a remote MCP server
npm install @nest-mcp/client @modelcontextprotocol/sdk zod@^4

# Gateway — aggregate multiple servers into one
npm install @nest-mcp/gateway @modelcontextprotocol/sdk zod@^4

# Install NestJS peer dependencies if not already installed
npm install @nestjs/common @nestjs/core reflect-metadata rxjs

For Claude Desktop, add this to your claude_desktop_config.json:

{
  "mcpServers": {
    "nest-mcp": {
      "command": "node",
      "args": ["path/to/your/server.js"]
    }
  }
}

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.

Comparison generated from public README + GitHub signals. Last updated automatically.