scrumboy vs everything
Side-by-side comparison to help you pick between these two MCP servers.
scrumboy by markrai | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 241 | ★ 85,748 |
| 30d uses | — | — |
| Score | 49 | 77 |
| Official | — | ✓ |
| Categories | ProductivityDeveloper ToolsAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Go | TypeScript |
| Last commit | this month | this month |
scrumboy · Summary
Scrumboy is a self-hosted Kanban project management tool with MCP support for AI agents.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
scrumboy · Use cases
- AI agents creating and managing project tasks through MCP
- Automated project status reporting for CI/CD pipelines
- Voice-controlled task management via integrated voice commands
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
scrumboy · Install
Install Scrumboy
- **Docker (Recommended)**
``bash docker compose up --build ``
- **From source**
``bash go run ./cmd/scrumboy ``
- **MCP Configuration for Claude Desktop**
Add to your Claude Desktop config.json: ``json { "mcpServers": { "scrumboy": { "command": "curl", "args": ["-X", "POST", "http://localhost:8080/mcp/rpc"], "env": { "SCRUMBOY_TOKEN": "your_token_here" } } } } ` Generate your token via: `bash curl -b cookies.txt -X POST http://localhost:8080/api/me/tokens \ -H "Content-Type: application/json" \ -H "X-Scrumboy: 1" \ -d '{"name":"cli"}' ``
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