daymon vs everything
Side-by-side comparison to help you pick between these two MCP servers.
daymon by daymonio | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 373 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsProductivityFile System | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 3 mo ago | this month |
daymon · Summary
Daymon is an MCP server that extends Claude with persistent memory, scheduled tasks, and file watching capabilities.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
daymon · Use cases
- Schedule daily reports or summaries to run automatically at specific times
- Create persistent memories about projects, preferences, or important details
- Set up file watchers to automatically organize or process new files
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
daymon · Install
Installation
macOS — Homebrew (recommended)
brew install daymonio/daymon/daymonWindows — Download
Download the latest .exe installer from [GitHub Releases](https://github.com/daymonio/daymon/releases/latest).
Linux — Download
Download the .deb or .AppImage from [GitHub Releases](https://github.com/daymonio/daymon/releases/latest).
For Claude Desktop integration:
- Install Daymon and open it
- Daymon auto-configures Claude Desktop on first launch
For Claude Code integration:
- Install Daymon and open it
- Daymon auto-configures Claude Code if
~/.claude.jsonexists
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