MCP Catalogs
Home

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
Score4177
Official
Categories
ProductivityAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit8 mo agothis 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 claude

Paste the API key when prompted

Option 2: Pip + Manual Config

pip install amazing-marvin-mcp
Claude 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
Comparison generated from public README + GitHub signals. Last updated automatically.