MCP Catalogs
Home

filesystem vs claude-historian-mcp

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

filesystem
by modelcontextprotocol
claude-historian-mcp
by Vvkmnn
Stars★ 85,748★ 179
30d uses
Score7750
Official
Categories
File SystemDeveloper ToolsProductivity
Developer ToolsAI / LLM ToolsSearch
LanguageTypeScriptTypeScript
Last committhis monththis month

filesystem · Summary

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

claude-historian-mcp · Summary

An MCP server that allows Claude Code to search and retrieve conversation history with sophisticated search capabilities and zero dependencies.

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

claude-historian-mcp · Use cases

  • Finding past solutions to similar problems encountered in previous conversations
  • Debugging by searching historical error patterns and their fixes
  • Understanding project evolution through file change history analysis

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.

claude-historian-mcp · Install

Installation

**From shell:**

claude mcp add claude-historian-mcp -- npx claude-historian-mcp

**From inside Claude** (restart required):

Add this to our global mcp config: npx claude-historian-mcp

Install this mcp: https://github.com/Vvkmnn/claude-historian-mcp

**For manually configurable MCP clients** (Cursor, Windsurf, etc.):

{
  "mcpServers": {
    "claude-historian-mcp": {
      "command": "npx",
      "args": ["claude-historian-mcp"],
      "env": {}
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.