Quickstart
From zero to first call.
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"}'Sign in
Sign in to ParcelOps, then list the tools you can reach to confirm the connection.
parcelops login
Terminal
parcelops login
parcelops tools listCall 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.
