Skip to main content
Glama

argocd-list-apps

List ArgoCD applications to monitor deployments and manage Kubernetes resources through the Kubernetes MCP Server.

Instructions

List ArgoCD applications

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
namespaceNoThe namespace to list apps from (optional, defaults to argocd namespace)

Implementation Reference

  • Handler implementation for the 'argocd-list-apps' tool. Executes 'kubectl get applications' in the specified namespace (default: argocd) to list ArgoCD applications.
    case "argocd-list-apps": { const { namespace = "argocd" } = args || {}; const cmd = `kubectl get applications -n ${namespace} -o wide`; const { stdout } = await execAsync(cmd); return { content: [{ type: "text", text: stdout || "No ArgoCD applications found" }] }; }
  • server.js:1255-1267 (registration)
    Tool registration definition for 'argocd-list-apps', including name, description, and input schema. This object is part of the 'tools' array returned by ListToolsRequestHandler.
    name: "argocd-list-apps", description: "List ArgoCD applications", inputSchema: { type: "object", properties: { namespace: { type: "string", description: "The namespace to list apps from (optional, defaults to argocd namespace)" } } } }, {
  • Input schema definition for the 'argocd-list-apps' tool, defining optional 'namespace' parameter.
    name: "argocd-list-apps", description: "List ArgoCD applications", inputSchema: { type: "object", properties: { namespace: { type: "string", description: "The namespace to list apps from (optional, defaults to argocd namespace)" } } } }, {

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/thekaranpargaie/kube-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server