Skip to content

CLI Overview

The DataRecs CLI (datarecs) lets you manage workspaces, connections, jobs, runs, webhooks, SSO, encryption, storage, and more from your terminal.

The CLI is published as @datarecs/cli on the DataRecs package registry. Configure your npm client for that registry (per your onboarding instructions), then:

Terminal window
npm install -g @datarecs/cli
Terminal window
datarecs auth login --company your-company-slug

auth login uses the OAuth device flow — it prints a code and a URL to complete in your browser. The company (tenant) slug is required (pass --company/-c, set DATARECS_TENANT, or let the CLI prompt) so the platform can route you to the right cell.

Your access token is stored securely in your operating system’s keychain (not in a plaintext file).

For non-interactive/CI use, set DATARECS_API_KEY to a tenant API key (format dtrcs:<tenant_id>:<key_id>:<secret>) — this skips the device-code flow entirely and also switches output to JSON automatically (detected as a CI/scripted context), even without --json.

Non-secret settings live in ~/.datarecs/config.json. Set a value:

Terminal window
datarecs config set apiUrl https://api.datarecs.io

Valid keys are apiUrl, outputFormat, and namespace. View the current config:

Terminal window
datarecs config view
datarecs <topic> <action> [options]

Common topics (run datarecs <topic> --help for actions and flags):

TopicWhat it manages
authLogin, token refresh
configLocal CLI configuration
workspacesWorkspaces
connectionsData source connections (and connections reservations)
jobsReconciliation jobs, plus jobs runs and jobs schedules
job-groupsGrouping of related jobs
webhooksWebhook endpoints, subscriptions, deliveries, secrets, test events
encryptionBring-your-own-key (BYOK) configuration & migration
storageBring-your-own-storage (BYOS) configuration & migration
ssoSSO / SCIM connectors
connectorsOIDC connectors
email-recipient-rules, settingsEmail notification routing & settings
audit-log, usersAudit log access, users me

Output defaults to a table; pass --json for machine-readable output.

Run datarecs --help or datarecs <topic> --help for full usage details. Note that resource topics are plural (workspaces, connections, jobs), and there is no api-key topic — API keys are managed in the Console, via the REST API, or with Terraform.

datarecs --help groups topics into readable sections — Reconciliation resources, Authentication & identity, Tenant configuration, Webhooks, Audit, Support, and CLI setup & tools — instead of one long alphabetical list.

The CLI can serve DataRecs to AI tools over the Model Context Protocol:

Terminal window
datarecs mcp serve

This runs a local MCP server with the full read/write tool set. For the hosted connector and connection examples for Claude Code, Claude Desktop, and Cursor, see Connect DataRecs to AI tools (MCP).

The CLI can send anonymous usage analytics to help us improve it. It is opt-in and off by default — nothing is sent unless you turn it on, and it never includes your company slug, resource ids, credentials, command arguments, or flag values.

Terminal window
datarecs config telemetry # show the current state
datarecs config telemetry enable # opt in
datarecs config telemetry disable # opt out

On a first interactive run the CLI asks once. Automated environments never send or prompt: telemetry stays off in CI, in non-interactive sessions, and whenever DO_NOT_TRACK is set.