sales
TaxJar CLI for Headless Automation
Use the TaxJar CLI for headless automation with headless JSON commands, schema discovery, credentials, and permission controls.
7 functions 7 read 0 write Bearer token auth
TaxJar CLI for Headless Automation
Use KosmoKrator as a non-interactive integration runtime for local automations and wrappers.
Use headless automation when another tool needs a stable local command surface. The TaxJar CLI uses the same integration registry as the TUI, Lua runtime, and MCP gateway, but returns predictable command output for automation.
Command Shape
# TaxJar CLI for Headless Automation
kosmokrator integrations:configure taxjar --set access_token="$TAXJAR_ACCESS_TOKEN" --enable --read allow --write ask --json
kosmo integrations:call taxjar.taxjar_list_orders '{"from_date":"example_from_date","to_date":"example_to_date","limit":1,"offset":1}' --json Discovery Before Execution
Agents and scripts can inspect TaxJar docs and schemas before choosing a function.
kosmo integrations:docs taxjar --json
kosmo integrations:docs taxjar.taxjar_list_orders --json
kosmo integrations:schema taxjar.taxjar_list_orders --json
kosmo integrations:search "TaxJar" --json
kosmo integrations:list --json Useful TaxJar CLI Functions
| Function | Type | Parameters | Description |
|---|---|---|---|
taxjar.taxjar_list_orders | Read | from_date, to_date, limit, offset | List order transactions from TaxJar with optional date filtering and pagination. Returns order details including transaction ID, amount, tax, and date. |
taxjar.taxjar_get_order | Read | id | Retrieve detailed information about a specific TaxJar order transaction by its ID, including amount, tax, shipping, line items, and addresses. |
taxjar.taxjar_list_refunds | Read | from_date, to_date, limit, offset | List refund transactions from TaxJar with optional date filtering and pagination. Returns refund details including transaction ID, amount, tax, and date. |
taxjar.taxjar_list_transactions | Read | from_date, to_date, limit, offset | List all transactions (orders and refunds) from TaxJar with optional date filtering and pagination. Returns transaction details including ID, amount, tax, date, and type. |
taxjar.taxjar_get_transaction | Read | id | Retrieve detailed information about a specific TaxJar transaction by its ID, including amount, tax, shipping, line items, and addresses. |
taxjar.taxjar_list_categories | Read | none | List all tax categories available in TaxJar. Returns category details including name, product tax code, and description. |
taxjar.taxjar_get_current_user | Read | none | Retrieve the current authenticated user information from TaxJar. Use this to verify credentials are working and check user 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.