|
| 1 | +{ |
| 2 | + "$schema": "../schemas/server-definition.schema.json", |
| 3 | + "id": "argoproj.argocd-mcp-npx", |
| 4 | + "name": "Argo CD (npx)", |
| 5 | + "alias": "argocd", |
| 6 | + "description": "Interact with Argo CD applications through natural language: list and inspect applications, sync deployments, view managed resources, events, and logs. Connects to your Argo CD instance via API token.", |
| 7 | + "logo": "https://avatars.githubusercontent.com/u/49503628?v=4", |
| 8 | + "schema_version": "2.1", |
| 9 | + "categories": [ |
| 10 | + "developer-tools" |
| 11 | + ], |
| 12 | + "tags": [ |
| 13 | + "argocd", |
| 14 | + "argo-cd", |
| 15 | + "gitops", |
| 16 | + "kubernetes", |
| 17 | + "cicd", |
| 18 | + "deployment", |
| 19 | + "devops" |
| 20 | + ], |
| 21 | + "transport": { |
| 22 | + "type": "stdio", |
| 23 | + "command": "npx", |
| 24 | + "args": [ |
| 25 | + "-y", |
| 26 | + "argocd-mcp@latest", |
| 27 | + "stdio" |
| 28 | + ], |
| 29 | + "env": { |
| 30 | + "ARGOCD_BASE_URL": "${input:ARGOCD_BASE_URL}", |
| 31 | + "ARGOCD_API_TOKEN": "${input:ARGOCD_API_TOKEN}" |
| 32 | + }, |
| 33 | + "metadata": { |
| 34 | + "inputs": [ |
| 35 | + { |
| 36 | + "id": "ARGOCD_BASE_URL", |
| 37 | + "label": "Argo CD Base URL", |
| 38 | + "description": "The base URL of your Argo CD instance (e.g. https://argocd.example.com). The server connects to this endpoint's API.", |
| 39 | + "type": "url", |
| 40 | + "required": true, |
| 41 | + "placeholder": "https://argocd.example.com" |
| 42 | + }, |
| 43 | + { |
| 44 | + "id": "ARGOCD_API_TOKEN", |
| 45 | + "label": "Argo CD API Token", |
| 46 | + "description": "API token for an Argo CD account with apiKey capability. Generate it under Settings > Accounts for a local account that has the apiKey capability enabled.", |
| 47 | + "type": "text", |
| 48 | + "required": true, |
| 49 | + "secret": true, |
| 50 | + "placeholder": "eyJ****************************************", |
| 51 | + "obtain": { |
| 52 | + "url": "https://argo-cd.readthedocs.io/en/stable/user-guide/commands/argocd_account_generate-token/", |
| 53 | + "instructions": "1. Ensure the target account has the 'apiKey' capability (set 'accounts.<name>: apiKey' in the argocd-cm ConfigMap)\n2. In the Argo CD UI, go to Settings > Accounts\n3. Select your account and click 'Generate New' under Tokens\n4. (Optional) Set an expiration\n5. Click 'Generate' and copy the token\nAlternatively, run: argocd account generate-token --account <name>", |
| 54 | + "button_label": "Generate Token" |
| 55 | + } |
| 56 | + } |
| 57 | + ] |
| 58 | + } |
| 59 | + }, |
| 60 | + "auth": { |
| 61 | + "type": "api_key", |
| 62 | + "instructions": "Generate an Argo CD API token under Settings > Accounts for an account that has the apiKey capability, or run 'argocd account generate-token'." |
| 63 | + }, |
| 64 | + "contributor": { |
| 65 | + "name": "Argo Project (argoproj-labs)", |
| 66 | + "github": "argoproj-labs", |
| 67 | + "url": "https://github.com/argoproj-labs/mcp-for-argocd" |
| 68 | + }, |
| 69 | + "links": { |
| 70 | + "repository": "https://github.com/argoproj-labs/mcp-for-argocd", |
| 71 | + "homepage": "https://argoproj.github.io/cd/", |
| 72 | + "documentation": "https://github.com/argoproj-labs/mcp-for-argocd#readme" |
| 73 | + }, |
| 74 | + "platforms": [ |
| 75 | + "all" |
| 76 | + ], |
| 77 | + "capabilities": { |
| 78 | + "tools": true, |
| 79 | + "resources": false, |
| 80 | + "prompts": false, |
| 81 | + "read_only_mode": false |
| 82 | + }, |
| 83 | + "changelog_url": "https://github.com/argoproj-labs/mcp-for-argocd/releases" |
| 84 | +} |
0 commit comments