Skip to content

Vexly CLI

Use the Vexly CLI when you want a lightweight terminal wrapper around the public API.

What It Is Good For

  • One-off prompts from a shell
  • Simple scripting without a full SDK
  • A compatibility layer for agent-driven business workflows

Reference Implementation

The public reference CLI lives here:

Environment Variables

export VEXLY_BASE_URL='https://api.vexly.io/api/v1/public'
export VEXLY_ACCESS_TOKEN='your_token_here'

Run a Prompt

python3 vexly.py run "Review last week's performance across all connected services"

Check a Run

python3 vexly.py runs-get <run_id>

Start Device Flow

python3 vexly.py login --device

Use the CLI when you want a thin layer over the API. If your editor or coding-agent client already supports MCP well, use the MCP guide instead.