MCP Catalogs
Home

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
Score5077
Official
Categories
AI / LLM ToolsProductivityFile System
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit3 mo agothis 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/daymon

Windows — 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:

  1. Install Daymon and open it
  2. Daymon auto-configures Claude Desktop on first launch

For Claude Code integration:

  1. Install Daymon and open it
  2. Daymon auto-configures Claude Code if ~/.claude.json exists

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
Comparison generated from public README + GitHub signals. Last updated automatically.