An MCP (Model Context Protocol) server that integrates with the ArgoCD API, enabling AI assistants and large language models to manage ArgoCD
Argocd mcp mcp server connects Argocd MCP to AI assistants that speak the Model Context Protocol. An MCP (Model Context Protocol) server that integrates with the ArgoCD API, enabling AI assistants and large language models to manage ArgoCD applications and resources through natural language interactions.
An MCP (Model Context Protocol) server that integrates with the ArgoCD API, enabling AI assistants and large language models to manage ArgoCD applications and resources through natural language interactions.
Once connected, the assistant can call these 12 tools directly:
get_user_info — Get the current user's info via api/v1/session/userinfoget_settings — Get ArgoCD server settings including UI, OIDC, and other configurationsget_plugins — Get information about configured ArgoCD pluginsget_version — Get version information of the API serverlist_applications — Get all applications with filtering optionsget_application_details — Get detailed information about a specific applicationcreate_application — Create a new applicationupdate_application — Update an existing applicationdelete_application — Delete an applicationsync_application — Trigger a sync operation on an applicationSetup — The Setup tool exposed by this serverRequirements — The Requirements tool exposed by this serverThe server is distributed via PyPI as mypy, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.
Before the server will start you need to supply 4 environment variables: ARGOCD_TOKEN, ARGOCD_API_URL, ARGOCD_VERIFY_SSL, YOUR_ARGOCD_TOKEN. Keep credentials in your client's env block or a secrets manager rather than committing them.
Developer-tool servers are usually the first ones people connect, because they turn "help me with this code" into an assistant that can actually read the repo and act on it. Argocd MCP sits in that group, and the shape of its toolset — get_user_info, get_settings, get_plugins among others — tells you what it is really for. Worth comparing against the other developer tools servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.
| Tool | What it does |
|---|---|
| get_user_info | Get the current user's info via api/v1/session/userinfo |
| get_settings | Get ArgoCD server settings including UI, OIDC, and other configurations |
| get_plugins | Get information about configured ArgoCD plugins |
| get_version | Get version information of the API server |
| list_applications | Get all applications with filtering options |
| get_application_details | Get detailed information about a specific application |
| create_application | Create a new application |
| update_application | Update an existing application |
| delete_application | Delete an application |
| sync_application | Trigger a sync operation on an application |
| Setup | The Setup tool exposed by this server. |
| Requirements | The Requirements tool exposed by this server. |
{
"mcpServers": {
"argocd": {
"command": "uvx",
"args": ["mypy"],
"env": {
"ARGOCD_TOKEN": "your-value",
"ARGOCD_API_URL": "your-value",
"ARGOCD_VERIFY_SSL": "your-value",
"YOUR_ARGOCD_TOKEN": "your-value"
}
}
}
}Add to claude_desktop_config.json, then restart Claude Desktop.
| Variable | Description | Required |
|---|---|---|
| ARGOCD_TOKEN | Credential the server authenticates with. | Yes |
| ARGOCD_API_URL | Endpoint or connection string the server talks to. | Yes |
| ARGOCD_VERIFY_SSL | Configuration value read at startup. | Optional |
| YOUR_ARGOCD_TOKEN | Credential the server authenticates with. | Yes |
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
GitHub's official server — repos, issues, pull requests, Actions and code security, straight from your assistant.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Local repository surgery — status, diffs, commits, branches and history for any repo on disk.
Timezone sanity for AI — current time anywhere and correct conversions, without the model doing date math.