search_applications
Find Vultr applications by name, description, type, or vendor to deploy suitable solutions for your cloud infrastructure needs.
Instructions
Search applications by name, description, or other criteria.
Args: search_term: Search term to match against application names and descriptions app_type: Optional filter by type ('marketplace', 'one-click') vendor: Optional filter by vendor name
Returns: List of matching applications
Input Schema
Name | Required | Description | Default |
---|---|---|---|
app_type | No | ||
search_term | Yes | ||
vendor | No |
Input Schema (JSON Schema)
{
"properties": {
"app_type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "App Type"
},
"search_term": {
"title": "Search Term",
"type": "string"
},
"vendor": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Vendor"
}
},
"required": [
"search_term"
],
"type": "object"
}