delete_application
Removes a specific application from the ArgoCD MCP server by specifying its applicationName, ensuring resource cleanup and management.
Instructions
delete_application deletes application
Input Schema
Name | Required | Description | Default |
---|---|---|---|
applicationName | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"applicationName": {
"type": "string"
}
},
"required": [
"applicationName"
],
"type": "object"
}