Argo CD MCP Server
Enables MCP-compatible clients to inspect Argo CD applications, check sync and health status, list resources, review events, refresh applications, and optionally trigger sync operations.
README
Argo CD MCP Server
A production-ready Model Context Protocol server for the Argo CD API.
This template lets Claude Desktop, Cursor, Windsurf, and other MCP-compatible clients inspect Argo CD applications, check sync and health status, list Kubernetes resources, review events, refresh applications, and optionally trigger controlled sync operations.
Built as a secure starter template for platform teams, DevOps engineers, and GitOps workflows that need AI-assisted visibility into Argo CD without exposing unrestricted cluster access.
Who this is for
This repository is useful for:
- platform engineers building AI assistants for GitOps workflows,
- DevOps teams that use Argo CD for Kubernetes deployments,
- SRE teams that want safe read-only deployment visibility from Claude or Cursor,
- internal tools teams connecting Argo CD to AI agents,
- agencies building production MCP integrations for Kubernetes and cloud-native clients.
Features
- TypeScript + Express MCP server
- Streamable HTTP transport using the official MCP SDK
- Bearer-token protection for
/mcp - Rate limiting for MCP requests
- Health endpoint at
/health - Structured Pino logging
- Zod-based environment validation
- Argo CD REST API client
- MCP tools for applications, health, sync status, resources, events, refresh, and optional sync
- Feature flag for write operations with
ENABLE_SYNC_TOOL - GitHub Actions CI workflow
- Jest test setup
Architecture
Claude Desktop / Cursor / Windsurf
│
│ HTTP POST /mcp
│ Authorization: Bearer <MCP_API_KEY>
▼
Express Server
│
├── Express JSON middleware
├── API key authentication
├── Rate limiter
├── Streamable HTTP MCP transport
│
▼
MCP SDK Handler
│
├── list_applications ─┐
├── get_application ─┤
├── get_application_health ─┤
├── get_application_sync_status ┤──► Argo CD REST API
├── list_application_resources ─┤
├── get_application_events ─┤
├── refresh_application ─┤
└── sync_application* ─┘
* sync_application is only registered when ENABLE_SYNC_TOOL=true
GET /health → Argo CD connectivity + dependency status
See the larger diagram in docs/architecture.md.
Source Code
The complete production-ready Argo CD MCP Server template is available on GitHub.
Repository:
https://github.com/kamolc4/argo-cd-mcp-server
The repository includes TypeScript source code, Argo CD API tools, authentication middleware, tests, GitHub Actions CI, security notes, and configuration examples for Claude Desktop and Cursor.
Fork the repository or download it as a ZIP to start building immediately.
MCPForge Starter Template
Explore, copy, or customize the production-ready starter template on MCPForge:
https://www.mcpforge.tech/code/production-argo-cd-mcp-server-template-typescript
Available MCP tools
| Tool | Purpose | Risk |
|---|---|---|
list_applications |
List Argo CD applications, optionally filtered by project or namespace. | Read-only |
get_application |
Fetch full application details by name. | Read-only |
get_application_health |
Return summarized application health status. | Read-only |
get_application_sync_status |
Return summarized sync status and revision details. | Read-only |
list_application_resources |
List Kubernetes resources managed by an Argo CD application. | Read-only |
get_application_events |
Fetch recent Argo CD application events. | Read-only |
refresh_application |
Ask Argo CD to refresh/reconcile an application. | Low-impact action |
sync_application |
Trigger an application sync. Disabled unless ENABLE_SYNC_TOOL=true. |
Write operation |
Quick start
1. Clone the repository
git clone https://github.com/kamolc4/argo-cd-mcp-server.git
cd argo-cd-mcp-server
2. Install dependencies
npm ci
3. Configure environment
cp .env.example .env
Edit .env:
PORT=3000
NODE_ENV=development
LOG_LEVEL=info
MCP_API_KEY=replace-with-a-long-random-secret
ARGOCD_SERVER_URL=https://argocd.example.com
ARGOCD_TOKEN=your-argocd-api-token
ARGOCD_INSECURE_TLS=false
ARGOCD_NAMESPACE=argocd
RATE_LIMIT_WINDOW_MS=60000
RATE_LIMIT_MAX=60
ENABLE_SYNC_TOOL=false
4. Run locally
npm run dev
5. Check health
curl http://localhost:3000/health
6. List MCP tools
curl -X POST http://localhost:3000/mcp \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer replace-with-a-long-random-secret' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}'
Argo CD setup
Create a dedicated Argo CD account for this MCP server and grant only the permissions required by your use case.
Example high-level flow:
- Create a service account or local account for MCP access.
- Grant read-only access for application inspection.
- Generate an API token for that account.
- Store the token as
ARGOCD_TOKENin your runtime environment. - Keep
ENABLE_SYNC_TOOL=falseuntil you intentionally review and approve write access.
For production, prefer a least-privilege policy that allows read operations by default and only enables sync permissions for approved environments.
Connect to Claude Desktop
Build and start the server:
npm run build
npm start
Then add an MCP server entry in your Claude Desktop configuration:
{
"mcpServers": {
"argocd": {
"url": "http://localhost:3000/mcp",
"headers": {
"Authorization": "Bearer replace-with-your-mcp-api-key"
}
}
}
}
Restart Claude Desktop after editing the configuration.
Connect to Cursor
In Cursor, add a new MCP server using the HTTP endpoint:
{
"name": "argocd",
"url": "http://localhost:3000/mcp",
"headers": {
"Authorization": "Bearer replace-with-your-mcp-api-key"
}
}
Then restart Cursor or reload the MCP server list.
Security notes
This template is intentionally conservative, but you should harden it before production use.
Recommended production changes:
- Use a dedicated Argo CD service account for this server.
- Grant least-privilege RBAC permissions in Argo CD.
- Store
ARGOCD_TOKENandMCP_API_KEYin a managed secret manager. - Keep
ENABLE_SYNC_TOOL=falseunless write operations are explicitly required. - Put
sync_applicationbehind a human approval workflow before production use. - Do not use
ARGOCD_INSECURE_TLS=truein production. - Rotate Argo CD tokens regularly.
- Add audit logs for every MCP tool call.
- Restrict network access to the MCP server.
- Use HTTPS in production.
- Verify the server with MCPForge before exposing it to AI clients.
Security Review
Verify this server with MCPForge:
https://www.mcpforge.tech/verify
MCPForge can help review:
- exposed tools,
- authentication behavior,
- health checks,
- compatibility with MCP clients,
- risk level of write operations,
- security posture before publishing or deployment.
After verification, you can link your public report from this README:
[](https://www.mcpforge.tech/verified/argo-cd-mcp-server)
Deployment
A common production setup:
- Deploy this service to Railway, Render, Fly.io, AWS, GCP, Azure, or a private Kubernetes cluster.
- Configure environment variables in the hosting provider or secret manager.
- Set
ARGOCD_SERVER_URLto your Argo CD server URL. - Set
ARGOCD_TOKENto a least-privilege Argo CD API token. - Set
MCP_API_KEYto a long random secret. - Keep
ARGOCD_INSECURE_TLS=falsein production. - Verify
/healthand/mcpbefore connecting production AI clients. - Run a public or private verification with MCPForge.
Local development commands
npm run lint
npm run typecheck
npm test
npm run build
API endpoints
| Method | Path | Description |
|---|---|---|
GET |
/health |
Health and Argo CD connectivity check. |
POST |
/mcp |
MCP endpoint protected by Authorization: Bearer <MCP_API_KEY>. |
GET |
/mcp |
Returns 405 in stateless HTTP mode. |
DELETE |
/mcp |
Returns 405 in stateless HTTP mode. |
Releases
Latest stable release:
v1.0.0
See the Releases page for the full changelog.
Contributing
Contributions are welcome.
If you want to improve this Argo CD MCP Server template, open an issue or submit a pull request.
Related MCP Server Templates
Looking for other production-ready MCP Server templates?
- GitHub MCP Server
- Slack MCP Server
- Linear MCP Server
- Kubernetes MCP Server
- PostgreSQL MCP Server
- Next.js MCP Server
- Python FastAPI MCP Server
Browse the complete collection:
https://www.mcpforge.tech/code
License
MIT — see LICENSE.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。