Quickstart
Install the CLI, sign in, pick an organization, inspect your first workspace state.
Requires Node.js >=22.22.0 and npm >=10.9.0.
1. Install
npm install -g @oxygen-agent/cli
oxygen loginoxygen login opens a browser and stores credentials for the active CLI profile. To update later:
oxygen update
oxygen status --json2. Pick an organization
oxygen orgs list --json
oxygen orgs use <slug>
oxygen whoami --jsonoxygen whoami returns the active organization plus an onboarding block. If onboarding.complete is false, load or review workspace context before asking an agent to source leads, write copy, or run paid enrichment.
3. Inspect or create a table
oxygen tables list --json
oxygen tables preview <table-id-or-slug> --limit 10 --jsonTo start from a CSV:
oxygen tables import --create "Starter TAM" --file leads.csv --background --jsonTo create an empty table:
oxygen tables create "Starter TAM" \
--columns-json '[{"label":"Company Domain","key":"domain","data_type":"text","semantic_type":"company_domain"},{"label":"Company Name","key":"company_name","data_type":"text"},{"label":"Source","key":"source","data_type":"text"}]' \
--jsonState-changing and inspectable commands return a web_url when there is a matching web view.
4. Connect an AI assistant
Claude Desktop can connect to the hosted Oxygen MCP server at:
https://oxygen-agent.com/mcpAfter connecting, ask Claude to call oxygen_whoami, then oxygen_context_resolve or oxygen_tables_list. If your agent environment does not support the hosted connector, use the CLI directly and install the agent skills:
oxygen skills install --agents codex claude-code cursor --skill '*' --jsonThe skills teach agents how to use the CLI/MCP surfaces safely: context first, table first, dry run before live work, and inspect runs after execution.