CALL-E CLI Reference

May 22, 2026 ยท View on GitHub

This is the canonical reference for calle commands, options, defaults, and parameter examples. When changing CLI commands or options, update this document and any synchronized command guidance in the same change.

Commands

Successful command stdout is JSON except --help and -h. Some top-level or local failures may print plain stderr.

CommandPurposeRequired arguments
calle auth loginStart or finish brokered login and cache the token locally.None
calle auth statusShow local token and pending login cache status.None
calle auth logoutRemove local token and pending login cache files.None
calle mcp configPrint MCP client configuration JSON.None
calle mcp toolsList tools from the configured MCP server.None
calle mcp call <tool-name>Call an arbitrary MCP tool.<tool-name>
calle call planPlan a phone call through plan_call.--to-phone, --goal
calle call startPlan and run a phone call without printing confirmation data.--to-phone, --goal
calle call runRun a planned phone call, then fetch status once.--plan-id, --confirm-token
calle call statusQuery a call run through get_call_run.--run-id

Common Options

These options are accepted by all commands because runtime configuration is resolved before command dispatch. Some commands only use the subset relevant to their network requests or output.

OptionValueDefaultApplies toRequiredRepeatablePurposeExample
--help, -hBooleanfalseTop-level CLINoNoPrint help text and exit.calle --help
--base-urlURLhttps://seleven-mcp-sg.airudder.comAll commandsNoNoBase CALL-E service URL used to derive broker, auth, MCP, and telemetry URLs unless those are set separately.calle mcp tools --base-url https://example.test
--broker-base-urlURL--base-urlAuth commandsNoNoBroker API base URL for browser login sessions.calle auth login --broker-base-url https://example.test
--server-urlURL<base-url>/mcp/<channel>MCP and call commands, auth cache identityNoNoRemote MCP server URL and token cache identity.calle mcp tools --server-url https://example.test/mcp/openagent_oauth
--auth-base-urlURL--base-urlAuth commandsNoNoOAuth authorization base URL used by brokered login.calle auth login --auth-base-url https://example.test
--channelTextopenagent_oauthAll commandsNoNoMCP channel used when deriving --server-url. Ignored when --server-url is set.calle mcp config --channel openagent_oauth
--client-nameTextcalle LoginAuth commandsNoNoOAuth client display name sent during brokered login.calle auth login --client-name "calle Login"
--scopeTextopenid email profileAuth commandsNoNoOAuth scopes requested during brokered login.calle auth login --scope "openid email profile"
--cache-rootPath~/.calle-mcp/cliAll commandsNoNoDirectory for token, pending login, and telemetry cache files. ~ is expanded.calle auth status --cache-root ~/.calle-mcp/cli
--min-ttl-secondsNumber300Auth login/status, MCP and call token checksNoNoMinimum remaining token lifetime for a cached token to count as usable.calle auth status --min-ttl-seconds 60
--timeout-secondsNumber15Auth, MCP, and call network requestsNoNoRequest timeout in seconds.calle mcp tools --timeout-seconds 30
--poll-timeout-secondsNumber300auth loginNoNoMaximum time to poll for brokered login completion.calle auth login --poll-timeout-seconds 600
--server-nameTextcallemcp configNoNoMCP server key used in the generated client configuration.calle mcp config --server-name calle
--jsonBooleanfalseAll commandsNoNoAccepted for compatibility. Successful command stdout is already JSON except help.calle auth status --json

Auth Options

OptionValueDefaultApplies toRequiredRepeatablePurposeExample
--force-loginBooleanfalseauth loginNoNoStart a new brokered login even when a usable cached token or pending login exists.calle auth login --force-login
--start-onlyBooleanfalseauth loginNoNoCreate or reuse a pending login and print login_url without polling for completion.calle auth login --start-only --no-browser-open
--no-browser-openBooleanfalseauth loginNoNoDo not open the login URL in a browser. Useful for agents that display the URL to the user.calle auth login --no-browser-open

MCP Options

OptionValueDefaultApplies toRequiredRepeatablePurposeExample
--args-jsonJSON object{}mcp callNoNoJSON object passed as tool arguments. Required in practice for tools that need arguments.calle mcp call plan_call --args-json '{"user_input":"Call Alex"}'
--timezoneIANA timezoneSystem timezonemcp call plan_callNoNoAdds planning timezone metadata when calling plan_call.calle mcp call plan_call --timezone Asia/Shanghai --args-json '{"user_input":"Call Alex"}'

Call Options

OptionValueDefaultApplies toRequiredRepeatablePurposeExample
--to-phonePhone numberNonecall plan, call startYesYesDestination phone number. Provide one flag per number and do not infer country codes.calle call plan --to-phone +15551234567 --goal "Confirm the appointment"
--goalTextNonecall plan, call startYesNoCall goal or instruction for plan_call.calle call start --to-phone +15551234567 --goal "Confirm the appointment"
--languageTextNonecall plan, call startNoNoLanguage hint passed to plan_call. Only provide when explicitly known.calle call plan --to-phone +15551234567 --goal "Confirm" --language English
--regionTextNonecall plan, call startNoNoRegion hint passed to plan_call. Only provide when explicitly known.calle call plan --to-phone +15551234567 --goal "Confirm" --region US
--timezoneIANA timezoneSystem timezonecall plan, call start, call run, call statusNoNoAdds planning timezone metadata for planning commands and localizes returned call timestamps for run/status commands.calle call status --run-id run_123 --timezone Asia/Shanghai
--plan-idTextNonecall runYesNoPlanned call ID returned by plan_call. Preserve exactly.calle call run --plan-id plan_123 --confirm-token token_123
--confirm-tokenTextNonecall runYesNoExecution confirmation token returned by plan_call. Preserve exactly.calle call run --plan-id plan_123 --confirm-token token_123
--run-idTextNonecall statusYesNoCall run ID returned by run_call or call start.calle call status --run-id run_123
--cursorTextNonecall statusNoNoPagination cursor for get_call_run activity entries.calle call status --run-id run_123 --cursor cursor_123
--limitPositive integerNonecall statusNoNoMaximum number of activity entries to request.calle call status --run-id run_123 --limit 20

Telemetry Options

The CLI sends best-effort usage telemetry for setup, auth, and MCP readiness diagnostics. Telemetry does not include phone numbers, call goals, OAuth tokens, broker login URLs, full argument JSON, transcripts, or contact data.

OptionValueDefaultApplies toRequiredRepeatablePurposeExample
--no-telemetryBooleanfalseAll commandsNoNoDisable CLI telemetry for the invocation.calle mcp tools --no-telemetry
--telemetryBooleanEnvironment/defaultAll commandsNoNoEnable telemetry when set, or disable it with --telemetry=false. --no-telemetry takes precedence.calle auth status --telemetry=false
--telemetry-urlURL<base-url>/api/ui-telemetry/trackAll commandsNoNoOverride the telemetry endpoint. CALLE_TELEMETRY_URL is also supported.calle auth status --telemetry-url https://example.test/track
--telemetry-timeout-secondsNumber1.5All commandsNoNoTimeout for telemetry requests. Minimum effective timeout is 250 ms.calle auth status --telemetry-timeout-seconds 1

Telemetry can also be disabled with DO_NOT_TRACK=1 or CALLE_TELEMETRY=0.