KosmoKrator

productivity

Ko-fi CLI for CI

Use the Ko-fi CLI for CI with headless JSON commands, schema discovery, credentials, and permission controls.

7 functions 7 read 0 write Bearer token auth

Ko-fi CLI for CI

Run integration calls from CI jobs with JSON output, explicit credentials, and predictable exit status.

Use this shape when a pipeline needs to read or update an external service. 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 CI
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

FunctionTypeParametersDescription
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 email 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

Related Ko-fi CLI Pages