MCP Catalogs
Home

filesystem vs narsil-mcp

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

filesystem
by modelcontextprotocol
narsil-mcp
by postrv
Stars★ 85,748★ 151
30d uses
Score7751
Official
Categories
File SystemDeveloper ToolsProductivity
Developer ToolsAI / LLM ToolsSecurity
LanguageTypeScriptRust
Last committhis monththis month

filesystem · Summary

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

narsil-mcp · Summary

Rust MCP server providing 90+ code intelligence tools across 32 languages with neural search and security analysis.

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

narsil-mcp · Use cases

  • Code analysis and refactoring in large codebases
  • Security auditing and vulnerability scanning
  • Neural code search and similarity matching

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.

narsil-mcp · Install

Installation

**macOS / Linux (Homebrew):**

brew tap postrv/narsil
brew install narsil-mcp

**Windows (Scoop):**

scoop bucket add narsil https://github.com/postrv/scoop-narsil
scoop install narsil-mcp

**Rust/Cargo (all platforms):**

cargo install narsil-mcp

**Node.js/npm (all platforms):**

npm install -g narsil-mcp

Claude Desktop Configuration

{
  "mcpServers": {
    "narsil-mcp": {
      "command": "narsil-mcp",
      "args": ["--repos", "~/projects"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.