Skip to content

Use Vexly with OpenClaw

The most straightforward OpenClaw path today is to call the Vexly public API from your OpenClaw workflow or scripts.

Prerequisites

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

Fastest Setup

Clone the public repo and use the reference CLI helper:

git clone https://github.com/just-strings/vexly-mcp.git
cd vexly-mcp
python3 cli/vexly.py run "Review last week's performance across all connected services and return the top 5 changes or risks"

Direct API Option

If you want to call Vexly from an OpenClaw automation or wrapper script:

curl -sS https://api.vexly.io/api/v1/public/agent/runs \
  -H "Authorization: Bearer $VEXLY_ACCESS_TOKEN" \
  -H 'Content-Type: application/json' \
  -d '{"prompt":"Review last week's performance across all connected services and return the top 5 changes or risks"}'

Verify It Worked

Poll the run until it completes:

python3 cli/vexly.py runs-get <run_id>

When to Use This Path

Use this when you want OpenClaw to hand off cross-service business analysis to Vexly without blocking the rest of your OpenClaw flow.