instantly-cli
CLI and MCP server for the Instantly.ai cold email platform
File Explorer
- get.ts
- index.ts
- create.ts
- ctd-status.ts
- delete.ts
- get.ts
- index.ts
- list.ts
- mark-fixed.ts
- pause.ts
- resume.ts
- test-vitals.ts
- update.ts
- warmup-disable.ts
- warmup-enable.ts
- campaign-overview.ts
- campaign-steps.ts
- campaign.ts
- daily-account.ts
- daily-campaign.ts
- index.ts
- warmup.ts
- create.ts
- delete.ts
- index.ts
- list.ts
- index.ts
- list.ts
- login.ts
- logout.ts
- oauth.ts
- status.ts
- get.ts
- index.ts
- list.ts
- create.ts
- delete.ts
- get.ts
- index.ts
- list.ts
- update.ts
- activate.ts
- bulk-activate.ts
- bulk-pause.ts
- count-launched.ts
- create.ts
- delete.ts
- duplicate.ts
- get.ts
- index.ts
- list.ts
- pause.ts
- search-by-contact.ts
- sending-status.ts
- update.ts
- delete-phone-number.ts
- list-phone-numbers.ts
- create.ts
- delete.ts
- get.ts
- list.ts
- update.ts
- list.ts
- create.ts
- delete.ts
- get.ts
- index.ts
- list.ts
- toggle.ts
- update.ts
- cancel.ts
- check-domains.ts
- create.ts
- list-accounts.ts
- list.ts
- pre-warmed.ts
- similar-domains.ts
- delete.ts
- forward.ts
- get.ts
- index.ts
- list.ts
- mark-read.ts
- reply.ts
- unread-count.ts
- update.ts
- create.ts
- delete.ts
- get.ts
- list.ts
- update.ts
- index.ts
- status.ts
- verify.ts
- ai-progress.ts
- ai.ts
- count.ts
- create.ts
- enrich.ts
- enrichment-types.ts
- get.ts
- history.ts
- index.ts
- preview.ts
- run.ts
- search-filters.ts
- update-settings.ts
- index.ts
- create.ts
- delete.ts
- esp-options.ts
- get.ts
- index.ts
- list.ts
- update.ts
- get.ts
- insights.ts
- list.ts
- stats-by-date.ts
- stats-by-test.ts
- get.ts
- list.ts
- create.ts
- delete.ts
- get.ts
- index.ts
- list.ts
- test-ai.ts
- update.ts
- create.ts
- delete.ts
- get.ts
- index.ts
- list.ts
- update.ts
- verification-stats.ts
- bulk-add.ts
- bulk-assign.ts
- bulk-delete.ts
- create.ts
- delete.ts
- get.ts
- index.ts
- list.ts
- merge.ts
- move.ts
- remove-from-subsequence.ts
- subsequence-move.ts
- update-interest-status.ts
- update.ts
- index.ts
- index.ts
- create.ts
- delete.ts
- get.ts
- list.ts
- update.ts
- create.ts
- delete.ts
- duplicate.ts
- index.ts
- list.ts
- pause.ts
- resume.ts
- sending-status.ts
- update.ts
- get.ts
- list.ts
- summary-by-date.ts
- summary.ts
- create.ts
- delete.ts
- event-types.ts
- get.ts
- index.ts
- list.ts
- resume.ts
- test.ts
- update.ts
- change-owner.ts
- credits.ts
- get.ts
- index.ts
- update.ts
- whitelabel-create.ts
- whitelabel-delete.ts
- whitelabel-get.ts
- plan-details.ts
- subscription-details.ts
- create.ts
- delete.ts
- get-admin.ts
- get.ts
- list.ts
- create.ts
- delete.ts
- get.ts
- index.ts
- list.ts
- update.ts
- index.ts
- auth.ts
- client.ts
- command-context.ts
- config.ts
- errors.ts
- format.ts
- handler.ts
- login-store.ts
- mutating.ts
- output.ts
- profiles.ts
- sequences.ts
- types.ts
- workspace.ts
- server.ts
- index.ts
- mcp.ts
- program.ts
- agency-mode.test.ts
- login-profile.test.ts
- account-mappings.test.ts
- accounts.test.ts
- analytics.test.ts
- api-keys.test.ts
- audit-logs.test.ts
- background-jobs.test.ts
- blocklist.test.ts
- campaigns.test.ts
- custom-tags.test.ts
- email-verification.test.ts
- email.test.ts
- enrichment.test.ts
- health.test.ts
- inbox-placement.test.ts
- lead-labels.test.ts
- lead-lists.test.ts
- leads.test.ts
- registry.test.ts
- subsequences.test.ts
- webhooks.test.ts
- workspace-members.test.ts
- workspace.test.ts
- agency-groups.test.ts
- auth.test.ts
- client.test.ts
- command-context.test.ts
- errors.test.ts
- format.test.ts
- handler.test.ts
- mutating.test.ts
- output.test.ts
- profiles.test.ts
- sequences.test.ts
- .gitignore
- AGENTS.md
- CLAUDE.md
- gemini-extension.json
- install.sh
- INSTANTLY.md
- package-lock.json
- package.json
- README.md
- SKILL.md
- tsconfig.json
- tsup.config.ts
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
npm install
View Details ▼
npm install
Install Node packages.
npm {{[i|install]}}
Install dependencies listed in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}
Download the latest version of a package and add it to the list of dev dependencies in `package.json`:
npm link
View Details ▼
npm link
Symlink a local package into the global `node_modules` or another project for development.
npm {{[ln|link]}}
Symlink the current package globally:
npm {{[ln|link]}} {{package_name}}
Link a globally linked package into another project's `node_modules`:
npm {{[r|unlink]}} {{package_name}}
Unlink a package from the current project:
npm run
View Details ▼
npm run
Run a script.
npm run
List available scripts:
npm run {{script_name}}
Run a script:
npm run {{script_name}} -- {{argument}} {{--option}}
Pass arguments to a script:
npx
View Details ▼
npx
This command is an alias of `npm exec`.
tldr npm exec
View documentation for the original command:
