MCP Catalogs
Home

filesystem vs memory-journal-mcp

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

filesystem
by modelcontextprotocol
memory-journal-mcp
by neverinfamous
Stars★ 85,748★ 16
30d uses
Score7742
Official
Categories
File SystemDeveloper ToolsProductivity
Developer ToolsGitHubKnowledge Graph
LanguageTypeScriptTypeScript
Last committhis monththis month

filesystem · Summary

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

memory-journal-mcp · Summary

An MCP server providing AI memory with project detection, GitHub integration, and knowledge graphs for context-aware development.

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

memory-journal-mcp · Use cases

  • Bridging context between disconnected AI sessions in long-term projects
  • Integrating GitHub issues, PRs, and actions directly into AI workflows
  • Creating knowledge graphs and semantic search for codebase intelligence
  • Generating standups, retrospectives, and project reports from session data
  • Implementing team collaboration through shared memory and flag system

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.

memory-journal-mcp · Install

Installation

npm Package

npm install -g memory-journal-mcp

Docker

docker pull writenotenow/memory-journal-mcp

Claude Desktop Configuration

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "memory-journal": {
      "command": "npx",
      "args": ["-y", "memory-journal-mcp"]
    }
  }
}

Custom Tool Filtering

Set environment variable: MEMORY_JOURNAL_MCP_TOOL_FILTER=starter or use CLI --tool-filter essential

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