CLI
The DialDozer CLI wraps the same API used by MCP. It is suited to shell automation, incident response, testing, and CI jobs.
Install and authenticate
Section titled “Install and authenticate”git clone https://github.com/brahimhamichan/dial-dozer.gitcd dial-dozerexport DIALDOZER_API_KEY='ddz_live_replace_me'node tools/dialdozer/bin/dialdozer.mjs doctorFor a shorter command, create a shell alias:
alias dialdozer='node /absolute/path/to/dial-dozer/tools/dialdozer/bin/dialdozer.mjs'Design
Section titled “Design”- JSON output on stdout for every successful command.
- Non-zero exit status on HTTP or validation errors.
- Safe structured JSON errors on stderr without secret values.
- API key and base URL from environment, never a command argument.
- Commands mirror API nouns and verbs.
dialdozer leads get 42dialdozer conversations get 42dialdozer cti lookup --phone '+1 555 123 4567'See command reference for every operation.