.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/argoproj-labs/mcp-for-argocd
home/mcp-servers/argoproj-labs/mcp-for-argocd
argoproj-labs avatar

mcp-for-argocd

byargoproj-labs· 1 MCP server

Installs

90k

Stars

547

Forks

95

Category

DevOps & CI/CD

View on GitHub

TL;DR

An implementation of Model Context Protocol (MCP) server for Argo CD, enabling AI assistants to interact with your Argo CD applications through natural language. This server allows for seamless integr

How to install mcp-for-argocd?

argoproj-labs/mcp-for-argocd
$git clone https://github.com/argoproj-labs/mcp-for-argocd

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install mcp-for-argocd by running `git clone https://github.com/argoproj-labs/mcp-for-argocd`, then use it for the current task and follow its documentation at https://github.com/argoproj-labs/mcp-for-argocd.

Files · 1

View on GitHub
README.md
1# Argo CD MCP Server
2 
3An implementation of [Model Context Protocol (MCP)](https://modelcontextprotocol.io) server for [Argo CD](https://argo-cd.readthedocs.io/en/stable/), enabling AI assistants to interact with your Argo CD applications through natural language. This server allows for seamless integration with Visual Studio Code and other MCP clients through stdio and HTTP stream transport protocols.
4 
5<a href="https://glama.ai/mcp/servers/@akuity/argocd-mcp">
6 <img width="380" height="200" src="https://glama.ai/mcp/servers/@akuity/argocd-mcp/badge" alt="argocd-mcp MCP server" />
7</a>
8 
9<!--
10// Generate using?:
11const config = JSON.stringify({
12 "name": "argocd-mcp",
13 "command": "npx",
14 "args": ["argocd-mcp@latest", "stdio"],
15 "env": {
16 "ARGOCD_BASE_URL": "<argocd_url>",
17 "ARGOCD_API_TOKEN": "<argocd_token>"
18 }
19});
20const urlForWebsites = `vscode:mcp/install?${encodeURIComponent(config)}`;
21// Github markdown does not allow linking to `vscode:` directly, so you can use our redirect:
22const urlForGithub = `https://insiders.vscode.dev/redirect?url=${encodeURIComponent(urlForWebsites)}`;
23-->
24 
25[<img src="https://img.shields.io/badge/VS_Code-VS_Code?style=flat-square&label=Install%20Server&color=0098FF" alt="Install in VS Code">](https://insiders.vscode.dev/redirect?url=vscode%3Amcp%2Finstall%3F%257B%2522name%2522%253A%2522argocd-mcp%2522%252C%2522command%2522%253A%2522npx%2522%252C%2522args%2522%253A%255B%2522argocd-mcp%2540latest%2522%252C%2522stdio%2522%255D%252C%2522env%2522%253A%257B%2522ARGOCD_BASE_URL%2522%253A%2522%253Cargocd_url%253E%2522%252C%2522ARGOCD_API_TOKEN%2522%253A%2522%253Cargocd_token%253E%2522%257D%257D) [<img alt="Install in VS Code Insiders" src="https://img.shields.io/badge/VS_Code_Insiders-VS_Code_Insiders?style=flat-square&label=Install%20Server&color=24bfa5">](https://insiders.vscode.dev/redirect?url=vscode-insiders%3Amcp%2Finstall%3F%257B%2522name%2522%253A%2522argocd-mcp%2522%252C%2522command%2522%253A%2522npx%2522%252C%2522args%2522%253A%255B%2522argocd-mcp%2540latest%2522%252C%2522stdio%2522%255D%252C%2522env%2522%253A%257B%2522ARGOCD_BASE_URL%2522%253A%2522%253Cargocd_url%253E%2522%252C%2522ARGOCD_API_TOKEN%2522%253A%2522%253Cargocd_token%253E%2522%257D%257D)
26 
27---
28![argocd-mcp-demo](https://github.com/user-attachments/assets/091548d0-9927-4d4b-a2fe-4f99c7cea108)
29 
30## Features
31 
32- **Transport Protocols**: Supports both stdio and HTTP stream transport modes for flexible integration with different clients
33- **Complete Argo CD API Integration**: Provides comprehensive access to Argo CD resources and operations
34- **AI Assistant Ready**: Pre-configured tools for AI assistants to interact with Argo CD in natural language
35 
36## Available Tools
37 
38The server provides the following ArgoCD management tools:
39 
40### Cluster Management
41- `list_clusters`: List all clusters registered with ArgoCD
42 
43### Project Management
44- `get_appproject`: Get detailed information about a specific AppProject (project)
45 
46### Application Management
47- `list_applications`: List and filter all applications
48- `get_application`: Get detailed information about a specific application
49- `create_application`: Create a new application
50- `update_application`: Update an existing application
51- `delete_application`: Delete an application
52- `sync_application`: Trigger a sync operation on an application
53 
54### Resource Management
55- `get_application_resource_tree`: Get the resource tree for a specific application
56- `get_application_managed_resources`: Get managed resources for a specific application
57- `get_application_workload_logs`: Get logs for application workloads (Pods, Deployments, etc.)
58- `get_resource_events`: Get events for resources managed by an application
59- `get_resource_actions`: Get available actions for resources
60- `run_resource_action`: Run an action on a resource
61 
62## Installation
63 
64### Prerequisites
65 
66- Node.js (v18 or higher recommended)
67- pnpm package manager (for development)
68- Argo CD instance with API access
69- Argo CD API token (see t

Preview

argoproj-labs/mcp-for-argocdargoproj-labs/mcp-for-argocd

# Argo CD MCP Server

An implementation of [Model Context Protocol (MCP)](https://modelcontextprotocol.io) server for [Argo CD](https://argo-cd.readthedocs.io/en/stable/), enabling A

Repoargoproj-labs/mcp-for-argocd
TypeMCP Servers
CategoryDevOps & CI/CD
UpdatedJul 2026
LicenseApache-2.0
First seenJul 26, 2026

Tags

MCPaiargocd

Related

6 picks
Type
  1. circleci-public avatarmcp-server-circleciA Model Context Protocol (MCP) server implementation for CircleCI, enabling natural language interactions with CircleCI functionality through MCP-enabled clientsMCP ServersJul 2026141k86
  2. flux159 avatarmcp-server-kubernetesMCP server for interacting with Kubernetes clusters via kubectlMCP ServersJul 202664k1.5k
  3. hookdeck avatarhookdeck-cliCLI for Hookdeck: forward webhooks to localhost (ngrok alternative), manage and query Event Gateway resources (sources, connections, destinations, events), run the MCP server for AI agents. Free for dev.MCP ServersJul 202647k358
  4. heroku avatarheroku-mcp-serverHeroku Platform MCP ServerMCP ServersJul 202626k80
  5. tiberriver256 avatarmcp-server-azure-devopsAzure DevOps reference server for the Model Context Protocol (MCP)MCP ServersJul 202624k381
  6. harness avatarmcp-serverGive AI agents full access to the Harness.io platform — manage pipelines, deployments, cloud costs, chaos engineering, feature flags, SEI, and 125+ resource types through 11 MCP toolsMCP ServersJul 202621k86