argocd-mcp

Official
by akuity

get_resource_events

Retrieve events for a specific resource managed by an Argo CD application, using application and resource details to ensure accurate tracking and monitoring.

Instructions

get_resource_events returns events for a resource that is managed by an application

Input Schema

NameRequiredDescriptionDefault
applicationNameYes
applicationNamespaceYesThe namespace of the application. Note that this may differ from the namespace of individual resources. Make sure to verify the application namespace in the Application resource — it is often argocd, but not always.
resourceNameYes
resourceNamespaceYes
resourceUIDYes

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "applicationName": { "type": "string" }, "applicationNamespace": { "description": "The namespace of the application.\n Note that this may differ from the namespace of individual resources.\n Make sure to verify the application namespace in the Application resource — it is often argocd, but not always.", "type": "string" }, "resourceName": { "type": "string" }, "resourceNamespace": { "type": "string" }, "resourceUID": { "type": "string" } }, "required": [ "applicationName", "applicationNamespace", "resourceUID", "resourceNamespace", "resourceName" ], "type": "object" }
ID: z34q2x4q3k