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 | — | — |
| Score | 77 | 39 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsProductivityDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 11 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-everythingclaude-mcp-scheduler · Install
Installation
- Clone the repository:
git clone https://github.com/tonybentley/claude-mcp-scheduler.git
cd claude-mcp-scheduler- Install dependencies:
npm install- Create a
.envfile with your Anthropic API key:
ANTHROPIC_API_KEY=your-api-key-here- Copy the example configuration:
cp config/config.example.json config/config.jsonTo 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"]
}
}
}