other
Clearbit CLI for Cron Jobs
Use the Clearbit CLI for cron jobs with headless JSON commands, schema discovery, credentials, and permission controls.
6 functions 6 read 0 write API key auth
Clearbit 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 Clearbit CLI uses the same integration registry as the TUI, Lua runtime, and MCP gateway, but returns predictable command output for automation.
Command Shape
# Clearbit CLI for Cron Jobs
kosmokrator integrations:configure clearbit --set api_key="$CLEARBIT_API_KEY" --enable --read allow --write ask --json
kosmo integrations:call clearbit.clearbit_enrich_person '{"email":"example_email"}' --json Discovery Before Execution
Agents and scripts can inspect Clearbit docs and schemas before choosing a function.
kosmo integrations:docs clearbit --json
kosmo integrations:docs clearbit.clearbit_enrich_person --json
kosmo integrations:schema clearbit.clearbit_enrich_person --json
kosmo integrations:search "Clearbit" --json
kosmo integrations:list --json Useful Clearbit CLI Functions
| Function | Type | Parameters | Description |
|---|---|---|---|
clearbit.clearbit_enrich_person | Read | Look up a person by email address using Clearbit. Returns social profiles, employment, location, and demographic data when available. | |
clearbit.clearbit_enrich_company | Read | domain | Look up a company by domain name using Clearbit. Returns company metrics, industry categorization, social profiles, and funding data when available. |
clearbit.clearbit_reveal | Read | ip | Identify the company and person behind an IP address using Clearbit Reveal. Returns company information and, when available, the associated person. |
clearbit.clearbit_prospect | Read | title, company, page | Find people by job title and/or company name using Clearbit Prospecting. Returns names, titles, and email addresses when available. |
clearbit.clearbit_list_autocomplete | Read | name | Search for companies by name using Clearbit Autocomplete. Returns a list of matching companies with domains, logos, and descriptions. Useful for type-ahead search. |
clearbit.clearbit_get_current_user | Read | none | Get the authenticated user's Clearbit account information. Useful for verifying API credentials and checking plan 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.