Amazing-Marvin-MCP vs everything
Side-by-side comparison to help you pick between these two MCP servers.
Amazing-Marvin-MCP by bgheneti | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 34 | ★ 85,748 |
| 30d uses | — | — |
| Score | 41 | 77 |
| Official | — | ✓ |
| Categories | ProductivityAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 8 mo ago | this month |
Amazing-Marvin-MCP · Summary
MCP server connecting Amazing Marvin productivity app with AI assistants for task and project management.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
Amazing-Marvin-MCP · Use cases
- Ask AI assistant for daily planning recommendations based on actual tasks and priorities
- Get project insights and progress tracking directly from Amazing Marvin data
- Have AI create, mark as complete, or organize tasks in Amazing Marvin through natural language
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
Amazing-Marvin-MCP · Install
Installation
Option 1: Smithery (Easiest)
npx -y @smithery/cli install @bgheneti/amazing-marvin-mcp --client claudePaste the API key when prompted
Option 2: Pip + Manual Config
pip install amazing-marvin-mcpClaude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"amazing-marvin": {
"command": "python",
"args": ["-m", "amazing_marvin_mcp"],
"env": {
"AMAZING_MARVIN_API_KEY": "your-api-key-here"
}
}
}
}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