KosmoKrator

productivity

Kamatera CLI for Cron Jobs

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

7 functions 6 read 1 write Bearer token auth

Kamatera 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 Kamatera CLI uses the same integration registry as the TUI, Lua runtime, and MCP gateway, but returns predictable command output for automation.

Command Shape

# Kamatera CLI for Cron Jobs
kosmokrator integrations:configure kamatera --set access_token="$KAMATERA_ACCESS_TOKEN" --enable --read allow --write ask --json
kosmo integrations:call kamatera.kamatera_list_servers '{}' --json

Discovery Before Execution

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

kosmo integrations:docs kamatera --json
kosmo integrations:docs kamatera.kamatera_list_servers --json
kosmo integrations:schema kamatera.kamatera_list_servers --json
kosmo integrations:search "Kamatera" --json
kosmo integrations:list --json

Useful Kamatera CLI Functions

FunctionTypeParametersDescription
kamatera.kamatera_list_servers Read none List all cloud servers in the Kamatera account. Returns IDs, names, status, and configuration details.
kamatera.kamatera_get_server Read id Get details for a specific Kamatera cloud server by ID. Returns full server information including status, CPU, RAM, disk, and IP addresses.
kamatera.kamatera_create_server Write name, datacenter, image, cpu, ram, disk, password, network, quantity Create a new cloud server in Kamatera. Requires a name, datacenter, image, CPU count, RAM, and disk size.
kamatera.kamatera_list_networks Read none List all networks in the Kamatera account. Returns network IDs, names, datacenter, and CIDR details.
kamatera.kamatera_list_images Read none List all available images for server creation in Kamatera. Returns image IDs, names, OS type, and sizes.
kamatera.kamatera_list_datacenters Read none List all available Kamatera datacenter locations. Returns datacenter IDs, names, city, and country.
kamatera.kamatera_get_current_user Read none Get information about the current authenticated Kamatera account, including email, name, and account details.

Automation Notes

Related Kamatera CLI Pages