MCP Catalogs
Home

filesystem vs keeper.sh

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

filesystem
by modelcontextprotocol
keeper.sh
by ridafkih
Stars★ 85,748★ 1,067
30d uses
Score7753
Official
Categories
File SystemDeveloper ToolsProductivity
ProductivityDeveloper ToolsAI / LLM Tools
LanguageTypeScriptTypeScript
Last committhis month1 mo ago

filesystem · Summary

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

keeper.sh · Summary

Keeper.sh is a calendar sync tool with an MCP server for AI agents to access and control multiple calendars.

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

keeper.sh · Use cases

  • AI assistants accessing and managing multiple calendar sources through a single interface
  • Automating calendar synchronization across personal and work calendars
  • Building AI-powered scheduling agents that can check availability across all calendars

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.

keeper.sh · Install

Keeper.sh can be installed in multiple ways:

**Self-hosted installation:**

  1. Clone the repository: git clone https://github.com/ridafkih/keeper.sh
  2. Install dependencies: bun install
  3. Set up environment variables as documented in the README
  4. Run with Docker Compose: bun dev

**Cloud hosted:** Visit [keeper.sh](https://keeper.sh) to sign up for the cloud-hosted version.

**MCP server configuration for Claude Desktop:** Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "keeper": {
      "command": "npx",
      "args": ["@keeper/mcp-server"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.