list_applications
Retrieve a list of applications managed by the ArgoCD MCP server, with optional filtering by name for partial matches.
Instructions
list_applications returns list of applications
Input Schema
Name | Required | Description | Default |
---|---|---|---|
search | No | Search applications by name. This is a partial match on the application name and does not support glob patterns (e.g. "*"). Optional. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"search": {
"description": "Search applications by name. This is a partial match on the application name and does not support glob patterns (e.g. \"*\"). Optional.",
"type": "string"
}
},
"type": "object"
}