KosmoKrator

productivity

Vultr CLI for AI Agents

Use the Vultr CLI from KosmoKrator to call Vultr tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.

7 functions 7 read 0 write Bearer token auth

Vultr CLI Setup

Vultr can be configured headlessly with `kosmokrator integrations:configure vultr`.

# Install KosmoKrator first if it is not available on PATH.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash

# Configure and verify this integration.
kosmokrator integrations:configure vultr --set access_token="$VULTR_ACCESS_TOKEN" --enable --read allow --write ask --json
kosmokrator integrations:doctor vultr --json
kosmokrator integrations:status --json

Credentials

Authentication type: Bearer token bearer_token. Configure credentials once, then use the same stored profile from scripts, coding CLIs, Lua code mode, and the MCP gateway.

KeyEnv varTypeRequiredLabel
access_token VULTR_ACCESS_TOKEN Secret secret yes Access Token
url VULTR_URL URL url no API Base URL

Call Vultr Headlessly

Use the generic call form when another coding CLI or script needs a stable universal interface.

kosmo integrations:call vultr.vultr_list_instances '{}' --json

Use the provider shortcut form for shorter human-facing commands.

kosmo integrations:vultr vultr_list_instances '{}' --json

Agent Discovery Commands

These commands return structured output for coding agents that need to inspect capabilities 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

All CLI Functions

Every function below can be called headlessly. The generic form is stable across all integrations; the provider shortcut is shorter but specific to Vultr.

vultr.vultr_list_instances

Read read

List all compute instances in the Vultr account. Returns IDs, labels, status, plan, region, and IP addresses.

Parameters
none

Generic CLI call

kosmo integrations:call vultr.vultr_list_instances '{}' --json

Provider shortcut

kosmo integrations:vultr vultr_list_instances '{}' --json

vultr.vultr_get_instance

Read read

Get details for a specific Vultr compute instance by ID. Returns full instance information including IP addresses, plan, region, and OS.

Parameters
id

Generic CLI call

kosmo integrations:call vultr.vultr_get_instance '{"id":"example_id"}' --json

Provider shortcut

kosmo integrations:vultr vultr_get_instance '{"id":"example_id"}' --json

vultr.vultr_list_plans

Read read

List all available hosting plans in Vultr. Returns plan IDs, pricing, vCPU, RAM, disk, and bandwidth details.

Parameters
none

Generic CLI call

kosmo integrations:call vultr.vultr_list_plans '{}' --json

Provider shortcut

kosmo integrations:vultr vultr_list_plans '{}' --json

vultr.vultr_list_regions

Read read

List all available data center regions in Vultr. Returns region IDs, city, country, and continent information.

Parameters
none

Generic CLI call

kosmo integrations:call vultr.vultr_list_regions '{}' --json

Provider shortcut

kosmo integrations:vultr vultr_list_regions '{}' --json

vultr.vultr_list_snapshots

Read read

List all snapshots in the Vultr account. Returns snapshot IDs, descriptions, sizes, creation dates, and status.

Parameters
none

Generic CLI call

kosmo integrations:call vultr.vultr_list_snapshots '{}' --json

Provider shortcut

kosmo integrations:vultr vultr_list_snapshots '{}' --json

vultr.vultr_list_ssh_keys

Read read

List all SSH keys in the Vultr account. Returns key IDs, names, and creation dates.

Parameters
none

Generic CLI call

kosmo integrations:call vultr.vultr_list_ssh_keys '{}' --json

Provider shortcut

kosmo integrations:vultr vultr_list_ssh_keys '{}' --json

vultr.vultr_get_current_user

Read read

Get information about the current authenticated Vultr account, including email, name, and balance.

Parameters
none

Generic CLI call

kosmo integrations:call vultr.vultr_get_current_user '{}' --json

Provider shortcut

kosmo integrations:vultr vultr_get_current_user '{}' --json

Function Schemas

Use these parameter tables when building CLI payloads without calling integrations:schema first.

vultr.vultr_list_instances

List all compute instances in the Vultr account. Returns IDs, labels, status, plan, region, and IP addresses.

Operation
Read read
Schema command
kosmo integrations:schema vultr.vultr_list_instances --json
ParameterTypeRequiredDescription
No parameters.

vultr.vultr_get_instance

Get details for a specific Vultr compute instance by ID. Returns full instance information including IP addresses, plan, region, and OS.

Operation
Read read
Schema command
kosmo integrations:schema vultr.vultr_get_instance --json
ParameterTypeRequiredDescription
id string yes The instance ID.

vultr.vultr_list_plans

List all available hosting plans in Vultr. Returns plan IDs, pricing, vCPU, RAM, disk, and bandwidth details.

Operation
Read read
Schema command
kosmo integrations:schema vultr.vultr_list_plans --json
ParameterTypeRequiredDescription
No parameters.

vultr.vultr_list_regions

List all available data center regions in Vultr. Returns region IDs, city, country, and continent information.

Operation
Read read
Schema command
kosmo integrations:schema vultr.vultr_list_regions --json
ParameterTypeRequiredDescription
No parameters.

vultr.vultr_list_snapshots

List all snapshots in the Vultr account. Returns snapshot IDs, descriptions, sizes, creation dates, and status.

Operation
Read read
Schema command
kosmo integrations:schema vultr.vultr_list_snapshots --json
ParameterTypeRequiredDescription
No parameters.

vultr.vultr_list_ssh_keys

List all SSH keys in the Vultr account. Returns key IDs, names, and creation dates.

Operation
Read read
Schema command
kosmo integrations:schema vultr.vultr_list_ssh_keys --json
ParameterTypeRequiredDescription
No parameters.

vultr.vultr_get_current_user

Get information about the current authenticated Vultr account, including email, name, and balance.

Operation
Read read
Schema command
kosmo integrations:schema vultr.vultr_get_current_user --json
ParameterTypeRequiredDescription
No parameters.

Permissions

Headless calls still follow the integration read/write permission policy. Configure read/write defaults with integrations:configure. Add --force only for trusted automation that should bypass that policy.