Skip to main content

Command line reference

All commands use uv run agent-engine <command>. Use --help on any command for full options.

Global flags

FlagDescription
--config-dir, -dConfig directory (default: ~/.airbyte_agent_mcp). Can also be set with the AIRBYTE_CONFIG_DIR environment variable.
--orgOrganization ID to use, overriding the default set by agent-engine login.

agent-engine connectors list-oss

List available open source connectors from the Airbyte registry.

uv run agent-engine connectors list-oss
uv run agent-engine connectors list-oss --pattern salesforce
FlagDescription
--pattern, -pFilter connectors by name

agent-engine connectors list-cloud

List connectors configured in your Agent Engine organization. Requires agent-engine login first.

uv run agent-engine connectors list-cloud
uv run agent-engine connectors list-cloud --customer acme
FlagDescription
--customer, -cFilter by customer name
--customer-idFilter by customer ID

agent-engine connectors configure

Generate a connector configuration file by inspecting the connector's authentication requirements.

uv run agent-engine connectors configure --package airbyte-agent-gong
uv run agent-engine connectors configure --connector-id <your-connector-id>
FlagDescription
--packagePyPI package name, local path, or git+https:// URL
--connector-id, -cAgent Engine connector ID
--version, -vPackage version (PyPI only)
--filename, -fOutput file path (auto-generated if not specified)
--overwrite, -oOverwrite the output file if it already exists

agent-engine login

Save Agent Engine credentials to the global config directory. Prompts for your Client ID and Secret, then stores them for subsequent commands.

uv run agent-engine login <organization-id>
FlagDescription
<organization-id>Your Agent Engine organization ID (required)

agent-engine orgs

Manage logged-in organizations.

uv run agent-engine orgs list
uv run agent-engine orgs default
uv run agent-engine orgs default <org-id>
SubcommandDescription
listList all logged-in organizations
defaultShow the default organization
default <org-id>Set the default organization

agent-engine mcp serve

Start the MCP server with a connector configuration.

uv run agent-engine mcp serve connector-gong-package.yaml
uv run agent-engine mcp serve connector-gong-package.yaml --transport http --port 8080
FlagDefaultDescription
--transport, -tstdioTransport protocol (stdio or http)
--host, -h127.0.0.1Host to bind to (HTTP only)
--port, -p8000Port to bind to (HTTP only)

agent-engine mcp add-to

Register the MCP server with an agent. Supported targets: claude-code, claude-desktop, cursor, codex.

uv run agent-engine mcp add-to claude-code connector-gong-package.yaml
uv run agent-engine mcp add-to cursor connector-gong-package.yaml --scope project
FlagDefaultDescription
--name, -nAutoName for the MCP server (default: airbyte-<connector>)
--scope, -suserConfiguration scope: user or project (Claude Code, Cursor)

agent-engine chat

Chat with connector data using natural language in the terminal. Uses Claude and requires an ANTHROPIC_API_KEY environment variable. Pass a prompt argument for one-shot mode, or omit it to start an interactive REPL.

uv run agent-engine chat connector-gong-package.yaml "show me 5 recent calls"
uv run agent-engine chat connector-gong-package.yaml
FlagDefaultDescription
--model, -mclaude-opus-4-6Anthropic model to use
--quiet, -qfalseOnly show the final answer (hide tool calls)