everything vs gsd-task-manager
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | gsd-task-manager by vscarpenter | |
|---|---|---|
| Stars | ★ 85,748 | ★ 18 |
| 30d uses | — | — |
| Score | 77 | 43 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | ProductivityAI / LLM ToolsBrowser Automation |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
gsd-task-manager · Summary
A privacy-first Eisenhower Matrix task manager with MCP server integration for AI-powered task management.
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
gsd-task-manager · Use cases
- Personal productivity management with AI assistance for task prioritization
- Team task coordination with Eisenhower Matrix methodology
- Offline-first task management with optional cloud synchronization
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-everythinggsd-task-manager · Install
Installation
Via npm
npm install gsd-mcp-serverClaude Desktop Configuration
Add to Claude Desktop's claude_desktop_config.json:
{
"mcpServers": {
"gsd": {
"command": "npx",
"args": ["gsd-mcp-server"]
}
}
}