MCP Catalogs
Home

minima vs filesystem

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

minima
by dmayboroda
filesystem
by modelcontextprotocol
Stars★ 1,048★ 85,748
30d uses
Score5277
Official
Categories
AI / LLM ToolsKnowledge GraphProductivity
File SystemDeveloper ToolsProductivity
LanguagePythonTypeScript
Last commit4 mo agothis month

minima · Summary

Minima is an on-premises RAG system with MCP integration for secure local document querying.

filesystem · Summary

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

minima · Use cases

  • Secure document retrieval for enterprises with strict data privacy requirements
  • Personal knowledge base with local document search capabilities
  • Integration with Claude Desktop via MCP for enhanced AI assistants

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

minima · Install

Docker Installation

  1. Clone the repository and navigate to it
  2. Create a .env file using .env.sample as template
  3. Set required variables (LOCAL_FILES_PATH, EMBEDDING_MODEL_ID, EMBEDDING_SIZE)
  4. Run: docker compose -f docker-compose-mcp.yml --env-file .env up --build

Claude Desktop Integration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "minima": {
      "command": "uv",
      "args": [
        "--directory",
        "/path_to_cloned_minima_project/mcp-server",
        "run",
        "minima"
      ]
    }
  }
}

GitHub Copilot Integration

Create or update .vscode/mcp.json with:

{
  "servers": {
    "minima": {
      "type": "stdio",
      "command": "path_to_cloned_minima_project/run_in_copilot.sh",
      "args": [
        "path_to_cloned_minima_project"
      ]
    }
  }
}

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.

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