Skip to main content
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. The live version of that list, with each integration’s tools and triggers shown before you connect, is on the console’s Integrations page and in run list inside any machine. Every integration is connected and used the way this page describes. 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: 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.
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.
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 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 connects for you:
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:
--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 and the @boxd/run SDK:
Calling an integration you haven’t connected fails immediately with the link to fix it:
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

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:
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 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:
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.
On a shared org machine, git and gh use the organization’s 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").

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:
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.
  • 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:
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

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, or run auth <id> from a machine. The catalog changes over time, so treat the console’s page and run list as authoritative.
Airtable merges spreadsheet functionality with database power, enabling teams to organize projects, track tasks, and collaborate through customizable views, automation, and integrations for data managementairtable · 26 tools · 6 triggersTools, triggers and how to connect it →
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 triggersTools, triggers and how to connect it →
Apollo provides CRM and lead generation capabilities, helping businesses discover contacts, manage outreach, and track sales pipelines for consistent customer relationship developmentapollo · 48 tools · no triggersTools, triggers and how to connect it →
Tool to help teams organize, track, and manage their work.asana · 153 tools · 6 triggersTools, triggers and how to connect it →
Attio is a fully customizable workspace for your team’s relationships and workflows.attio · 108 tools · no triggersTools, triggers and how to connect it →
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 integrationsbitbucket · 110 tools · no triggersTools, triggers and how to connect it →
Box is a cloud content management platform for secure file storage, sharing, collaboration, and governance.box · 286 tools · 20 triggersTools, triggers and how to connect it →
Cal simplifies meeting coordination by providing shareable booking pages, calendar syncing, and availability management to streamline the scheduling processcal · 175 tools · no triggersTools, triggers and how to connect it →
Calendly is an appointment scheduling tool that automates meeting invitations, availability checks, and reminders, helping individuals and teams avoid email back-and-forthcalendly · 56 tools · no triggersTools, triggers and how to connect it →
Canva offers a drag-and-drop design suite for creating social media graphics, presentations, and marketing materials with prebuilt templates and a vast element librarycanva · 48 tools · no triggersTools, triggers and how to connect it →
ClickUp unifies tasks, docs, goals, and chat in a single platform, allowing teams to plan, organize, and collaborate across projects with customizable workflowsclickup · 164 tools · 21 triggersTools, triggers and how to connect it →
Cloudflare is a global network designed to make everything you connect to the Internet secure, private, fast, and reliable.cloudflare · 20 tools · no triggersTools, triggers and how to connect it →
A tool for team collaboration and knowledge management.confluence · 69 tools · 23 triggersTools, triggers and how to connect it →
Contentful is a headless CMS allowing developers to create, manage, and distribute content across multiple channels and devices with an API-first approachcontentful · 124 tools · no triggersTools, triggers and how to connect it →
Crisp is a customer messaging platform for managing conversations, contacts, operators, helpdesk content, campaigns, and workspace settings.crisp · 12 tools · no triggersTools, triggers and how to connect it →
The ultimate AI project management tool.dart · 18 tools · no triggersTools, triggers and how to connect it →
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 triggersTools, triggers and how to connect it →
Datadog offers monitoring, observability, and security for cloud-scale applications, unifying metrics, logs, and traces to help teams detect issues and optimize performancedatadog · 65 tools · no triggersTools, triggers and how to connect it →
DigitalOcean is a cloud infrastructure provider offering scalable compute platforms with a user-friendly interface.digital-ocean · 48 tools · no triggersTools, triggers and how to connect it →
An instant messaging and VoIP social platform.discord · 28 tools · 1 triggersTools, triggers and how to connect it →
Discordbot refers to automated programs on Discord servers, performing tasks like moderation, music playback, and user engagement to enhance community interactionsdiscordbot · 165 tools · no triggersTools, triggers and how to connect it →
DocuSign provides eSignature and digital agreement solutions, enabling businesses to send, sign, track, and manage documents electronicallydocusign · 338 tools · no triggersTools, triggers and how to connect it →
Dropbox is a cloud storage service offering file syncing, sharing, and collaboration across devices with version control and robust integrationsdropbox · 177 tools · no triggersTools, triggers and how to connect it →
Dropbox Sign (formerly HelloSign) offers electronic signature and document workflow solutions, simplifying how businesses collect legally binding signatures onlinedropbox-sign · 56 tools · no triggersTools, triggers and how to connect it →
Short link management platform with analytics and API for creating, managing, and tracking branded short linksdub · 17 tools · no triggersTools, triggers and how to connect it →
Dynamics 365 from Microsoft combines CRM, ERP, and productivity apps to streamline sales, marketing, customer service, and operations in one integrated platformdynamics365 · 16 tools · no triggersTools, triggers and how to connect it →
Eventbrite enables organizers to plan, promote, and manage events, selling tickets and providing attendee tools for conferences, concerts, and gatheringseventbrite · 95 tools · no triggersTools, triggers and how to connect it →
Exa focuses on data extraction and search, helping teams gather, analyze, and visualize information from websites, APIs, or internal databasesexa · 18 tools · no triggersTools, triggers and how to connect it →
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 tablesexcel · 54 tools · no triggersTools, triggers and how to connect it →
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 triggersTools, triggers and how to connect it →
A collaborative interface design tool.figma · 53 tools · no triggersTools, triggers and how to connect it →
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 triggersTools, triggers and how to connect it →
Fly.io transforms containers into micro-VMs that run on hardware in 30+ regions on six continents.fly · 45 tools · no triggersTools, triggers and how to connect it →
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 triggersTools, triggers and how to connect it →
Freshdesk provides customer support software with ticketing, knowledge base, and automation features for efficient helpdesk operations and better customer experiencesfreshdesk · 178 tools · no triggersTools, triggers and how to connect it →
GitHub is a code hosting platform for version control and collaboration, offering Git-based repository management, issue tracking, and continuous integration featuresgithub · 893 tools · 46 triggersTools, triggers and how to connect it →
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 triggersTools, triggers and how to connect it →
Gmail is Google’s email service, featuring spam protection, search functions, and seamless integration with other G Suite apps for productivitygmail · 63 tools · 2 triggersTools, triggers and how to connect it →
Gong is a platform for video meetings, call recording, and team collaboration.gong · 58 tools · no triggersTools, triggers and how to connect it →
Google Analytics tracks and reports website traffic, user behavior, and conversion data, enabling marketers to optimize online performance and customer journeysgoogle-analytics · 69 tools · no triggersTools, triggers and how to connect it →
Google BigQuery is a fully managed data warehouse for large-scale data analytics, offering fast SQL queries and machine learning capabilities on massive datasetsgooglebigquery · 63 tools · no triggersTools, triggers and how to connect it →
Google Calendar is a time management tool providing scheduling features, event reminders, and integration with email and other apps for streamlined organizationgooglecalendar · 49 tools · 7 triggersTools, triggers and how to connect it →
Google Classroom is a free web service developed by Google for schools that aims to simplify creating, distributing, and grading assignmentsgoogle-classroom · 62 tools · no triggersTools, triggers and how to connect it →
Google Docs is a cloud-based word processor with real-time collaboration, version history, and integration with other Google Workspace appsgoogledocs · 43 tools · 10 triggersTools, triggers and how to connect it →
Google Drive is a cloud storage solution for uploading, sharing, and collaborating on files across devices, with robust search and offline accessgoogledrive · 90 tools · 7 triggersTools, triggers and how to connect it →
Integrate Google Maps to access location data, geocoding, directions, and mapping services in your application.google-maps · 23 tools · no triggersTools, triggers and how to connect it →
Google Meet is a secure video conferencing platform that integrates with Google Workspace, facilitating remote meetings, screen sharing, and chatgooglemeet · 15 tools · no triggersTools, triggers and how to connect it →
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 managementgooglephotos · 14 tools · no triggersTools, triggers and how to connect it →
Google Search Console provides tools to monitor, maintain, and troubleshoot your site’s presence in Google Search results.google-search-console · 9 tools · no triggersTools, triggers and how to connect it →
Google Sheets is a cloud-based spreadsheet tool enabling real-time collaboration, data analysis, and integration with other Google Workspace appsgooglesheets · 53 tools · 16 triggersTools, triggers and how to connect it →
Google Slides is a cloud-based presentation editor with real-time collaboration, template gallery, and integration with other Google Workspace appsgoogleslides · 8 tools · 1 triggersTools, triggers and how to connect it →
Google Tasks provides a simple to-do list and task management system integrated into Gmail and Google Calendar for quick and easy trackinggoogletasks · 18 tools · 5 triggersTools, triggers and how to connect it →
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 triggersTools, triggers and how to connect it →
Gorgias is a helpdesk and live chat platform specializing in e-commerce, offering automated support, order management, and unified customer communicationgorgias · 32 tools · no triggersTools, triggers and how to connect it →
Open and composable observability platform for metrics, logs, and tracesgrafana · 11 tools · no triggersTools, triggers and how to connect it →
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 triggersTools, triggers and how to connect it →
Applicant tracking and recruiting software to optimize your entire recruiting processgreenhouse · 134 tools · no triggersTools, triggers and how to connect it →
Harvest is a time-tracking and invoicing tool designed for teams and freelancers, helping them log billable hours, manage projects, and streamline paymentsharvest · 57 tools · no triggersTools, triggers and how to connect it →
Help Scout provides customer support software with shared inbox, knowledge base, and customer management toolshelp-scout · 129 tools · no triggersTools, triggers and how to connect it →
HubSpot is an inbound marketing, sales, and customer service platform integrating CRM, email automation, and analytics to facilitate lead nurturing and seamless customer experienceshubspot · 245 tools · 2 triggersTools, triggers and how to connect it →
Build, train and deploy state of the art models powered by the reference open source in machine learning.hugging-face · 135 tools · no triggersTools, triggers and how to connect it →
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 triggersTools, triggers and how to connect it →
Intercom provides live chat, messaging, and customer engagement tools, enabling businesses to drive conversions, handle support, and personalize communication at scaleintercom · 133 tools · no triggersTools, triggers and how to connect it →
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 triggersTools, triggers and how to connect it →
A tool for bug tracking, issue tracking, and agile project management.jira · 102 tools · 3 triggersTools, triggers and how to connect it →
Kit is a platform that allows creators to automate tasks and developers to build apps for the Kit App Store.kit · 42 tools · no triggersTools, triggers and how to connect it →
Klaviyo is a data-driven email and SMS marketing platform that allows e-commerce brands to deliver targeted messages, track conversions, and scale customer relationshipsklaviyo · 225 tools · no triggersTools, triggers and how to connect it →
Linear is a streamlined issue tracking and project planning tool for modern teams, featuring fast workflows, keyboard shortcuts, and GitHub integrationslinear · 47 tools · 12 triggersTools, triggers and how to connect it →
LinkedIn is a professional networking platform enabling job seekers, companies, and thought leaders to connect, share content, and discover business opportunitieslinkedin · 22 tools · no triggersTools, triggers and how to connect it →
Mailchimp is an email marketing and automation platform providing campaign templates, audience segmentation, and performance analytics to drive engagement and conversionsmailchimp · 275 tools · 4 triggersTools, triggers and how to connect it →
Microsoft Teams integrates chat, video meetings, and file storage within Microsoft 365, providing virtual collaboration and communication for distributed teamsmicrosoft-teams · 169 tools · no triggersTools, triggers and how to connect it →
Miro is a collaborative online whiteboard enabling teams to brainstorm ideas, design wireframes, plan workflows, and manage projects visuallymiro · 81 tools · no triggersTools, triggers and how to connect it →
Mixpanel is a product analytics platform tracking user interactions and engagement, providing cohort analysis, funnels, and A/B testing to improve user experiencesmixpanel · 50 tools · no triggersTools, triggers and how to connect it →
monday.com is a customizable work management platform for project planning, collaboration, and automation, supporting agile, sales, marketing, and moremonday · 125 tools · no triggersTools, triggers and how to connect it →
Mural is a digital whiteboard platform enabling distributed teams to visually brainstorm, map ideas, and collaborate in real time with sticky notes and diagramsmural · 22 tools · no triggersTools, triggers and how to connect it →
Notion centralizes notes, docs, wikis, and tasks in a unified workspace, letting teams build custom workflows for collaboration and knowledge managementnotion · 56 tools · 8 triggersTools, triggers and how to connect it →
Omnisend is a marketing automation platform for ecommerce businesses, focusing on email and SMS marketing.omnisend · 43 tools · no triggersTools, triggers and how to connect it →
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 securityone-drive · 83 tools · 9 triggersTools, triggers and how to connect it →
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 triggersTools, triggers and how to connect it →
Outlook is Microsoft’s email and calendaring platform integrating contacts and scheduling, enabling users to manage communications and events in a unified workspaceoutlook · 305 tools · 5 triggersTools, triggers and how to connect it →
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 triggersTools, triggers and how to connect it →
PandaDoc offers document creation, e-signatures, and workflow automation, helping sales teams and businesses streamline proposals, contracts, and agreement processespandadoc · 14 tools · no triggersTools, triggers and how to connect it →
Online payment system that allows money transfers and serves as an electronic alternative to traditional payment methodspaypal · 78 tools · no triggersTools, triggers and how to connect it →
Perplexity AI provides conversational AI models for generating human-like text responsesperplexityai · 9 tools · no triggersTools, triggers and how to connect it →
Pipedrive is a sales management tool built around pipeline visualization, lead tracking, activity reminders, and automation to keep deals progressingpipedrive · 402 tools · 3 triggersTools, triggers and how to connect it →
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 triggersTools, triggers and how to connect it →
PostHog is an open-source product analytics platform tracking user interactions and behaviors to help teams refine features, improve funnels, and reduce churnposthog · 507 tools · no triggersTools, triggers and how to connect it →
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 triggersTools, triggers and how to connect it →
Productboard is a product management platform that gathers feedback, prioritizes features, and aligns roadmaps based on customer insights and strategic goalsproductboard · 99 tools · no triggersTools, triggers and how to connect it →
Quickbooks is a cloud-based accounting software that helps you manage your finances, track your income and expenses, and get insights into your businessquickbooks · 114 tools · no triggersTools, triggers and how to connect it →
Railway is a deployment platform for building and shipping applications with instant deployments, automatic scaling, and managed infrastructure.railway · 18 tools · no triggersTools, triggers and how to connect it →
Reddit is a social news platform with user-driven communities (subreddits), offering content sharing, discussions, and viral marketing opportunities for brandsreddit · 23 tools · no triggersTools, triggers and how to connect it →
Reddit Ads API for managing advertising campaigns, conversions, and account data on Reddit.reddit-ads · 83 tools · no triggersTools, triggers and how to connect it →
The universal API for sending emails.resend · 62 tools · no triggersTools, triggers and how to connect it →
Roam HQ provides APIs for secure messaging, chat, file sharing, and collaboration with enterprise-grade security and compliance features.roam · 39 tools · no triggersTools, triggers and how to connect it →
Salesforce is a leading CRM platform integrating sales, service, marketing, and analytics to build customer relationships and drive business growthsalesforce · 223 tools · 7 triggersTools, triggers and how to connect it →
Twilio Segment is a customer data platform that helps businesses collect, clean, and control their customer data.segment · 17 tools · no triggersTools, triggers and how to connect it →
SendGrid is a cloud-based email delivery platform providing transactional and marketing email services, with APIs for integration, analytics, and scalabilitysendgrid · 364 tools · no triggersTools, triggers and how to connect it →
Integrate Sentry to manage your error tracking and monitoring.sentry · 211 tools · no triggersTools, triggers and how to connect it →
SharePoint is a Microsoft platform for document management and intranets, enabling teams to collaborate, store, and organize content securely and effectivelyshare-point · 98 tools · no triggersTools, triggers and how to connect it →
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 interoperabilityshopify · 407 tools · no triggersTools, triggers and how to connect it →
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 triggersTools, triggers and how to connect it →
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 triggersTools, triggers and how to connect it →
Snowflake is a cloud-based data warehouse offering elastic scaling, secure data sharing, and SQL analytics across multiple cloud environmentssnowflake · 17 tools · no triggersTools, triggers and how to connect it →
Spotify is a digital music and podcast streaming service with millions of tracks, personalized playlists, and social sharing featuresspotify · 88 tools · 3 triggersTools, triggers and how to connect it →
Square provides payment processing, POS systems, invoicing, and e-commerce tools, enabling sellers to accept card payments and manage their businesssquare · 122 tools · no triggersTools, triggers and how to connect it →
Stack Exchange is a network of Q&A communities where users ask questions, share knowledge, and collaborate on topics like coding, math, and morestack-exchange · 121 tools · no triggersTools, triggers and how to connect it →
Stripe offers online payment infrastructure, fraud prevention, and APIs enabling businesses to accept and manage payments globallystripe · 432 tools · 7 triggersTools, triggers and how to connect it →
Supabase is an open-source backend-as-a-service providing a Postgres database, authentication, storage, and real-time subscription APIs for building modern applicationssupabase · 129 tools · no triggersTools, triggers and how to connect it →
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 triggersTools, triggers and how to connect it →
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 triggersTools, triggers and how to connect it →
Timely is an automatic time-tracking platform capturing activity across applications, calendars, and devices, creating detailed timesheets for billing or productivity insightstimely · 41 tools · no triggersTools, triggers and how to connect it →
Todoist is a task management tool allowing users to create to-do lists, set deadlines, and collaborate on projects with reminders and cross-platform syncingtodoist · 84 tools · 1 triggersTools, triggers and how to connect it →
A web-based, kanban-style, list-making application.trello · 329 tools · 5 triggersTools, triggers and how to connect it →
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 triggersTools, triggers and how to connect it →
Build beautiful, interactive forms that people love to fill out. Collect data, accept payments, and integrate with your favorite tools.typeform · 35 tools · 1 triggersTools, triggers and how to connect it →
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 triggersTools, triggers and how to connect it →
WakaTime offers automatic time tracking for developers, integrating with code editors and delivering dashboards on coding activity, project progress, and productivitywakatime · 17 tools · no triggersTools, triggers and how to connect it →
Webex is a Cisco-powered video conferencing and collaboration platform offering online meetings, webinars, screen sharing, and team messagingwebex · 26 tools · no triggersTools, triggers and how to connect it →
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 triggersTools, triggers and how to connect it →
Wrike is a project management and collaboration tool offering customizable workflows, Gantt charts, reporting, and resource management to boost team productivitywrike · 144 tools · no triggersTools, triggers and how to connect it →
YouTube is a video-sharing platform with user-generated content, live streaming, and monetization opportunities, widely used for marketing, education, and entertainmentyoutube · 51 tools · 4 triggersTools, triggers and how to connect it →
Zendesk provides customer support software with ticketing, live chat, and knowledge base features, enabling efficient helpdesk operations and customer engagementzendesk · 452 tools · 2 triggersTools, triggers and how to connect it →
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 triggersTools, triggers and how to connect it →
Zoho is a suite of cloud applications including CRM, email marketing, and collaboration tools, enabling businesses to automate and scale operationszoho · 57 tools · no triggersTools, triggers and how to connect it →
Zoho Books handles accounting, invoicing, and expense tracking, offering real-time collaboration and integrations within the Zoho ecosystemzoho-books · 265 tools · no triggersTools, triggers and how to connect it →
Zoom is a video conferencing and online meeting platform featuring breakout rooms, screen sharing, and integrations with various enterprise toolszoom · 105 tools · 11 triggersTools, triggers and how to connect it →
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.