Description

The Argo CD MCP server enables AI assistants to interact with Argo CD applications through natural language. Developed by Akuity (the creators of Argo Project), this TypeScript implementation provides tools for managing applications, resources, and deployments in Kubernetes GitOps workflows. The server supports both stdio and Server-Sent Events (SSE) transport protocols, offering comprehensive access to Argo CD operations including application listing, creation, synchronization, and resource management. It's particularly valuable for DevOps engineers and platform teams who need to monitor, troubleshoot, or manage their Argo CD deployments without switching context from their AI assistant.

Installation

npx -y argocd-mcp
npm install argocd-mcp
git clone https://github.com/argoproj-labs/mcp-for-argocd

Claude Desktop Configuration

Add this configuration to your Claude Desktop config file to enable this MCP server:

Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json

Config file location: %APPDATA%\Claude\claude_desktop_config.json

Config file location: ~/.config/Claude/claude_desktop_config.json

claude_desktop_config.json
{
  "mcpServers": {
    "argo-cd": {
      "command": "npx",
      "args": [
        "-y",
        "argocd-mcp"
      ]
    }
  }
}