MCP Catalogs
Home

filesystem vs vestige

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

filesystem
by modelcontextprotocol
vestige
by samvallad33
Stars★ 85,748★ 531
30d uses
Score7753
Official
Categories
File SystemDeveloper ToolsProductivity
AI / LLM ToolsDeveloper ToolsKnowledge Graph
LanguageTypeScriptRust
Last committhis monththis month

filesystem · Summary

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

vestige · Summary

Cognitive memory for AI agents with FSRS-6 spaced repetition, 29 brain modules, and a 3D visualization dashboard.

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

vestige · Use cases

  • Giving AI assistants persistent memory across sessions
  • Building sophisticated cognitive architectures for autonomous agents
  • Creating memory-augmented workflows in IDEs and development tools

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.

vestige · Install

Installation

Quick Start

  1. Download the binary for your platform from [GitHub releases](https://github.com/samvallad33/vestige/releases/latest)
  2. Make it executable: chmod +x vestige
  3. Run it: ./vestige

Integration with Claude Desktop

Add this to your claude_desktop_config.json:

{
  "mcpServers": {
    "vestige": {
      "command": "path/to/your/vestige",
      "args": []
    }
  }
}

Package Managers

  • Cargo: cargo install vestige
  • Homebrew: brew install vestige
Comparison generated from public README + GitHub signals. Last updated automatically.