> ## Documentation Index
> Fetch the complete documentation index at: https://docs.boxd.sh/llms.txt
> Use this file to discover all available pages before exploring further.

# Connections

> Connect an account once, for yourself or for your whole organization, and every machine and script you own can act as it.

An **integration** is a service in the catalog, Linear or Slack or GitHub. A **connection** is one account for it that you or your organization authorized, and it is what your machines and scripts act as. You connect it **once**, at the account level, and it is available from every personal machine you own. There is nothing to configure per machine and no token to copy around. The credential never enters a machine, since every call is made on the machine's behalf by the platform.

Over a hundred integrations are available: Linear, Slack, Notion, Jira, HubSpot, Stripe, the Google suite, Salesforce, Zendesk, Vercel, OpenAI and many more. [Every one of them is listed below](#every-integration). The live version of that list, with each integration's tools and triggers shown before you connect, is on the [console's **Integrations** page](https://app.boxd.sh/integrations) and in `run list` inside any machine. Every integration is connected and used the way this page describes. [GitHub](#github) also authenticates `git` and `gh` and offers an organization-wide App, covered below. Slack comes in two forms, **Slack** (`slack`, acts as you) and **Slack (Bot)** (`slackbot`, acts as a bot user), so pick the one that matches how you want messages to appear.

## Personal and shared connections

Every connection has a **scope**:

| Scope                                      | Who can use it                          | Who can create it |
| ------------------------------------------ | --------------------------------------- | ----------------- |
| **Personal**                               | You, from your own machines and scripts | Anyone            |
| **Shared**, under a name such as `billing` | Everyone in the organization            | Any member        |

A personal connection is the default. You can have **one personal connection per integration**.

A shared connection is an account you connect *for the organization* under a name. Any member can share one. It stays yours to remove, and an org admin can remove it too. The org can hold several shared connections for the same integration, two GitHub orgs or a production Linear and a billing Linear, because the name tells them apart. Scripts address one as `linear.scoped("billing")`, and the CLI as `--scope billing`.

<Note color="#E05A6D">
  A shared connection's name is **fixed at creation**. There is no rename, because every script that references `scoped("billing")` would silently break. Pick the name you want to keep.
</Note>

Naming rules: names are lowercased and non-alphanumeric characters become `-`. Leaving the name blank gives you `shared`. The name `personal` is reserved, since it already means your own connection. A name already used for that integration in your org is refused: *this organization already has a linear connection named "billing" - pick another name*.

Connections never cross an organization boundary. A connection made in one org is invisible from another.

## Connect

### From the console

Open the [**Integrations** page](https://app.boxd.sh/integrations) in the console. The **Connected** section at the top has **Personal** (the default) and **Shared** tabs, splitting your own connections from the organization's. Below it, **Available** lists everything you can add, with **Suggested** services first: the ones your teammates already use, plus a few recommendations. Search across the catalog with the search box. If nothing matches, **Suggest an integration** sends the request straight to the boxd team.

Click an integration to open its connect dialog. It tells you what kind of sign-in to expect, an OAuth sign-in for most integrations or an API key you paste for a few, and shows the **tools** and **triggers** it brings to your scripts.

To share the connection with your team, switch on **Connect for the entire organization** and, optionally, give it a **connection name**. Then click **Connect** (or **Connect for organization**). You're sent to the provider to approve, and land back on the Integrations page with the new connection at the top.

An already-connected integration stays in the Available list with a check mark, because connecting it again under another scope is a normal thing to do.

### From a machine

Inside any machine, the [`run` CLI](/cli/run) connects for you:

```bash theme={"theme":"github-dark"}
run auth linear                    # your own connection
run auth linear --scope billing    # a shared connection named "billing", for the whole org
```

```
Open this to connect linear:

  https://app.boxd.sh/integrations/connect/linear?org=…

Waiting for you to finish in the browser… (Ctrl-C to stop waiting)
✓ linear connected
```

Open the URL in any browser and approve. The CLI notices on its own. The browser step is why a **human** has to complete a connect. An agent can start it but can't click through the consent screen. Connect links are valid for 15 minutes. If the CLI gives up waiting after three minutes it says so, and the connection still takes effect on its own once you finish in the browser.

## See what's connected

From a machine:

```bash theme={"theme":"github-dark"}
run              # the integrations enabled for your team, and whether each is connected
run auth         # every connection: integration, scope, who connected it
run list         # connected integrations plus the catalog of what you can add (--all for the whole catalog)
```

```text theme={"theme":"github-dark"}
$ run auth
TOOLKIT            SCOPE                BY               NOTE
linear             personal             Alice Example
github             scope: billing       Bob Example
```

`--json` on any of these prints a machine-readable version. On your laptop, `boxd manage integrations` shows the same connections as a read-only overview.

## Use a connection

A connection is used through the [`run` CLI](/cli/run) and the [`@boxd/run` SDK](/guides/automations/scripts):

```bash theme={"theme":"github-dark"}
run linear list-issues                     # your personal connection
run linear list-issues --scope billing     # the org's "billing" connection
run linear list-issues --scope             # list the scopes available to you
```

```ts theme={"theme":"github-dark"}
import { linear } from "@boxd/run";

const mine = await linear.listIssues({});                    // personal
const shared = await linear.scoped("billing").listIssues({}); // shared
```

Calling an integration you haven't connected fails immediately with the link to fix it:

```
run: list-issues failed: not connected: linear (personal)

Connect it here:

  https://app.boxd.sh/integrations/connect/linear?org=…
```

The message names the **scope** as well as the integration (`linear (personal)`, `linear (scope: billing)`). A personal Linear does not satisfy `linear.scoped("billing")`, and the link connects the right one.

### Enabled for the team

Once anyone in your organization connects an integration, or a script declares it, that integration is **enabled for the team**. Every member's machines get its typed SDK, CLI commands and tab-completion, whether or not they've connected it themselves, and you only hit the "not connected" message when you actually call it. Enabled integrations never go away, even after a disconnect, so teammates' scripts keep type-checking.

## Where connections are available

| Machine                                                | Connections available                                         |
| ------------------------------------------------------ | ------------------------------------------------------------- |
| Your personal machines and private org-billed machines | Your personal connections, plus the org's shared ones         |
| Shared org machines                                    | The org's **shared** connections only                         |
| Isolated machines (`--isolated`)                       | None. Isolated machines have no `run` CLI and no integrations |

A shared machine is reachable by everyone in the organization, so it never acts as any member. It uses the team's shared connections and nothing else. Calling an integration there without a scope works when the org has exactly one shared connection for it. Otherwise:

```text theme={"theme":"github-dark"}
run: get-issue failed: not connected: linear - this is a SHARED machine, so it uses the team's shared connections, never a member's personal one

Connect it here:

  https://app.boxd.sh/integrations/connect/linear?org=…&scope=org-shared
```

The fix is a shared connection (`run auth linear --scope <name>`, or the console's **Connect for the entire organization** toggle), which any member makes once for the whole team. For GitHub specifically, the [GitHub App](#the-github-app) is the credential built for shared machines.

### Which connection an unscoped call uses

An unscoped call means "whichever is mine": your own personal connection if you have one, otherwise the org's single shared connection if there is exactly one. When several shared connections could serve it, the call stops and names them:

```text theme={"theme":"github-dark"}
run: list-issues failed: linear has 2 connections here and no default - re-run with --scope <name>: billing, ops

  --scope billing
  --scope ops
```

An explicitly named scope that doesn't exist is a plain miss. boxd never substitutes a different account for the one you asked for.

## GitHub

GitHub is the one integration with extra machinery, because it also has to authenticate `git` and `gh`. It reaches your machines three ways:

1. **Repo access** (personal): connect once and `git` and `gh` work with your private repositories from every machine you own. Keys and tokens are handled for you.
2. **A GitHub connection** (personal or shared): the ordinary integration described above, for `run github create-issue …` and `gh.on("issue-created", …)` in scripts.
3. **The GitHub App** (organization-wide): installed on your GitHub organization by an org admin. It authenticates `git` and `gh` on every machine, shared ones included, and gives scripts an authenticated Octokit client and typed webhook events, with nothing to connect per person.

The first is what most people set up on day one. The second is a one-click upgrade when you write your first automation. The third is what a team uses.

### Repo access

Connect it from the **Connect GitHub** step during onboarding, or from your laptop with `boxd manage integrations connect github`, which prints an authorize URL to approve in a browser. boxd requests the `repo` and `user:email` scopes. The token never enters a machine. A credential helper fetches it on demand for git operations, and `gh` gets it per call. Git SSH URLs (`git@github.com:...`) are rewritten to HTTPS, so both URL styles work.

```bash theme={"theme":"github-dark"}
ssh myapp.boxd
git clone https://github.com/you/private-repo.git
gh pr create --fill
```

On a **shared** org machine, `git` and `gh` use the organization's [GitHub App](#the-github-app) instead of anyone's personal grant, so a teammate's shell on a shared box never sees your token.

### Connect for automations

Once repo access is connected, GitHub appears under **Connected** with a **git only** badge and a **Connect for automations** button, which sends you straight to GitHub to authorize the automations connection. From a machine, `run auth github` does the same. `git` and `gh` keep working exactly as before. This only *adds* the tools and triggers. Until then, `run auth` and `run list` mark the connection as *limited - reconnect for automations*, and a script that uses `gh` waits with *waiting on github (personal)*. Like every integration, GitHub can also be connected for the organization under a name, `gh.scoped("acme-org")`.

```ts theme={"theme":"github-dark"}
import { gh } from "@boxd/run";   // `github` and `gh` are the same integration

gh.on("issue-created", { owner: "acme", repo: "widgets" }, async (event) => {
  console.log("new issue", event.data.title);
});
```

### The GitHub App

The boxd GitHub App is the GitHub credential built for teams. An org admin installs it from the console's **Integrations** page. The **GitHub App** card sits under **Available**, and clicking it starts the install on GitHub. Repo access is whatever your GitHub org grants the App. Once installed it appears under **Connected → Shared**. From then on:

<Note color="#E05A6D">
  **One installation per organization.** The App is the team's single GitHub identity. It has no personal form and no connection name, so `githubApp` takes no scope. Installing it on a second GitHub account is refused rather than silently repointing every automation that uses it. Remove the current installation on GitHub first (**Manage** on its row). If the App was uninstalled on GitHub and boxd hasn't noticed, installing again just works.
</Note>

* `git` and `gh` are authenticated in **every** machine in the organization, shared ones included, with nothing to connect per person. Tokens are short-lived and org-scoped.
* Scripts get it as `githubApp`:

```ts theme={"theme":"github-dark"}
import { githubApp } from "@boxd/run";

const gh = await githubApp.client();          // an authenticated Octokit
const { data } = await gh.rest.pulls.list({ owner: "acme", repo: "widgets" });

githubApp.on("pull_request.opened", { repo: "acme/widgets" }, async (pr) => {
  await gh.rest.issues.createComment({ owner: "acme", repo: "widgets", issue_number: pr.number, body: "on it" });
});
```

`githubApp.on(event, handler)` takes the webhook events the boxd App subscribes to (pull requests and reviews, issues and comments, pushes, branches and tags, releases, commit comments, check runs and suites, statuses, workflows, and deployments), optionally qualified by action (`"issues.closed"`) and filtered to repositories with `{ repo }`. Autocomplete lists them, and payloads are typed against GitHub's webhook schemas. `githubApp.getToken()` returns a fresh installation token (about an hour, minted per call, so don't cache it), and `run github-app get-token` does the same from the shell.

If the App isn't installed, any call tells you so with the link. When boxd's App later gains permissions or events your installation doesn't have yet, the console's GitHub App row says *More available - reconnect to grant …* with a **Reconnect** button. Everything keeps working with what was granted until you do. The App is administered on GitHub. Its row offers **Manage**, which opens GitHub's installation page, where you scope it to repositories or uninstall it. Uninstalling there is picked up automatically and the row disappears.

## Disconnect

From the console, click **Disconnect** on the connection's row under **Connected**. Your own personal connection you can always remove. A shared connection can be removed by the person who connected it or by any org admin. That is also how an org recovers a connection whose owner has left: disconnect it, then connect it again under the same name.

Disconnecting stops every automation that depends on that connection (they show as **Waiting to connect** until it's connected again) and revokes boxd's access at the provider where the provider supports it.

GitHub has separate rows for repo access and the automations connection, removable independently. Removing repo access revokes the grant at GitHub, and running machines lose access on their next git operation. The GitHub App is removed on GitHub instead (see **Manage** above).

## Permissions

| Action                                | Who                                           |
| ------------------------------------- | --------------------------------------------- |
| Connect for yourself                  | Any member                                    |
| Connect for the organization          | Any member                                    |
| Disconnect a personal connection      | Its owner                                     |
| Disconnect a shared connection        | The person who connected it, or any org admin |
| Install or manage the GitHub App      | Org admin or owner                            |
| See who connected a shared connection | Any member (shown as *by Name* on the row)    |

## Every integration

128 integrations. Click one for what it does and the id you type (`run <id> <tool>`, or the SDK import), then open its page for every tool, every trigger and how to connect it. **Tools** are the actions a script or the CLI can call; **triggers** are the events it can subscribe to with `.on(...)`. Only 36 integrations have triggers, so one with none can be called but not reacted to.

Connect any of them the same way: the [Integrations page in the console](https://app.boxd.sh/integrations), or `run auth <id>` from a machine. The catalog changes over time, so treat the console's page and `run list` as authoritative.

<AccordionGroup>
  <Accordion title="Airtable" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/airtable.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=170ec51849167dd52f391ac20b3e46ab" width="128" height="128" data-path="images/logos/airtable.svg">
    Airtable merges spreadsheet functionality with database power, enabling teams to organize projects, track tasks, and collaborate through customizable views, automation, and integrations for data management

    `airtable` · **26 tools** · **6 triggers**

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/airtable)
  </Accordion>

  <Accordion title="Amplitude" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/amplitude.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=847fcee70637c63fafd779e627ea7842" width="128" height="128" data-path="images/logos/amplitude.svg">
    Amplitude gives you the self-serve tools and real-time data to make products and experiences that win no matter what.

    `amplitude` · **54 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/amplitude)
  </Accordion>

  <Accordion title="Apollo" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/apollo.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=6039b6192b848b8508e3dcc6bd68bd98" width="128" height="128" data-path="images/logos/apollo.svg">
    Apollo provides CRM and lead generation capabilities, helping businesses discover contacts, manage outreach, and track sales pipelines for consistent customer relationship development

    `apollo` · **48 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/apollo)
  </Accordion>

  <Accordion title="Asana" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/asana.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=0bda8460c04a5aeb788ffd3e52a4ed9f" width="128" height="128" data-path="images/logos/asana.svg">
    Tool to help teams organize, track, and manage their work.

    `asana` · **153 tools** · **6 triggers**

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/asana)
  </Accordion>

  <Accordion title="Attio" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/attio.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=0bcdb572084558251586dbc5234ed7be" width="128" height="128" data-path="images/logos/attio.svg">
    Attio is a fully customizable workspace for your team's relationships and workflows.

    `attio` · **108 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/attio)
  </Accordion>

  <Accordion title="Bitbucket" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/bitbucket.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=aa84dd4931c8ea99a5f942c101ff6864" width="128" height="128" data-path="images/logos/bitbucket.svg">
    Bitbucket is a Git-based code hosting and collaboration platform supporting private and public repositories, enabling teams to manage and review code through pull requests and integrations

    `bitbucket` · **110 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/bitbucket)
  </Accordion>

  <Accordion title="Box" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/box.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=7b4b1730e6aa2fc44574d63cea476699" width="128" height="128" data-path="images/logos/box.svg">
    Box is a cloud content management platform for secure file storage, sharing, collaboration, and governance.

    `box` · **286 tools** · **20 triggers**

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/box)
  </Accordion>

  <Accordion title="Cal.com" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/cal.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=bdfad26ad058a857bf75d516f1582683" width="128" height="128" data-path="images/logos/cal.svg">
    Cal simplifies meeting coordination by providing shareable booking pages, calendar syncing, and availability management to streamline the scheduling process

    `cal` · **175 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/cal)
  </Accordion>

  <Accordion title="Calendly" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/calendly.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=bbc0e83831c4196137edbfbf5d22233b" width="128" height="128" data-path="images/logos/calendly.svg">
    Calendly is an appointment scheduling tool that automates meeting invitations, availability checks, and reminders, helping individuals and teams avoid email back-and-forth

    `calendly` · **56 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/calendly)
  </Accordion>

  <Accordion title="Canva" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/canva.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=3cd582e948e59ad643d142fb74e6997a" width="128" height="128" data-path="images/logos/canva.svg">
    Canva offers a drag-and-drop design suite for creating social media graphics, presentations, and marketing materials with prebuilt templates and a vast element library

    `canva` · **48 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/canva)
  </Accordion>

  <Accordion title="ClickUp" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/clickup.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=76331393b6d72774a05c5fbcc705ec10" width="128" height="128" data-path="images/logos/clickup.svg">
    ClickUp unifies tasks, docs, goals, and chat in a single platform, allowing teams to plan, organize, and collaborate across projects with customizable workflows

    `clickup` · **164 tools** · **21 triggers**

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/clickup)
  </Accordion>

  <Accordion title="Cloudflare" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/cloudflare.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=b3927bdd5d83113e2db1a13fab6b5c71" width="128" height="128" data-path="images/logos/cloudflare.svg">
    Cloudflare is a global network designed to make everything you connect to the Internet secure, private, fast, and reliable.

    `cloudflare` · **20 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/cloudflare)
  </Accordion>

  <Accordion title="Confluence" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/confluence.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=0fbfff71fe0208923926e886ca3a13d3" width="128" height="128" data-path="images/logos/confluence.svg">
    A tool for team collaboration and knowledge management.

    `confluence` · **69 tools** · **23 triggers**

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/confluence)
  </Accordion>

  <Accordion title="Contentful" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/contentful.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=635b7af6cae9a4c25aad7811e1ee907c" width="128" height="128" data-path="images/logos/contentful.svg">
    Contentful is a headless CMS allowing developers to create, manage, and distribute content across multiple channels and devices with an API-first approach

    `contentful` · **124 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/contentful)
  </Accordion>

  <Accordion title="Crisp" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/crisp.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=44c05b51e7b97c99666ae5a459829c18" width="128" height="128" data-path="images/logos/crisp.svg">
    Crisp is a customer messaging platform for managing conversations, contacts, operators, helpdesk content, campaigns, and workspace settings.

    `crisp` · **12 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/crisp)
  </Accordion>

  <Accordion title="Dart" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/dart.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=8068ed71769defc9a3047b1a95182016" width="128" height="128" data-path="images/logos/dart.svg">
    The ultimate AI project management tool.

    `dart` · **18 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/dart)
  </Accordion>

  <Accordion title="Databricks" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/databricks.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=f7b039cbde157f06a981049e0b397fa4" width="128" height="128" data-path="images/logos/databricks.svg">
    Databricks is the lakehouse company, helping data teams solve the world's toughest problems with unified analytics platform for big data and AI.

    `databricks` · **427 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/databricks)
  </Accordion>

  <Accordion title="Datadog" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/datadog.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=c1853c0a6899ed15e2a3fbed12c9f6bf" width="128" height="128" data-path="images/logos/datadog.svg">
    Datadog offers monitoring, observability, and security for cloud-scale applications, unifying metrics, logs, and traces to help teams detect issues and optimize performance

    `datadog` · **65 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/datadog)
  </Accordion>

  <Accordion title="DigitalOcean" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/digital_ocean.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=ce34503a38a5cd3099d24b7f267d20de" width="128" height="128" data-path="images/logos/digital_ocean.svg">
    DigitalOcean is a cloud infrastructure provider offering scalable compute platforms with a user-friendly interface.

    `digital-ocean` · **48 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/digital-ocean)
  </Accordion>

  <Accordion title="Discord" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/discord.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=d413ac9fd3f41002e35356a67f4cbb3e" width="128" height="128" data-path="images/logos/discord.svg">
    An instant messaging and VoIP social platform.

    `discord` · **28 tools** · **1 triggers**

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/discord)
  </Accordion>

  <Accordion title="Discord Bot" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/discordbot.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=1b5a01245040c54ee1a7a9c619a4cb6a" width="128" height="128" data-path="images/logos/discordbot.svg">
    Discordbot refers to automated programs on Discord servers, performing tasks like moderation, music playback, and user engagement to enhance community interactions

    `discordbot` · **165 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/discordbot)
  </Accordion>

  <Accordion title="DocuSign" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/docusign.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=ab388d02150fde41f98cc7b367daf439" width="128" height="128" data-path="images/logos/docusign.svg">
    DocuSign provides eSignature and digital agreement solutions, enabling businesses to send, sign, track, and manage documents electronically

    `docusign` · **338 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/docusign)
  </Accordion>

  <Accordion title="Dropbox" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/dropbox.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=be5f7ba14c07191bddb3412c929a66c9" width="128" height="128" data-path="images/logos/dropbox.svg">
    Dropbox is a cloud storage service offering file syncing, sharing, and collaboration across devices with version control and robust integrations

    `dropbox` · **177 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/dropbox)
  </Accordion>

  <Accordion title="Dropbox Sign" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/dropbox_sign.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=044c6f92b73c2ccdef7380d25d25bc1d" width="128" height="128" data-path="images/logos/dropbox_sign.svg">
    Dropbox Sign (formerly HelloSign) offers electronic signature and document workflow solutions, simplifying how businesses collect legally binding signatures online

    `dropbox-sign` · **56 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/dropbox-sign)
  </Accordion>

  <Accordion title="Dub" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/dub.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=98da6e10e839eb9776281be01293031b" width="128" height="128" data-path="images/logos/dub.svg">
    Short link management platform with analytics and API for creating, managing, and tracking branded short links

    `dub` · **17 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/dub)
  </Accordion>

  <Accordion title="Dynamics 365" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/dynamics365.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=4d30b80c1bbaa39b099e7b6e14107de1" width="128" height="128" data-path="images/logos/dynamics365.svg">
    Dynamics 365 from Microsoft combines CRM, ERP, and productivity apps to streamline sales, marketing, customer service, and operations in one integrated platform

    `dynamics365` · **16 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/dynamics365)
  </Accordion>

  <Accordion title="Eventbrite" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/eventbrite.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=44d9e10e9818d5e8e174d006b1173c0a" width="128" height="128" data-path="images/logos/eventbrite.svg">
    Eventbrite enables organizers to plan, promote, and manage events, selling tickets and providing attendee tools for conferences, concerts, and gatherings

    `eventbrite` · **95 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/eventbrite)
  </Accordion>

  <Accordion title="Exa" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/exa.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=cb97d5430b42c4ba5a3e6769b0629ff6" width="128" height="128" data-path="images/logos/exa.svg">
    Exa focuses on data extraction and search, helping teams gather, analyze, and visualize information from websites, APIs, or internal databases

    `exa` · **18 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/exa)
  </Accordion>

  <Accordion title="Excel" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/excel.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=0b50d53c8f6f264d4a9cfa6d6f0022f3" width="128" height="128" data-path="images/logos/excel.svg">
    Microsoft Excel is a powerful spreadsheet application for data analysis, calculations, and visualization, enabling users to organize and process data with formulas, charts, and pivot tables

    `excel` · **54 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/excel)
  </Accordion>

  <Accordion title="Facebook" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/facebook.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=22ee6342014385f3a0dea221b8e52e9a" width="128" height="128" data-path="images/logos/facebook.svg">
    Facebook is a social media and advertising platform used by individuals and businesses to connect, share content, and promote products or services. Only supports Facebook Pages, not Facebook Personal accounts.

    `facebook` · **43 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/facebook)
  </Accordion>

  <Accordion title="Figma" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/figma.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=9fde1ac129614369a48b23487b4e7608" width="128" height="128" data-path="images/logos/figma.svg">
    A collaborative interface design tool.

    `figma` · **53 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/figma)
  </Accordion>

  <Accordion title="Firebase" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/firebase.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=b1367fa696a7b96c64f69d83a6090af1" width="128" height="128" data-path="images/logos/firebase.svg">
    Firebase Authentication client tools for project discovery, user sign-in and sign-up flows, out-of-band codes, and Secure Token refresh using a Firebase Web API Key.

    `firebase` · **8 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/firebase)
  </Accordion>

  <Accordion title="Fly.io" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/fly.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=2c7ab12e486793b95ff467b5ee6cf827" width="128" height="128" data-path="images/logos/fly.svg">
    Fly.io transforms containers into micro-VMs that run on hardware in 30+ regions on six continents.

    `fly` · **45 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/fly)
  </Accordion>

  <Accordion title="FreshBooks" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/freshbooks.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=4b4e7104ee4ee969942f48d78aa822dd" width="128" height="128" data-path="images/logos/freshbooks.svg">
    FreshBooks is a cloud-based accounting software service designed for small and medium-sized businesses, offering features like invoicing, expense tracking, and time management.

    `freshbooks` · **10 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/freshbooks)
  </Accordion>

  <Accordion title="Freshdesk" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/freshdesk.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=42dc44f95650c1b437d36e676ca68a10" width="128" height="128" data-path="images/logos/freshdesk.svg">
    Freshdesk provides customer support software with ticketing, knowledge base, and automation features for efficient helpdesk operations and better customer experiences

    `freshdesk` · **178 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/freshdesk)
  </Accordion>

  <Accordion title="GitHub" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/github.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=8187ba8549769372f181e4db65aa2d21" width="128" height="128" data-path="images/logos/github.svg">
    GitHub is a code hosting platform for version control and collaboration, offering Git-based repository management, issue tracking, and continuous integration features

    `github` · **893 tools** · **46 triggers**

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/github)
  </Accordion>

  <Accordion title="GitLab" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/gitlab.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=7f3548220cc7dd14a3759edca3980b8b" width="128" height="128" data-path="images/logos/gitlab.svg">
    A web-based DevOps lifecycle tool that provides a Git repository manager providing wiki, issue-tracking, and CI/CD pipeline features.

    `gitlab` · **116 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/gitlab)
  </Accordion>

  <Accordion title="Gmail" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/gmail.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=07f9c55968401cd96e4546b66d0c01d1" width="128" height="128" data-path="images/logos/gmail.svg">
    Gmail is Google’s email service, featuring spam protection, search functions, and seamless integration with other G Suite apps for productivity

    `gmail` · **63 tools** · **2 triggers**

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/gmail)
  </Accordion>

  <Accordion title="Gong" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/gong.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=35808e96b20c21a09029094746e9e965" width="128" height="128" data-path="images/logos/gong.svg">
    Gong is a platform for video meetings, call recording, and team collaboration.

    `gong` · **58 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/gong)
  </Accordion>

  <Accordion title="Google Ads" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/googleads.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=ca12cd80eb6cc787c66448b3bd9c2e4f" width="128" height="128" data-path="images/logos/googleads.svg">
    Google Ads, is an online advertising platform developed by Google, where advertisers bid to display brief advertisements, service offerings, product listings, and videos to web users.

    `googleads` · **22 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/googleads)
  </Accordion>

  <Accordion title="Google Analytics" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/google_analytics.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=06efe3b6173d3c719db0380f20abd484" width="128" height="128" data-path="images/logos/google_analytics.svg">
    Google Analytics tracks and reports website traffic, user behavior, and conversion data, enabling marketers to optimize online performance and customer journeys

    `google-analytics` · **69 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/google-analytics)
  </Accordion>

  <Accordion title="Google BigQuery" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/googlebigquery.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=9be60d286f32a4e8e6ad6c921b3eb679" width="128" height="128" data-path="images/logos/googlebigquery.svg">
    Google BigQuery is a fully managed data warehouse for large-scale data analytics, offering fast SQL queries and machine learning capabilities on massive datasets

    `googlebigquery` · **63 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/googlebigquery)
  </Accordion>

  <Accordion title="Google Calendar" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/googlecalendar.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=b921c991f6c502448b852dc1b8cafa0d" width="128" height="128" data-path="images/logos/googlecalendar.svg">
    Google Calendar is a time management tool providing scheduling features, event reminders, and integration with email and other apps for streamlined organization

    `googlecalendar` · **49 tools** · **7 triggers**

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/googlecalendar)
  </Accordion>

  <Accordion title="Google Classroom" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/google_classroom.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=93d9455c71a8010de5ab6b230a5b20a9" width="128" height="128" data-path="images/logos/google_classroom.svg">
    Google Classroom is a free web service developed by Google for schools that aims to simplify creating, distributing, and grading assignments

    `google-classroom` · **62 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/google-classroom)
  </Accordion>

  <Accordion title="Google Docs" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/googledocs.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=b16855a36c069c975909ffba815e6edf" width="128" height="128" data-path="images/logos/googledocs.svg">
    Google Docs is a cloud-based word processor with real-time collaboration, version history, and integration with other Google Workspace apps

    `googledocs` · **43 tools** · **10 triggers**

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/googledocs)
  </Accordion>

  <Accordion title="Google Drive" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/googledrive.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=93e68d298d80f11727e4ed80a9f2a1b6" width="128" height="128" data-path="images/logos/googledrive.svg">
    Google Drive is a cloud storage solution for uploading, sharing, and collaborating on files across devices, with robust search and offline access

    `googledrive` · **90 tools** · **7 triggers**

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/googledrive)
  </Accordion>

  <Accordion title="Google Maps" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/google_maps.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=f249549c6880db6cf2f4b7786ee3e8ab" width="128" height="128" data-path="images/logos/google_maps.svg">
    Integrate Google Maps to access location data, geocoding, directions, and mapping services in your application.

    `google-maps` · **23 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/google-maps)
  </Accordion>

  <Accordion title="Google Meet" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/googlemeet.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=d54374fc35be4c121e80d4e12d43ab3b" width="128" height="128" data-path="images/logos/googlemeet.svg">
    Google Meet is a secure video conferencing platform that integrates with Google Workspace, facilitating remote meetings, screen sharing, and chat

    `googlemeet` · **15 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/googlemeet)
  </Accordion>

  <Accordion title="Google Photos" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/googlephotos.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=1ba61c979fc15167346910254e72d0e2" width="128" height="128" data-path="images/logos/googlephotos.svg">
    Google Photos is a cloud-based photo storage and organization service offering automatic backups, AI-assisted search, and shared albums for personal and collaborative media management

    `googlephotos` · **14 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/googlephotos)
  </Accordion>

  <Accordion title="Google Search Console" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/google_search_console.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=31a066f2bd335fb284935247aec69d80" width="128" height="128" data-path="images/logos/google_search_console.svg">
    Google Search Console provides tools to monitor, maintain, and troubleshoot your site's presence in Google Search results.

    `google-search-console` · **9 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/google-search-console)
  </Accordion>

  <Accordion title="Google Sheets" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/googlesheets.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=8f4f4fd8e2bc7802c25cf83c72d977f5" width="128" height="128" data-path="images/logos/googlesheets.svg">
    Google Sheets is a cloud-based spreadsheet tool enabling real-time collaboration, data analysis, and integration with other Google Workspace apps

    `googlesheets` · **53 tools** · **16 triggers**

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/googlesheets)
  </Accordion>

  <Accordion title="Google Slides" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/googleslides.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=77df6b3eb86034d9a1ca7b2c3d17e647" width="128" height="128" data-path="images/logos/googleslides.svg">
    Google Slides is a cloud-based presentation editor with real-time collaboration, template gallery, and integration with other Google Workspace apps

    `googleslides` · **8 tools** · **1 triggers**

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/googleslides)
  </Accordion>

  <Accordion title="Google Tasks" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/googletasks.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=468bc13a06622d56a87391212dc363f8" width="128" height="128" data-path="images/logos/googletasks.svg">
    Google Tasks provides a simple to-do list and task management system integrated into Gmail and Google Calendar for quick and easy tracking

    `googletasks` · **18 tools** · **5 triggers**

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/googletasks)
  </Accordion>

  <Accordion title="Google Workspace" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/googlesuper.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=9c78cf49a5e725a2deb4245292106cd6" width="128" height="128" data-path="images/logos/googlesuper.svg">
    Google Super App combines all Google services including Drive, Calendar, Gmail, Sheets, Analytics, Ads, and more, providing a unified platform for seamless integration and management of your digital life.

    `googlesuper` · **467 tools** · **48 triggers**

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/googlesuper)
  </Accordion>

  <Accordion title="Gorgias" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/gorgias.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=ccf382e8d128c8f4a30745c1f02468dd" width="128" height="128" data-path="images/logos/gorgias.svg">
    Gorgias is a helpdesk and live chat platform specializing in e-commerce, offering automated support, order management, and unified customer communication

    `gorgias` · **32 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/gorgias)
  </Accordion>

  <Accordion title="Grafana" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/grafana.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=2d24afea527dd090495485359d2119e9" width="128" height="128" data-path="images/logos/grafana.svg">
    Open and composable observability platform for metrics, logs, and traces

    `grafana` · **11 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/grafana)
  </Accordion>

  <Accordion title="Granola" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/granola_mcp.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=49edceeeab1e6aa609f5d08184bac5ee" width="128" height="128" data-path="images/logos/granola_mcp.svg">
    Granola is a meeting notes app that captures transcripts and helps teams search and share conversations. It helps turn meeting context into action items and follow-ups.

    `granola` · **6 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/granola)
  </Accordion>

  <Accordion title="Greenhouse" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/greenhouse.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=90506c000422d1713d176174a0d9617b" width="128" height="128" data-path="images/logos/greenhouse.svg">
    Applicant tracking and recruiting software to optimize your entire recruiting process

    `greenhouse` · **134 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/greenhouse)
  </Accordion>

  <Accordion title="Harvest" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/harvest.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=a1ce61f6ea6215ff78a64e76a3e89355" width="128" height="128" data-path="images/logos/harvest.svg">
    Harvest is a time-tracking and invoicing tool designed for teams and freelancers, helping them log billable hours, manage projects, and streamline payments

    `harvest` · **57 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/harvest)
  </Accordion>

  <Accordion title="Help Scout" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/help_scout.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=7f9b05504b3368bf6b2c46b6c0949418" width="128" height="128" data-path="images/logos/help_scout.svg">
    Help Scout provides customer support software with shared inbox, knowledge base, and customer management tools

    `help-scout` · **129 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/help-scout)
  </Accordion>

  <Accordion title="HubSpot" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/hubspot.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=e4bf7a07fce38ae35e5b30e06141c261" width="128" height="128" data-path="images/logos/hubspot.svg">
    HubSpot is an inbound marketing, sales, and customer service platform integrating CRM, email automation, and analytics to facilitate lead nurturing and seamless customer experiences

    `hubspot` · **245 tools** · **2 triggers**

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/hubspot)
  </Accordion>

  <Accordion title="Hugging Face" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/hugging_face.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=b12fefcec1d29c5f7a04c8439a5a07ef" width="95" height="88" data-path="images/logos/hugging_face.svg">
    Build, train and deploy state of the art models powered by the reference open source in machine learning.

    `hugging-face` · **135 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/hugging-face)
  </Accordion>

  <Accordion title="Instagram" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/instagram.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=e964ec67ab6b1e3815957554889a64e7" width="534" height="534" data-path="images/logos/instagram.svg">
    Instagram is a social media platform for sharing photos, videos, and stories. Only supports Instagram Business and Creator accounts, not Instagram Personal accounts.

    `instagram` · **36 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/instagram)
  </Accordion>

  <Accordion title="Intercom" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/intercom.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=a1f182391ac076ad4f0aad291838b18a" width="128" height="128" data-path="images/logos/intercom.svg">
    Intercom provides live chat, messaging, and customer engagement tools, enabling businesses to drive conversions, handle support, and personalize communication at scale

    `intercom` · **133 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/intercom)
  </Accordion>

  <Accordion title="JigsawStack" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/jigsawstack.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=a468a147c89fe89e3a09f1a656fb69e3" width="128" height="128" data-path="images/logos/jigsawstack.svg">
    JigsawStack provides a suite of custom small AI models integrated into scalable infrastructure, enabling developers to build AI-powered applications efficiently.

    `jigsawstack` · **23 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/jigsawstack)
  </Accordion>

  <Accordion title="Jira" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/jira.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=d53a15e13975084f11b5054b932f2c33" width="128" height="128" data-path="images/logos/jira.svg">
    A tool for bug tracking, issue tracking, and agile project management.

    `jira` · **102 tools** · **3 triggers**

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/jira)
  </Accordion>

  <Accordion title="Kit" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/kit.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=615cae89eab2cea236d46a6cd5e6c3e6" width="128" height="128" data-path="images/logos/kit.svg">
    Kit is a platform that allows creators to automate tasks and developers to build apps for the Kit App Store.

    `kit` · **42 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/kit)
  </Accordion>

  <Accordion title="Klaviyo" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/klaviyo.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=9645eca1f13720be3c287a3b7fe8f38c" width="128" height="128" data-path="images/logos/klaviyo.svg">
    Klaviyo is a data-driven email and SMS marketing platform that allows e-commerce brands to deliver targeted messages, track conversions, and scale customer relationships

    `klaviyo` · **225 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/klaviyo)
  </Accordion>

  <Accordion title="Linear" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/linear.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=96a96443eb2e9c52a750dc2ba4eb3320" width="128" height="128" data-path="images/logos/linear.svg">
    Linear is a streamlined issue tracking and project planning tool for modern teams, featuring fast workflows, keyboard shortcuts, and GitHub integrations

    `linear` · **47 tools** · **12 triggers**

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/linear)
  </Accordion>

  <Accordion title="LinkedIn" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/linkedin.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=ccf35671a9a555c11094d786d4deace9" width="128" height="128" data-path="images/logos/linkedin.svg">
    LinkedIn is a professional networking platform enabling job seekers, companies, and thought leaders to connect, share content, and discover business opportunities

    `linkedin` · **22 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/linkedin)
  </Accordion>

  <Accordion title="Mailchimp" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/mailchimp.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=7b6ea5ea9322b37f6f1ab7ba4e13f3e5" width="128" height="128" data-path="images/logos/mailchimp.svg">
    Mailchimp is an email marketing and automation platform providing campaign templates, audience segmentation, and performance analytics to drive engagement and conversions

    `mailchimp` · **275 tools** · **4 triggers**

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/mailchimp)
  </Accordion>

  <Accordion title="Microsoft Teams" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/microsoft_teams.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=8bbf0673170807628767793462f650fc" width="128" height="128" data-path="images/logos/microsoft_teams.svg">
    Microsoft Teams integrates chat, video meetings, and file storage within Microsoft 365, providing virtual collaboration and communication for distributed teams

    `microsoft-teams` · **169 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/microsoft-teams)
  </Accordion>

  <Accordion title="Miro" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/miro.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=45346133dd302e2b0c77f9204d2e44b3" width="128" height="128" data-path="images/logos/miro.svg">
    Miro is a collaborative online whiteboard enabling teams to brainstorm ideas, design wireframes, plan workflows, and manage projects visually

    `miro` · **81 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/miro)
  </Accordion>

  <Accordion title="Mixpanel" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/mixpanel.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=089767d371fbe8f8b893d7594fd8a14f" width="128" height="128" data-path="images/logos/mixpanel.svg">
    Mixpanel is a product analytics platform tracking user interactions and engagement, providing cohort analysis, funnels, and A/B testing to improve user experiences

    `mixpanel` · **50 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/mixpanel)
  </Accordion>

  <Accordion title="Monday" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/monday.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=2b20644dc416a6b9da26af955a559f01" width="128" height="128" data-path="images/logos/monday.svg">
    monday.com is a customizable work management platform for project planning, collaboration, and automation, supporting agile, sales, marketing, and more

    `monday` · **125 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/monday)
  </Accordion>

  <Accordion title="Mural" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/mural.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=904b18da1575b3a391900069c61b61e8" width="128" height="128" data-path="images/logos/mural.svg">
    Mural is a digital whiteboard platform enabling distributed teams to visually brainstorm, map ideas, and collaborate in real time with sticky notes and diagrams

    `mural` · **22 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/mural)
  </Accordion>

  <Accordion title="Notion" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/notion.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=0ab78ff1a50ea2263f6b239047ac5e7e" width="128" height="128" data-path="images/logos/notion.svg">
    Notion centralizes notes, docs, wikis, and tasks in a unified workspace, letting teams build custom workflows for collaboration and knowledge management

    `notion` · **56 tools** · **8 triggers**

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/notion)
  </Accordion>

  <Accordion title="Omnisend" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/omnisend.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=f698f1155c8cd40a7fc738fce3702fb1" width="128" height="128" data-path="images/logos/omnisend.svg">
    Omnisend is a marketing automation platform for ecommerce businesses, focusing on email and SMS marketing.

    `omnisend` · **43 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/omnisend)
  </Accordion>

  <Accordion title="OneDrive" icon="https://mintcdn.com/azin/-bn0ZYz04xRFojt6/images/logos/one_drive.svg?fit=max&auto=format&n=-bn0ZYz04xRFojt6&q=85&s=0fd7e267c45d10c1b54f81d40aa67e04" width="128" height="128" data-path="images/logos/one_drive.svg">
    OneDrive is Microsoft’s cloud storage solution enabling users to store, sync, and share files across devices, offering offline access, real-time collaboration, and enterprise-grade security

    `one-drive` · **83 tools** · **9 triggers**

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/one-drive)
  </Accordion>

  <Accordion title="OpenAI" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/openai.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=3c00f2538d6f8d755746660631f2331a" width="128" height="128" data-path="images/logos/openai.svg">
    Toolkit for OpenAI APIs: manage Assistants, Threads/Messages; upload/list/delete Files; list/retrieve Models (including vision/multimodal); and view fine-tune listings and events.

    `openai` · **126 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/openai)
  </Accordion>

  <Accordion title="Outlook" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/outlook.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=f0ad7170d7e71998b6c3d7a90a326eb6" width="128" height="128" data-path="images/logos/outlook.svg">
    Outlook is Microsoft's email and calendaring platform integrating contacts and scheduling, enabling users to manage communications and events in a unified workspace

    `outlook` · **305 tools** · **5 triggers**

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/outlook)
  </Accordion>

  <Accordion title="PagerDuty" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/pagerduty.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=4b747ba5bb6cca7e71c86f9c52ab3691" width="128" height="128" data-path="images/logos/pagerduty.svg">
    PagerDuty helps you proactively manage your digital operations by collecting data signals from anywhere, interpreting those signals using machine learning, automatically engaging the right people, and accelerating resolution and learning.

    `pagerduty` · **368 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/pagerduty)
  </Accordion>

  <Accordion title="PandaDoc" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/pandadoc.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=eb2b891b0b550956e12ae74da15220f9" width="128" height="128" data-path="images/logos/pandadoc.svg">
    PandaDoc offers document creation, e-signatures, and workflow automation, helping sales teams and businesses streamline proposals, contracts, and agreement processes

    `pandadoc` · **14 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/pandadoc)
  </Accordion>

  <Accordion title="Paypal" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/paypal.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=d58e26513000cd9c51c0aa0d28fae98e" width="128" height="128" data-path="images/logos/paypal.svg">
    Online payment system that allows money transfers and serves as an electronic alternative to traditional payment methods

    `paypal` · **78 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/paypal)
  </Accordion>

  <Accordion title="Perplexity AI" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/perplexityai.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=06f65f9670d49463dbab156a4ce7b92a" width="128" height="128" data-path="images/logos/perplexityai.svg">
    Perplexity AI provides conversational AI models for generating human-like text responses

    `perplexityai` · **9 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/perplexityai)
  </Accordion>

  <Accordion title="Pipedrive" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/pipedrive.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=76b5e8485406d9f633953bfe0a54a66a" width="128" height="128" data-path="images/logos/pipedrive.svg">
    Pipedrive is a sales management tool built around pipeline visualization, lead tracking, activity reminders, and automation to keep deals progressing

    `pipedrive` · **402 tools** · **3 triggers**

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/pipedrive)
  </Accordion>

  <Accordion title="Plain" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/plain.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=53a7b2b92fad011ebe89f6e7279d6d7c" width="128" height="128" data-path="images/logos/plain.svg">
    Plain is a collaborative support platform for B2B support teams, offering a modern, AI-powered interface to consolidate support channels and assist customers efficiently.

    `plain` · **23 tools** · **11 triggers**

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/plain)
  </Accordion>

  <Accordion title="PostHog" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/posthog.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=91f9ffa400c570b76d1fab353074b7f0" width="128" height="128" data-path="images/logos/posthog.svg">
    PostHog is an open-source product analytics platform tracking user interactions and behaviors to help teams refine features, improve funnels, and reduce churn

    `posthog` · **507 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/posthog)
  </Accordion>

  <Accordion title="Prisma" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/prisma.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=422f4edcb6a74dc50a538bceae0bb58c" width="32" height="32" data-path="images/logos/prisma.svg">
    Prisma Data Platform provides database tools including Accelerate (global database cache), Optimize (AI-driven query analysis), and Prisma Postgres (managed PostgreSQL). Manage workspaces, projects, environments, and API keys programmatically.

    `prisma` · **22 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/prisma)
  </Accordion>

  <Accordion title="Productboard" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/productboard.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=b76e62506648bf91881d2a732ae0917e" width="128" height="128" data-path="images/logos/productboard.svg">
    Productboard is a product management platform that gathers feedback, prioritizes features, and aligns roadmaps based on customer insights and strategic goals

    `productboard` · **99 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/productboard)
  </Accordion>

  <Accordion title="QuickBooks" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/quickbooks.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=6a257ec69f2b81d334904c8546f0eaf8" width="128" height="128" data-path="images/logos/quickbooks.svg">
    Quickbooks is a cloud-based accounting software that helps you manage your finances, track your income and expenses, and get insights into your business

    `quickbooks` · **114 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/quickbooks)
  </Accordion>

  <Accordion title="Railway" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/railway.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=8dd64cc596905724046cddc7692ae2d1" width="128" height="128" data-path="images/logos/railway.svg">
    Railway is a deployment platform for building and shipping applications with instant deployments, automatic scaling, and managed infrastructure.

    `railway` · **18 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/railway)
  </Accordion>

  <Accordion title="Reddit" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/reddit.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=688f9e56a7f0591700c316383b32be49" width="128" height="128" data-path="images/logos/reddit.svg">
    Reddit is a social news platform with user-driven communities (subreddits), offering content sharing, discussions, and viral marketing opportunities for brands

    `reddit` · **23 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/reddit)
  </Accordion>

  <Accordion title="Reddit Ads" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/reddit_ads.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=07a2dcb4f4ed1610e1c257420cd5acf0" width="128" height="128" data-path="images/logos/reddit_ads.svg">
    Reddit Ads API for managing advertising campaigns, conversions, and account data on Reddit.

    `reddit-ads` · **83 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/reddit-ads)
  </Accordion>

  <Accordion title="Resend" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/resend.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=7670aa5be39c2aea5abc4d1ac62ec63d" width="128" height="128" data-path="images/logos/resend.svg">
    The universal API for sending emails.

    `resend` · **62 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/resend)
  </Accordion>

  <Accordion title="Roam" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/roam.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=0d9d4b436d422511fa7083d4dcaba73a" width="128" height="128" data-path="images/logos/roam.svg">
    Roam HQ provides APIs for secure messaging, chat, file sharing, and collaboration with enterprise-grade security and compliance features.

    `roam` · **39 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/roam)
  </Accordion>

  <Accordion title="Salesforce" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/salesforce.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=23ebc6976f051510cc5a0eab29be29cd" width="128" height="128" data-path="images/logos/salesforce.svg">
    Salesforce is a leading CRM platform integrating sales, service, marketing, and analytics to build customer relationships and drive business growth

    `salesforce` · **223 tools** · **7 triggers**

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/salesforce)
  </Accordion>

  <Accordion title="Segment" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/segment.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=503f2875b97cdf5e769742132c8f003e" width="128" height="128" data-path="images/logos/segment.svg">
    Twilio Segment is a customer data platform that helps businesses collect, clean, and control their customer data.

    `segment` · **17 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/segment)
  </Accordion>

  <Accordion title="SendGrid" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/sendgrid.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=0109b1a42a76c8380e65c6d8d45a47bd" width="128" height="128" data-path="images/logos/sendgrid.svg">
    SendGrid is a cloud-based email delivery platform providing transactional and marketing email services, with APIs for integration, analytics, and scalability

    `sendgrid` · **364 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/sendgrid)
  </Accordion>

  <Accordion title="Sentry" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/sentry.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=2bcc90777a4fe712815627dd6f3e3069" width="128" height="128" data-path="images/logos/sentry.svg">
    Integrate Sentry to manage your error tracking and monitoring.

    `sentry` · **211 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/sentry)
  </Accordion>

  <Accordion title="SharePoint" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/share_point.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=7cd436861906af143a8411e712e17f60" width="128" height="128" data-path="images/logos/share_point.svg">
    SharePoint is a Microsoft platform for document management and intranets, enabling teams to collaborate, store, and organize content securely and effectively

    `share-point` · **98 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/share-point)
  </Accordion>

  <Accordion title="Shopify" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/shopify.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=d3c43eb4b3bf37454ace44c735694d74" width="128" height="128" data-path="images/logos/shopify.svg">
    Shopify is an e-commerce platform. This toolkit is GraphQL-first for new Admin API automations while retaining legacy REST compatibility actions for older workflows and numeric-ID interoperability

    `shopify` · **407 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/shopify)
  </Accordion>

  <Accordion title="Slack" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/slack.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=82fe34cff77c70a2d6ff1054c91e1057" width="128" height="128" data-path="images/logos/slack.svg">
    Slack is a channel-based messaging platform. With Slack, people can work together more effectively, connect all their software tools and services, and find the information they need to do their best work - all within a secure, enterprise-grade environment.

    `slack` · **167 tools** · **9 triggers**

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/slack)
  </Accordion>

  <Accordion title="Slack (Bot)" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/slackbot.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=3eff1fcd4246da00e3d0bda5f68cf6df" width="128" height="128" data-path="images/logos/slackbot.svg">
    Slackbot gives agents workspace-wide read access to a Slack workspace on behalf of the installing user - search messages and files, browse channel and thread history, and look up users and channels - while continuing to post and react as the bot. Includes direct messages and user email addresses so agents can…

    `slackbot` · **101 tools** · **9 triggers**

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/slackbot)
  </Accordion>

  <Accordion title="Snowflake" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/snowflake.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=e9004543fc2c503375054d5e0f084b93" width="128" height="128" data-path="images/logos/snowflake.svg">
    Snowflake is a cloud-based data warehouse offering elastic scaling, secure data sharing, and SQL analytics across multiple cloud environments

    `snowflake` · **17 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/snowflake)
  </Accordion>

  <Accordion title="Spotify" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/spotify.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=da2f7cc00ef94f4be53a6bdcb908c4eb" width="128" height="128" data-path="images/logos/spotify.svg">
    Spotify is a digital music and podcast streaming service with millions of tracks, personalized playlists, and social sharing features

    `spotify` · **88 tools** · **3 triggers**

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/spotify)
  </Accordion>

  <Accordion title="Square" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/square.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=3a90eceeae0d14c34e91df982134dd27" width="128" height="128" data-path="images/logos/square.svg">
    Square provides payment processing, POS systems, invoicing, and e-commerce tools, enabling sellers to accept card payments and manage their business

    `square` · **122 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/square)
  </Accordion>

  <Accordion title="Stack Exchange" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/stack_exchange.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=ff4855fbbd6ff7217240c2d66b6cfb6d" width="128" height="128" data-path="images/logos/stack_exchange.svg">
    Stack Exchange is a network of Q\&A communities where users ask questions, share knowledge, and collaborate on topics like coding, math, and more

    `stack-exchange` · **121 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/stack-exchange)
  </Accordion>

  <Accordion title="Stripe" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/stripe.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=b97e7d9901716f07c1bab040389a1e46" width="128" height="128" data-path="images/logos/stripe.svg">
    Stripe offers online payment infrastructure, fraud prevention, and APIs enabling businesses to accept and manage payments globally

    `stripe` · **432 tools** · **7 triggers**

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/stripe)
  </Accordion>

  <Accordion title="Supabase" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/supabase.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=2115dd42cf3212e0a7eea47a3be92028" width="128" height="128" data-path="images/logos/supabase.svg">
    Supabase is an open-source backend-as-a-service providing a Postgres database, authentication, storage, and real-time subscription APIs for building modern applications

    `supabase` · **129 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/supabase)
  </Accordion>

  <Accordion title="Telegram" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/telegram.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=f68565ddc94033267f59516c1042502b" width="128" height="128" data-path="images/logos/telegram.svg">
    Telegram is a cloud-based messaging app with a focus on security and speed. Build bots to send messages, manage chats, and interact with users.

    `telegram` · **18 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/telegram)
  </Accordion>

  <Accordion title="TickTick" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/ticktick.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=d71fef5455a7bf75261b572415c0156c" width="128" height="128" data-path="images/logos/ticktick.svg">
    TickTick is a cross-platform task management and to-do list application designed to help users organize their tasks and schedules efficiently.

    `ticktick` · **14 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/ticktick)
  </Accordion>

  <Accordion title="Timely" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/timely.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=b95152d608a63336b8bd7254ea4a2949" width="128" height="128" data-path="images/logos/timely.svg">
    Timely is an automatic time-tracking platform capturing activity across applications, calendars, and devices, creating detailed timesheets for billing or productivity insights

    `timely` · **41 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/timely)
  </Accordion>

  <Accordion title="Todoist" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/todoist.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=3c24b6142619b363de8cefde27877410" width="128" height="128" data-path="images/logos/todoist.svg">
    Todoist is a task management tool allowing users to create to-do lists, set deadlines, and collaborate on projects with reminders and cross-platform syncing

    `todoist` · **84 tools** · **1 triggers**

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/todoist)
  </Accordion>

  <Accordion title="Trello" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/trello.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=15491d62b281ed472ad7681ac1a5bd4b" width="128" height="128" data-path="images/logos/trello.svg">
    A web-based, kanban-style, list-making application.

    `trello` · **329 tools** · **5 triggers**

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/trello)
  </Accordion>

  <Accordion title="Twitter" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/twitter.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=4d7a59c7b4efcecfa5603e72fddb144c" width="128" height="128" data-path="images/logos/twitter.svg">
    Twitter, Inc. was an American social media company based in San Francisco, California, which operated and was named for named for its flagship social media network prior to its rebrand as X.

    `twitter` · **79 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/twitter)
  </Accordion>

  <Accordion title="Typeform" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/typeform.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=4f3bd64a84a2d7c47d6897a579d25cb0" width="128" height="128" data-path="images/logos/typeform.svg">
    Build beautiful, interactive forms that people love to fill out. Collect data, accept payments, and integrate with your favorite tools.

    `typeform` · **35 tools** · **1 triggers**

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/typeform)
  </Accordion>

  <Accordion title="Vercel" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/vercel.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=0d9ea572b2412da974ff2e8c7d2c0285" width="128" height="128" data-path="images/logos/vercel.svg">
    Vercel is a platform for frontend frameworks and static sites, enabling developers to host websites and web services that deploy instantly, scale automatically, and require minimal configuration.

    `vercel` · **146 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/vercel)
  </Accordion>

  <Accordion title="WakaTime" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/wakatime.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=d8208a3346564986e5e3bee5ae5e76f6" width="128" height="128" data-path="images/logos/wakatime.svg">
    WakaTime offers automatic time tracking for developers, integrating with code editors and delivering dashboards on coding activity, project progress, and productivity

    `wakatime` · **17 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/wakatime)
  </Accordion>

  <Accordion title="Webex" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/webex.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=47b7870ff8ba7e072f12ce52b2f89845" width="128" height="128" data-path="images/logos/webex.svg">
    Webex is a Cisco-powered video conferencing and collaboration platform offering online meetings, webinars, screen sharing, and team messaging

    `webex` · **26 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/webex)
  </Accordion>

  <Accordion title="WhatsApp" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/whatsapp.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=d41ae7d5030dbb0b47e1f395ca3433e7" width="128" height="128" data-path="images/logos/whatsapp.svg">
    Enables interaction with customers through the WhatsApp Business API for messaging and automation. Only supports WhatsApp Business accounts, not WhatsApp Personal accounts.

    `whatsapp` · **57 tools** · **1 triggers**

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/whatsapp)
  </Accordion>

  <Accordion title="Wrike" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/wrike.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=3ed09855da3771f71cd2c8beecde1823" width="128" height="128" data-path="images/logos/wrike.svg">
    Wrike is a project management and collaboration tool offering customizable workflows, Gantt charts, reporting, and resource management to boost team productivity

    `wrike` · **144 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/wrike)
  </Accordion>

  <Accordion title="YouTube" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/youtube.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=34951535da4c842325320023478b7191" width="128" height="128" data-path="images/logos/youtube.svg">
    YouTube is a video-sharing platform with user-generated content, live streaming, and monetization opportunities, widely used for marketing, education, and entertainment

    `youtube` · **51 tools** · **4 triggers**

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/youtube)
  </Accordion>

  <Accordion title="Zendesk" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/zendesk.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=927a35f70e4c082e421cec8eef7a9657" width="128" height="128" data-path="images/logos/zendesk.svg">
    Zendesk provides customer support software with ticketing, live chat, and knowledge base features, enabling efficient helpdesk operations and customer engagement

    `zendesk` · **452 tools** · **2 triggers**

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/zendesk)
  </Accordion>

  <Accordion title="Zeplin" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/zeplin.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=80c6458a736bb56cef379af39e061fc9" width="128" height="128" data-path="images/logos/zeplin.svg">
    Zeplin is a design delivery platform that connects designers and developers, enabling access to design resources like projects, screens, components, and assets.

    `zeplin` · **24 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/zeplin)
  </Accordion>

  <Accordion title="Zoho" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/zoho.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=862f09e400ccd1d71f87b17bf2ec688d" width="128" height="128" data-path="images/logos/zoho.svg">
    Zoho is a suite of cloud applications including CRM, email marketing, and collaboration tools, enabling businesses to automate and scale operations

    `zoho` · **57 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/zoho)
  </Accordion>

  <Accordion title="Zoho Books" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/zoho_books.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=d8562db592ec8c52f157619bee6fcd8c" width="48" height="48" data-path="images/logos/zoho_books.svg">
    Zoho Books handles accounting, invoicing, and expense tracking, offering real-time collaboration and integrations within the Zoho ecosystem

    `zoho-books` · **265 tools** · no triggers

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/zoho-books)
  </Accordion>

  <Accordion title="Zoom" icon="https://mintcdn.com/azin/jzpg1LTrDBukTD1C/images/logos/zoom.svg?fit=max&auto=format&n=jzpg1LTrDBukTD1C&q=85&s=0b53b526c64b1bba57c7c7a5c483453e" width="128" height="128" data-path="images/logos/zoom.svg">
    Zoom is a video conferencing and online meeting platform featuring breakout rooms, screen sharing, and integrations with various enterprise tools

    `zoom` · **105 tools** · **11 triggers**

    [Tools, triggers and how to connect it →](/guides/integrations/catalog/zoom)
  </Accordion>
</AccordionGroup>

[GitHub](#github) also appears as the organization-wide **GitHub App**, which is not a connection in this list: it is installed once for the team and used as `githubApp`. See [The GitHub App](#the-github-app).
