@godrix/argocd-mcp
Allows interaction with Argo CD, enabling AI agents to manage applications (list, search, diff, manifests, diagnose, sync), authenticate via SSO or API keys, and call Argo CD API endpoints across multiple environments.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@@godrix/argocd-mcplist applications in production"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@godrix/argocd-mcp
MCP Server for Argo CD: multi-environment profiles (qa/stg/prod), SSO or API-key auth, application search cache, and REST tools from the bundled OpenAPI catalog.
Features
Multi-environment profiles — single
ARGOCD_URLorARGOCD_PROFILES+ARGOCD_URL_PROFILESSSO login —
argocd_loginviaargocdCLI (Azure OIDC); or API key via env /argocd_set_api_keyApplication tools — list, search (LIKE cache), diff, manifests, diagnose, sync (opt-in)
MCP App — observabilidade — widget inline com health, sync, Git, conditions e link para o Argo CD UI
Generic API —
search-argocd-endpoints+call-argocd-apiover full swagger catalogResources & prompts — profiles, priority apps, settings, health-check workflows
Read-only by default —
ARGOCD_READ_ONLY=trueblocks mutations
Related MCP server: Rancher MCP Server
Prerequisites
Requirement | SSO login | API key only |
Node.js 20+ | Yes | Yes |
Argo CD CLI ( | Yes | No |
Install
argocd(Argo CD), notargo(Argo Workflows). See argo vs argocd.
Quick start (Cursor / npx)
No clone required after publish:
{
"mcpServers": {
"argocd": {
"command": "npx",
"args": ["-y", "@godrix/argocd-mcp"],
"env": {
"ARGOCD_URL": "https://argocd-qa.example.io",
"ARGOCD_API_KEY": "eyJhbGciOi...",
"ARGOCD_READ_ONLY": "true"
}
}
}
}Multi-environment:
{
"mcpServers": {
"argocd": {
"command": "npx",
"args": ["-y", "@godrix/argocd-mcp"],
"env": {
"ARGOCD_DEFAULT_PROFILE": "qa",
"ARGOCD_PROFILES": "qa,stg,prod",
"ARGOCD_URL_PROFILES": "https://qa.example.io,https://stg.example.io,https://prod.example.io",
"ARGOCD_READ_ONLY": "true"
}
}
}
}Restart Cursor after saving. Then ask the agent to run argocd_auth_status or argocd_login.
Installation
Node.js 20+
Platform | Install |
macOS | nodejs.org or |
Linux (Debian/Ubuntu) |
|
Linux (Fedora/RHEL) |
|
Windows | nodejs.org or |
node --version # v20+Argo CD CLI (for SSO)
Platform | Install |
macOS |
|
Linux (amd64) |
|
Linux (arm64) | Use |
Windows (Scoop) |
|
Windows (Chocolatey) |
|
Windows (manual) | Latest release → |
Docs: Argo CD CLI installation
argocd version --clientFrom source
git clone <repo-url> mcp-argocd
cd mcp-argocd
npm install
npm run build
cp .env.example .env # edit URLs / keysPoint Cursor at the build output:
{
"mcpServers": {
"argocd": {
"command": "node",
"args": ["/absolute/path/to/mcp-argocd/build/server.js"],
"env": {
"ARGOCD_URL": "https://argocd-qa.example.io",
"ARGOCD_READ_ONLY": "true"
}
}
}
}MCPB install (Claude Desktop / local bundle)
Alternative to npx for clients that support .mcpb files:
Clone the repo and install:
npm install && npm run buildnpm run pack:mcpb— bundle withmanifest.json,build/,swagger.txt, andnode_modulesSmaller bundle:
npm run pack:mcpb:slimInstall the
.mcpbin your client and fill in URL / API key / profiles in the UI
The bundle form maps to the same env vars (ARGOCD_URL, ARGOCD_API_KEY, ARGOCD_PROFILES, etc.). SSO still requires the argocd CLI on PATH and a desktop browser.
CI publishes the .mcpb to GitHub Releases on each version bump (see .github/workflows/release.yml).
Configuration
Environment profiles
Two mutually exclusive modes:
Single instance — only ARGOCD_URL (implicit profile default):
ARGOCD_URL=https://argocd-qa.example.ioMultiple environments — all three required (do not set ARGOCD_URL):
ARGOCD_DEFAULT_PROFILE=qa
ARGOCD_PROFILES=qa,stg,prod
ARGOCD_URL_PROFILES=https://qa.example.io,https://stg.example.io,https://prod.example.ioOptional per profile: ARGOCD_PROFILE_<NAME>_CONTEXT, _LABEL, _URL.
Environment variables
Variable | Required | Default | Description |
| Single mode | — | Argo CD base URL |
| Multi mode | — | Default profile name (must be in |
| Multi mode | — | Comma-separated profile names |
| Multi mode | — | Comma-separated URLs (same order as profiles) |
| No | — | Bearer token (default profile or single instance) |
| No | — | Per-profile API key (e.g. |
| No | — | Comma-separated keys (same order as |
| No | — | Aliases for API key vars |
| No |
| Block sync and other mutations |
| No |
| Allow |
| No |
| In-memory application name cache |
| No |
| Cache TTL |
| No | — | Comma-separated bookmark app names |
| No | — | Per-profile priority apps |
| No |
| Pass |
| No |
| Path to argocd CLI config |
Legacy: ARGOCD_PROFILES_FILE loads JSON; env vars override file entries.
Authentication
Use one method per profile: API key or CLI login.
Option A — API key (recommended for MCP / CI)
Token from Argo CD UI (User Settings → API tokens) or argocd account generate-token.
# single instance
ARGOCD_API_KEY=eyJhbGciOi...
# multi-env
ARGOCD_API_KEY_QA=eyJ...
ARGOCD_API_KEYS=key-qa,key-stg,key-prodRuntime (current MCP session only):
argocd_set_api_key { "profile": "qa", "apiKey": "eyJ..." }Priority: memory → env per profile → ARGOCD_API_KEYS → ARGOCD_API_KEY → CLI config.
Option B — SSO login (interactive)
No USE_SSO env var — SSO is the default for argocd_login.
1. Configure profiles (ARGOCD_URL or multi-env vars)
2. Agent calls argocd_login { "profile": "qa" }
3. MCP runs: argocd login <host> --sso --name <context> --grpc-web
4. Browser opens → Microsoft/Azure OIDC
5. JWT saved to ~/.config/argocd/config (Windows: %USERPROFILE%\.config\argocd\config)
6. MCP reads token for subsequent API calls
7. Verify: argocd_auth_status → authenticated: truesequenceDiagram
participant User
participant Cursor
participant MCP as argocd-mcp
participant CLI as argocd CLI
participant Browser
participant IdP as Azure OIDC
User->>Cursor: Login Argo CD QA
Cursor->>MCP: argocd_login profile=qa
MCP->>CLI: argocd login --sso --grpc-web
CLI->>Browser: Open SSO
User->>IdP: Authenticate
IdP->>CLI: OAuth callback
CLI->>CLI: Save JWT
MCP-->>Cursor: SSO login successfulTools:
argocd_login { "profile": "qa" }argocd_login { "profile": "qa", "sso": false, "username": "admin", "password": "..." }Manual (terminal) — MCP reuses the same config:
argocd login argocd-qa.example.io --sso --grpc-web --name qaWhen the JWT expires, run argocd_login again or switch to an API key.
How the agent knows the token expired:
Signal | What it means |
|
|
Any API tool returns 401/403 | Error message includes |
| Live probe without calling other tools |
tokenPresent: true only means a token exists in env/CLI config — use argocd_auth_status to confirm it still works.
MCP tools
Core
Tool | Description |
| Profiles, URLs, auth status |
| SSO or username/password via CLI |
| API token in memory for this session |
| Auth status per profile |
| Public settings |
| User + groups |
| Search swagger catalog |
| Endpoint parameters |
| Generic REST call |
Applications
Tool | Description |
| List/filter; |
| LIKE search on cached names |
| Force cache refresh |
| Cache TTL / count per profile |
| Apps from |
| Full status |
| Server-side diff |
| Rendered manifests |
| Refresh from Git |
| Resource tree |
| Pod logs |
| Status + tree + events + pod logs |
| MCP App — painel interativo (health, sync, Git, conditions, unhealthy) |
| Recarrega dados do widget (visível só para a UI) |
| Trigger sync ( |
| Cancel operation |
Infra
Tool | Description |
| Argo CD AppProjects |
Resources
URI | Description |
| Profiles + auth |
| Priority app names |
| Public settings (cached) |
| Cached application names |
Prompts
Prompt | Description |
| Priority + degraded + outofsync sweep |
| Diff + recommendation |
| RBAC + diff before sync |
MCP App — Observabilidade
A tool view-application-observability abre um widget inline (quando o host suporta MCP Apps) com o estado de uma application:
Badges de health e sync
Metadados Git (repo, path, revisions)
Conditions reportadas pelo Argo CD
Lista de recursos unhealthy (resource tree, sem pod logs)
Botão Abrir no Argo CD (
openLinkpara a URL da application)Botão Atualizar (chama
refresh-application-observabilityviacallServerTool)
Em hosts sem suporte a MCP App (ex. alguns modos do Cursor), a mesma tool retorna structuredContent JSON + resumo em texto — o agente continua operacional.
view-application-observability(profile: "qa", name: "my-service")Widget visível em clientes com
@modelcontextprotocol/ext-apps(ex. Claude com connectors). No Cursor depende da versão/feature de MCP Apps.
Recommended workflow
list-argocd-profiles— check environments and authargocd_login(SSO) or setARGOCD_API_KEY/argocd_set_api_keysearch-applicationsorlist-applicationsfor discoverydiagnose-application/get-application-difffor troubleshootingcall-argocd-apifor anything else in swagger
Development
npm install
npm run build
npm test
npm run dev:mcp # MCP Inspector
npm run pack:mcpb # local .mcpb bundle
npm run pack:mcpb:slim # production-sized bundleargo vs argocd
CLI | Product |
| Argo Workflows |
| Argo CD (this MCP) |
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/godrix/mcp-argocd'
If you have feedback or need assistance with the MCP directory API, please join our Discord server