MCP Catalogs
Home

everything vs claude-mcp-scheduler

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

everything
by modelcontextprotocol
claude-mcp-scheduler
by tonybentley
Stars★ 85,748★ 16
30d uses
Score7739
Official
Categories
Developer ToolsAI / LLM ToolsOther
AI / LLM ToolsProductivityDeveloper Tools
LanguageTypeScriptTypeScript
Last committhis month11 mo ago

everything · Summary

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

claude-mcp-scheduler · Summary

A cron-based scheduler that uses Claude API with MCP servers for tool calls in scheduled AI tasks.

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

claude-mcp-scheduler · Use cases

  • Running automated AI reports on a schedule
  • Processing data files at regular intervals
  • Integrating AI capabilities into CI/CD pipelines

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

claude-mcp-scheduler · Install

Installation

  1. Clone the repository:
git clone https://github.com/tonybentley/claude-mcp-scheduler.git
cd claude-mcp-scheduler
  1. Install dependencies:
npm install
  1. Create a .env file with your Anthropic API key:
ANTHROPIC_API_KEY=your-api-key-here
  1. Copy the example configuration:
cp config/config.example.json config/config.json

To use with Claude Desktop, add the following to your Claude Desktop configuration:

{
  "mcpServers": {
    "claude-mcp-scheduler": {
      "command": "node",
      "args": ["path/to/claude-mcp-scheduler/dist/index.js"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.