Use the TaxJar CLI from KosmoKrator to call TaxJar tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.
TaxJar can be configured headlessly with `kosmokrator integrations:configure taxjar`.
# 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 taxjar --set access_token="$TAXJAR_ACCESS_TOKEN" --enable --read allow --write ask --jsonkosmokrator integrations:doctor taxjar --jsonkosmokrator integrations:status --json
Credentials
Authentication type: Bearer tokenbearer_token. Configure credentials once, then use the same stored profile from
scripts, coding CLIs, Lua code mode, and the MCP gateway.
Key
Env var
Type
Required
Label
access_token
TAXJAR_ACCESS_TOKEN
Secret secret
yes
Access Token
Call TaxJar Headlessly
Use the generic call form when another coding CLI or script needs a stable universal interface.
Every function below can be called headlessly. The generic form is stable across all integrations;
the provider shortcut is shorter but specific to TaxJar.
taxjar.taxjar_list_orders
Read read
List order transactions from TaxJar with optional date filtering and pagination. Returns order details including transaction ID, amount, tax, and date.
List refund transactions from TaxJar with optional date filtering and pagination. Returns refund details including transaction ID, amount, tax, and date.
List all transactions (orders and refunds) from TaxJar with optional date filtering and pagination. Returns transaction details including ID, amount, tax, date, and type.
Use these parameter tables when building CLI payloads without calling integrations:schema first.
taxjar.taxjar_list_orders
List order transactions from TaxJar with optional date filtering and pagination. Returns order details including transaction ID, amount, tax, and date.
List refund transactions from TaxJar with optional date filtering and pagination. Returns refund details including transaction ID, amount, tax, and date.
Filter by start date (ISO 8601 format, e.g. 2024-01-01).
to_date
string
no
Filter by end date (ISO 8601 format, e.g. 2024-12-31).
limit
integer
no
Number of results per page.
offset
integer
no
Offset for pagination.
taxjar.taxjar_list_transactions
List all transactions (orders and refunds) from TaxJar with optional date filtering and pagination. Returns transaction details including ID, amount, tax, date, and type.
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.