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 | — | — |
| Score | 77 | 53 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | ProductivityDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 1 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-everythingkeeper.sh · Install
Keeper.sh can be installed in multiple ways:
**Self-hosted installation:**
- Clone the repository:
git clone https://github.com/ridafkih/keeper.sh - Install dependencies:
bun install - Set up environment variables as documented in the README
- 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"]
}
}
}