Skip to content
Back to docs

CLI

ParcelOps CLI.

Reach every connector your workspace can access from the terminal. Sign in and make your first call.

The CLI and the SDKs are not published yet. Everything below describes the same endpoint you can call today over plain HTTP, and the examples work against it now.

Quickstart

From zero to first call.

1

List the tools you can reach

Until the CLI ships, this is the same call parcelops tools list makes. Any HTTP client works.

POST /api/mcp

Terminal

# The CLI is not on npm yet. Call the endpoint it wraps:
curl -X POST https://parcelops.ai/api/mcp \
  -H "Authorization: Bearer po_pat_xxxxxxxx" \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
2

Sign in

Sign in to ParcelOps, then list the tools you can reach to confirm the connection.

parcelops login

Terminal

parcelops login
parcelops tools list
3

Call a connector

Run any connector from the terminal. Pass arguments as JSON. ParcelOps returns the result, the logs, and the timing.

parcelops invoke

Terminal

parcelops invoke property-dossier getPropertyDossier --input '{
  "address": "<street>, <city>, <state>"
}'

What you get

Sign in once

Sign in once and reach the connectors your workspace can access from the terminal.

JSON results

Calls return JSON, plus logs and timing, ready to pipe into your own tools.

Isolated session

Your CLI session stays separate from the browser, and connector secrets never leave ParcelOps.

Next steps