MCP Catalogs
Home

everything vs keeper.sh

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

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

everything · Summary

Official MCP test server exercising all protocol features for client builders.

keeper.sh · Summary

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

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

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

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything

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.