KosmoKrator

productivity

RunPod CLI for Cron Jobs

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

7 functions 7 read 0 write Bearer token auth

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

Command Shape

# RunPod CLI for Cron Jobs
kosmokrator integrations:configure runpod --set access_token="$RUNPOD_ACCESS_TOKEN" --enable --read allow --write ask --json
kosmo integrations:call runpod.runpod_list_pods '{}' --json

Discovery Before Execution

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

kosmo integrations:docs runpod --json
kosmo integrations:docs runpod.runpod_list_pods --json
kosmo integrations:schema runpod.runpod_list_pods --json
kosmo integrations:search "RunPod" --json
kosmo integrations:list --json

Useful RunPod CLI Functions

FunctionTypeParametersDescription
runpod.runpod_list_pods Read none List all GPU pods in your RunPod account. Returns pod IDs, names, status, GPU types, and runtime details.
runpod.runpod_get_pod Read pod_id Get detailed information about a specific RunPod GPU pod, including its status, GPU type, runtime, ports, and configuration. Use the pod ID obtained from runpod_list_pods.
runpod.runpod_list_templates Read none List all available RunPod templates. Returns template IDs, names, images, and machine configurations.
runpod.runpod_list_network_volumes Read none List all network volumes in your RunPod account. Returns volume IDs, names, sizes, and data center information.
runpod.runpod_list_endpoints Read none List all RunPod endpoints. Returns endpoint IDs, names, statuses, and configuration details.
runpod.runpod_list_serverless Read none List all serverless endpoints in your RunPod account. Returns endpoint IDs, names, statuses, and worker configurations.
runpod.runpod_get_current_user Read none Get the profile of the currently authenticated RunPod user, including name, email, and account details.

Automation Notes

Related RunPod CLI Pages