MCP Catalogs
Home

mcp-for-argocd vs everything

Side-by-side comparison to help you pick between these two MCP servers.

mcp-for-argocd
by argoproj-labs
everything
by modelcontextprotocol
Stars★ 464★ 85,748
30d uses
Score5377
Official
Categories
Developer ToolsOps & InfraAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit1 mo agothis month

mcp-for-argocd · Summary

MCP server enabling AI assistants to interact with Argo CD applications through natural language.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

mcp-for-argocd · Use cases

  • AI-assisted Argo CD application management through natural language
  • Integration of Argo CD operations into AI-powered development workflows
  • Automated infrastructure management using conversational AI

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

mcp-for-argocd · Install

Installation

Prerequisites

  • Node.js (v18 or higher recommended)
  • Argo CD instance with API access
  • Argo CD API token

Usage with Claude Desktop

  1. Create a claude_desktop_config.json configuration file:
{
  "mcpServers": {
    "argocd-mcp": {
      "command": "npx",
      "args": [
        "argocd-mcp@latest",
        "stdio"
      ],
      "env": {
        "ARGOCD_BASE_URL": "<argocd_url>",
        "ARGOCD_API_TOKEN": "<argocd_token>"
      }
    }
  }
}
  1. Configure Claude Desktop to use this configuration file in settings.

Usage with VSCode

  1. Create a .vscode/mcp.json file in your project:
{
  "servers": {
    "argocd-mcp-stdio": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "argocd-mcp@latest",
        "stdio"
      ],
      "env": {
        "ARGOCD_BASE_URL": "<argocd_url>",
        "ARGOCD_API_TOKEN": "<argocd_token>"
      }
    }
  }
}
  1. Start a conversation with an AI assistant in VS Code that supports MCP.

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.