KosmoKrator

sales

TaxJar CLI for Coding Agents

Use the TaxJar CLI for coding agents with headless JSON commands, schema discovery, credentials, and permission controls.

7 functions 7 read 0 write Bearer token auth

TaxJar CLI for Coding Agents

Let coding agents discover schemas and execute integration functions through CLI commands or MCP.

Use this pattern when another coding agent needs exact commands and schema discovery. 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 Coding Agents
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

FunctionTypeParametersDescription
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

Related TaxJar CLI Pages