KosmoKrator

other

Clearbit CLI for AI Agents

Use the Clearbit CLI from KosmoKrator to call Clearbit tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.

6 functions 6 read 0 write API key auth

Clearbit CLI Setup

Clearbit can be configured headlessly with `kosmokrator integrations:configure clearbit`.

# Install KosmoKrator first if it is not available on PATH.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash

# Configure and verify this integration.
kosmokrator integrations:configure clearbit --set api_key="$CLEARBIT_API_KEY" --enable --read allow --write ask --json
kosmokrator integrations:doctor clearbit --json
kosmokrator integrations:status --json

Credentials

Authentication type: API key api_key. Configure credentials once, then use the same stored profile from scripts, coding CLIs, Lua code mode, and the MCP gateway.

KeyEnv varTypeRequiredLabel
api_key CLEARBIT_API_KEY Secret secret yes API Key
url CLEARBIT_URL URL url no API Base URL

Call Clearbit Headlessly

Use the generic call form when another coding CLI or script needs a stable universal interface.

kosmo integrations:call clearbit.clearbit_enrich_person '{
  "email": "example_email"
}' --json

Use the provider shortcut form for shorter human-facing commands.

kosmo integrations:clearbit clearbit_enrich_person '{
  "email": "example_email"
}' --json

Agent Discovery Commands

These commands return structured output for coding agents that need to inspect capabilities 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

All CLI Functions

Every function below can be called headlessly. The generic form is stable across all integrations; the provider shortcut is shorter but specific to Clearbit.

clearbit.clearbit_enrich_person

Read read

Look up a person by email address using Clearbit. Returns social profiles, employment, location, and demographic data when available.

Parameters
email

Generic CLI call

kosmo integrations:call clearbit.clearbit_enrich_person '{"email":"example_email"}' --json

Provider shortcut

kosmo integrations:clearbit clearbit_enrich_person '{"email":"example_email"}' --json

clearbit.clearbit_enrich_company

Read read

Look up a company by domain name using Clearbit. Returns company metrics, industry categorization, social profiles, and funding data when available.

Parameters
domain

Generic CLI call

kosmo integrations:call clearbit.clearbit_enrich_company '{"domain":"example_domain"}' --json

Provider shortcut

kosmo integrations:clearbit clearbit_enrich_company '{"domain":"example_domain"}' --json

clearbit.clearbit_reveal

Read read

Identify the company and person behind an IP address using Clearbit Reveal. Returns company information and, when available, the associated person.

Parameters
ip

Generic CLI call

kosmo integrations:call clearbit.clearbit_reveal '{"ip":"example_ip"}' --json

Provider shortcut

kosmo integrations:clearbit clearbit_reveal '{"ip":"example_ip"}' --json

clearbit.clearbit_prospect

Read read

Find people by job title and/or company name using Clearbit Prospecting. Returns names, titles, and email addresses when available.

Parameters
title, company, page

Generic CLI call

kosmo integrations:call clearbit.clearbit_prospect '{"title":"example_title","company":"example_company","page":1}' --json

Provider shortcut

kosmo integrations:clearbit clearbit_prospect '{"title":"example_title","company":"example_company","page":1}' --json

clearbit.clearbit_list_autocomplete

Read read

Search for companies by name using Clearbit Autocomplete. Returns a list of matching companies with domains, logos, and descriptions. Useful for type-ahead search.

Parameters
name

Generic CLI call

kosmo integrations:call clearbit.clearbit_list_autocomplete '{"name":"example_name"}' --json

Provider shortcut

kosmo integrations:clearbit clearbit_list_autocomplete '{"name":"example_name"}' --json

clearbit.clearbit_get_current_user

Read read

Get the authenticated user's Clearbit account information. Useful for verifying API credentials and checking plan details.

Parameters
none

Generic CLI call

kosmo integrations:call clearbit.clearbit_get_current_user '{}' --json

Provider shortcut

kosmo integrations:clearbit clearbit_get_current_user '{}' --json

Function Schemas

Use these parameter tables when building CLI payloads without calling integrations:schema first.

clearbit.clearbit_enrich_person

Look up a person by email address using Clearbit. Returns social profiles, employment, location, and demographic data when available.

Operation
Read read
Schema command
kosmo integrations:schema clearbit.clearbit_enrich_person --json
ParameterTypeRequiredDescription
email string yes The email address of the person to look up (e.g., "[email protected]").

clearbit.clearbit_enrich_company

Look up a company by domain name using Clearbit. Returns company metrics, industry categorization, social profiles, and funding data when available.

Operation
Read read
Schema command
kosmo integrations:schema clearbit.clearbit_enrich_company --json
ParameterTypeRequiredDescription
domain string yes The company domain to look up (e.g., "stripe.com").

clearbit.clearbit_reveal

Identify the company and person behind an IP address using Clearbit Reveal. Returns company information and, when available, the associated person.

Operation
Read read
Schema command
kosmo integrations:schema clearbit.clearbit_reveal --json
ParameterTypeRequiredDescription
ip string yes The IP address to look up (IPv4 or IPv6, e.g., "104.193.168.24").

clearbit.clearbit_prospect

Find people by job title and/or company name using Clearbit Prospecting. Returns names, titles, and email addresses when available.

Operation
Read read
Schema command
kosmo integrations:schema clearbit.clearbit_prospect --json
ParameterTypeRequiredDescription
title string no Job title to search for (e.g., "CEO", "Software Engineer", "VP of Sales").
company string no Company name to filter by (e.g., "Stripe", "Google").
page integer no Page number for pagination (default: 1).

clearbit.clearbit_list_autocomplete

Search for companies by name using Clearbit Autocomplete. Returns a list of matching companies with domains, logos, and descriptions. Useful for type-ahead search.

Operation
Read read
Schema command
kosmo integrations:schema clearbit.clearbit_list_autocomplete --json
ParameterTypeRequiredDescription
name string yes Company name or prefix to search for (e.g., "Stripe", "Goo").

clearbit.clearbit_get_current_user

Get the authenticated user's Clearbit account information. Useful for verifying API credentials and checking plan details.

Operation
Read read
Schema command
kosmo integrations:schema clearbit.clearbit_get_current_user --json
ParameterTypeRequiredDescription
No parameters.

Permissions

Headless calls still follow the integration read/write permission policy. Configure read/write defaults with integrations:configure. Add --force only for trusted automation that should bypass that policy.