KosmoKrator

productivity

Vultr CLI for Cron Jobs

Use the Vultr CLI for cron jobs with headless JSON commands, schema discovery, credentials, and permission controls.

7 functions 7 read 0 write Bearer token auth

Vultr CLI for Cron Jobs

Schedule repeatable integration workflows from cron while keeping credentials in KosmoKrator config.

Use the headless CLI from cron when an operation should run without an interactive agent session. The Vultr CLI uses the same integration registry as the TUI, Lua runtime, and MCP gateway, but returns predictable command output for automation.

Command Shape

# Vultr CLI for Cron Jobs
kosmokrator integrations:configure vultr --set access_token="$VULTR_ACCESS_TOKEN" --enable --read allow --write ask --json
kosmo integrations:call vultr.vultr_list_instances '{}' --json

Discovery Before Execution

Agents and scripts can inspect Vultr docs and schemas before choosing a function.

kosmo integrations:docs vultr --json
kosmo integrations:docs vultr.vultr_list_instances --json
kosmo integrations:schema vultr.vultr_list_instances --json
kosmo integrations:search "Vultr" --json
kosmo integrations:list --json

Useful Vultr CLI Functions

FunctionTypeParametersDescription
vultr.vultr_list_instances Read none List all compute instances in the Vultr account. Returns IDs, labels, status, plan, region, and IP addresses.
vultr.vultr_get_instance Read id Get details for a specific Vultr compute instance by ID. Returns full instance information including IP addresses, plan, region, and OS.
vultr.vultr_list_plans Read none List all available hosting plans in Vultr. Returns plan IDs, pricing, vCPU, RAM, disk, and bandwidth details.
vultr.vultr_list_regions Read none List all available data center regions in Vultr. Returns region IDs, city, country, and continent information.
vultr.vultr_list_snapshots Read none List all snapshots in the Vultr account. Returns snapshot IDs, descriptions, sizes, creation dates, and status.
vultr.vultr_list_ssh_keys Read none List all SSH keys in the Vultr account. Returns key IDs, names, and creation dates.
vultr.vultr_get_current_user Read none Get information about the current authenticated Vultr account, including email, name, and balance.

Automation Notes

Related Vultr CLI Pages