MCP Catalogs
Home

filesystem vs archiledger

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

filesystem
by modelcontextprotocol
archiledger
by thecookiezen
Stars★ 85,748★ 5
30d uses
Score7740
Official
Categories
File SystemDeveloper ToolsProductivity
AI / LLM ToolsKnowledge GraphDeveloper Tools
LanguageTypeScriptJava
Last committhis month1 mo ago

filesystem · Summary

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

archiledger · Summary

Archiledger is a graph-based MCP memory server with vector search capabilities for persistent AI knowledge storage.

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

archiledger · Use cases

  • Personal AI assistant with persistent memory across conversations
  • Codebase analysis and documentation into structured knowledge graphs
  • AI applications requiring semantic search and relationship discovery

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.

archiledger · Install

Installation

Prerequisites

  • Java 21 or higher
  • Maven

Building

mvn clean package

Running Low-Level MCP Server

Transient (In-Memory):

java -jar mcp/target/archiledger-server-1.0.0-SNAPSHOT.jar

Persistent:

java -Dladybugdb.data-path=./archiledger.lbdb 
     -jar mcp/target/archiledger-server-1.0.0-SNAPSHOT.jar

Claude Desktop Configuration

Add to Claude Desktop config.json:

{
  "mcpServers": {
    "archiledger": {
      "command": "java",
      "args": ["-jar", "mcp/target/archiledger-server-1.0.0-SNAPSHOT.jar"],
      "env": {
        "LADYBUGDB_DATA_PATH": "./archiledger.lbdb"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.