productivity
Ko-fi CLI for Cron Jobs
Use the Ko-fi CLI for cron jobs with headless JSON commands, schema discovery, credentials, and permission controls.
7 functions 7 read 0 write Bearer token auth
Ko-fi 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 Ko-fi CLI uses the same integration registry as the TUI, Lua runtime, and MCP gateway, but returns predictable command output for automation.
Command Shape
# Ko-fi CLI for Cron Jobs
kosmokrator integrations:configure ko-fi --set access_token="$KO_FI_ACCESS_TOKEN" --enable --read allow --write ask --json
kosmo integrations:call ko-fi.ko-fi_list_supporters '{"page":1,"limit":1}' --json Discovery Before Execution
Agents and scripts can inspect Ko-fi docs and schemas before choosing a function.
kosmo integrations:docs ko-fi --json
kosmo integrations:docs ko-fi.ko-fi_list_supporters --json
kosmo integrations:schema ko-fi.ko-fi_list_supporters --json
kosmo integrations:search "Ko-fi" --json
kosmo integrations:list --json Useful Ko-fi CLI Functions
| Function | Type | Parameters | Description |
|---|---|---|---|
ko-fi.ko-fi_list_supporters | Read | page, limit | List all supporters who have donated or subscribed to your Ko-fi page. Returns supporter names, emails, and contribution history. |
ko-fi.ko-fi_get_supporter | Read | Get detailed information about a single Ko-fi supporter by their email address. Returns full supporter profile including contribution history and status. | |
ko-fi.ko-fi_list_transactions | Read | type, page, limit | List all transactions on your Ko-fi page including donations, subscriptions, and shop orders. Returns transaction details with amounts and dates. |
ko-fi.ko-fi_list_commissions | Read | status, page, limit | List all commission requests on your Ko-fi page. Returns commission details including status, requester info, and pricing. |
ko-fi.ko-fi_get_commission | Read | commission_id | Get detailed information about a single Ko-fi commission by its ID. Returns full commission data including description, status, and requester details. |
ko-fi.ko-fi_list_shop_items | Read | page, limit | List all items in your Ko-fi shop. Returns item names, descriptions, prices, and availability. |
ko-fi.ko-fi_get_current_user | Read | none | Get the profile of the currently authenticated Ko-fi user. Useful to verify the connection and see account details. |
Automation Notes
- Use
--jsonfor machine-readable output. - Keep credentials out of argv by using environment variables or stored KosmoKrator configuration.
- Configure read/write policy before unattended runs; use
--forceonly for trusted automation. - Use the MCP gateway instead when the agent needs dynamic tool discovery inside a conversation.