A

Argo CD

Query Argo CD applications, sync status and rollout history.

·No reviews yet
Repo
Share:

About

Auto-generated

Argo CD is a Model Context Protocol server in the Developer Tools category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about Argo CD.

What is the Argo CD MCP?
The Argo CD MCP allows you to query Argo CD applications, their sync status, and rollout history directly within your MCP client environment. It brings GitOps information into your development workflow.
How do I install the Argo CD MCP in a client like Cursor?
Installation typically involves adding the MCP to your client's configuration via its slug 'argocd'. The transport is 'stdio', meaning it communicates using standard input/output streams.
Does the Argo CD MCP require an API key?
Yes, this MCP requires an API key for authentication. You will need to obtain and configure an API key for your Argo CD instance to use this MCP.
What specific Argo CD capabilities can I access with this MCP?
This MCP enables querying application status, sync state, and historical rollout data. It focuses on providing insights into your continuous delivery pipelines managed by Argo CD.
What are the prerequisites for using the Argo CD MCP?
A working Argo CD instance is required, along with an API key for authentication. You will also need an MCP client capable of communicating via stdio transport.
Is the Argo CD MCP free to use?
The MCP itself is open-source, provided by the community. Any costs would be associated with your underlying Argo CD deployment and infrastructure, not the MCP directly.

Install Argo CD

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "argocd": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-argocd"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "argocd": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-argocd"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "argocd": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-argocd"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.