Skip to main content

Catalog

29 App connectors that scaffold code into your project, plus the 7 first-party Native integrations the agent treats specially. A separate 46+ MCP / Chat connectors give the agent build-time context — see MCP connectors for that catalog. The Connectors panel has two tabs:
  • App — connectors that scaffold code into your project so the deployed app can call them. Documented below.
  • MCP / Chat — connectors the agent can read while building, without writing any code. See MCP connectors.
Roughly 13 services carry both surfaces (Slack, Notion, Linear, Stripe, Sentry, PostHog, Amplitude, HubSpot, Shopify, Sanity, Contentful, Resend, Google Calendar, GitHub). Entries below tagged App + MCP also appear in the MCP catalog. Untagged entries are App-only. Each App entry shows the scaffold pattern:
  • Direct — installs the upstream SDK and reads the key from VITE_* / EXPO_PUBLIC_*.
  • REST (web only) — direct fetch calls with the key in the bundle; mobile blocked because bundling a server key into an APK is unsafe.
  • Edge Function — Deno proxy; secret lives in Supabase Vault, client invokes via supabase.functions.invoke(slug, ...).
  • OAuth via Vibely — Vibely’s backend handles the OAuth dance and holds the refreshed tokens; your app calls <slug>Execute(action, args) against a Vibely-hosted proxy.

Communication

Gmail — OAuth via Vibely

Send and read email from a Gmail account. Sample actions: GMAIL_SEND_EMAIL, GMAIL_FETCH_EMAILS, GMAIL_CREATE_EMAIL_DRAFT.

Slack — App + MCP · OAuth via Vibely

Send messages, search channels, look up users. Sample actions: SLACK_SEND_MESSAGE, SLACK_LIST_ALL_CHANNELS, SLACK_FETCH_CONVERSATION_HISTORY.

Telegram — Edge Function

Send messages and receive updates via a Telegram bot. Secret: TELEGRAM_BOT_TOKEN (<id>:<secret> from @BotFather).

Microsoft Teams — Edge Function

Post messages, read channels via Microsoft Graph. Secret: MS_TEAMS_ACCESS_TOKEN.

Microsoft Outlook — Edge Function

Read and send mail through Outlook via Microsoft Graph (/me/messages). Secret: OUTLOOK_ACCESS_TOKEN.

Productivity

Google Calendar — App + MCP · Edge Function

List, create, and update events. Secret: GOOGLE_CALENDAR_ACCESS_TOKEN (OAuth with the calendar.events scope).

Notion — App + MCP · Edge Function

Query pages and databases, create notes, update properties. Secret: NOTION_TOKEN (internal integration token).

Asana — App + MCP · Edge Function

Read tasks, projects, and assignees. Secret: ASANA_PAT.

Jira — Edge Function (Basic auth)

Read tickets, create issues, sync sprints from Atlassian Jira. Secret: JIRA_BASIC_AUTH (base64 <email>:<api_token>).

Confluence — Edge Function (Basic auth)

Reference pages and write summaries. Same auth shape as Jira. Secret: CONFLUENCE_BASIC_AUTH.

Microsoft Excel — Edge Function

Read and write workbook ranges via Microsoft Graph. Secret: EXCEL_ACCESS_TOKEN.

Miro — App + MCP · Edge Function

Read boards and turn workshop diagrams into prototypes. Secret: MIRO_ACCESS_TOKEN.

Fireflies — Edge Function

Search meeting transcripts, summaries, and recordings via Fireflies’ GraphQL endpoint. Secret: FIREFLIES_API_KEY.

Ashby — Edge Function (Basic auth)

Run recruiting workflows and hiring pipelines. Secret: ASHBY_BASIC_AUTH (base64 <api_key>:).

Dev

Linear — App + MCP · Edge Function

Create, update, and search issues. Secret: LINEAR_API_KEY (Linear uses Authorization: <key> with no Bearer prefix).

GitLab — Edge Function

Read and update code, merge requests, pipelines. Secret: GITLAB_PAT (Personal Access Token with the api scope).

Storage

Google Drive — Edge Function

Find and read documents. Secret: GOOGLE_DRIVE_ACCESS_TOKEN (OAuth with drive.readonly).

Microsoft OneDrive — Edge Function

Access files and folders. Secret: ONEDRIVE_ACCESS_TOKEN (Microsoft Graph OAuth).

Social

Twitter / X — Edge Function

Post tweets, search the timeline, like and reply via the v2 API. Secret: TWITTER_BEARER_TOKEN.

Instagram — Edge Function

Publish posts and read insights for Business / Creator accounts. Secret: INSTAGRAM_ACCESS_TOKEN.

LinkedIn — Edge Function

Publish posts and read profile / company info. Secret: LINKEDIN_ACCESS_TOKEN (OAuth with w_member_social).

Reddit — Edge Function

Post to subreddits, search threads, read comments. Secret: REDDIT_ACCESS_TOKEN.

Twitch — Edge Function

Stream metadata, channel info, viewer / subscriber data. Secret: TWITCH_ACCESS_TOKEN.

Ads

Meta Ads Manager — Edge Function

Create and manage Facebook + Instagram ad campaigns via Graph API. Secret: META_ADS_ACCESS_TOKEN.

CRM

HubSpot — App + MCP · Edge Function

Manage contacts, companies, deals, and marketing workflows. Secret: HUBSPOT_PRIVATE_APP_TOKEN.

Analytics & warehouses

BigQuery — Edge Function

Query datasets and run analytics on Google BigQuery. Secret: BIGQUERY_ACCESS_TOKEN (service-account OAuth).

Databricks — Edge Function

Run SQL and call workspace APIs. Secret: DATABRICKS_PAT.

Snowflake — Edge Function

Query data warehouses and run SQL via the v2 statements API. Secret: SNOWFLAKE_PAT.

Hex — App + MCP · Edge Function

Run Hex notebooks and query analytics projects. Secret: HEX_API_TOKEN.

Amplitude — App + MCP · Direct

Product analytics. Web SDK (@amplitude/analytics-browser) + React Native SDK (@amplitude/analytics-react-native). Keys: VITE_AMPLITUDE_API_KEY / EXPO_PUBLIC_AMPLITUDE_API_KEY.

PostHog — App + MCP · Direct

Events, insights, feature flags. Public project key safe for the client bundle. Keys: VITE_POSTHOG_KEY / EXPO_PUBLIC_POSTHOG_KEY.

Sentry — App + MCP · Direct

Browser + React Native crash reporting. Public DSN. Keys: VITE_SENTRY_DSN / EXPO_PUBLIC_SENTRY_DSN.

Content & commerce

Contentful — App + MCP · Direct

Fetch published entries, assets, rich text via the contentful SDK. Keys: VITE_CONTENTFUL_SPACE_ID + VITE_CONTENTFUL_DELIVERY_TOKEN.

Sanity — App + MCP · Direct

Fetch content with @sanity/client. Keys: VITE_SANITY_PROJECT_ID + VITE_SANITY_DATASET.

Shopify — App + MCP · Direct

Storefront GraphQL API. Keys: VITE_SHOPIFY_STORE_DOMAIN + VITE_SHOPIFY_STOREFRONT_TOKEN.

Audio & video

ElevenLabs — REST (web only)

Text-to-speech via the REST API. Key: VITE_ELEVENLABS_API_KEY. Mobile not supported — wrap in an Edge Function.

Search & scrape

Perplexity — REST (web only)

Real-time web search with citations. Key: VITE_PERPLEXITY_API_KEY. Mobile not supported.

Firecrawl — REST (web only)

AI-powered scraper; extract structured data from websites. Key: VITE_FIRECRAWL_API_KEY. Mobile not supported.

Email

Resend — App + MCP · REST (web only)

Transactional email; bring your own verified domain. Key: VITE_RESEND_API_KEY. Mobile not supported — route through an Edge Function.

Native integrations (not in the playbook)

These have direct OAuth flows and per-project secret columns of their own — see Native integrations for setup.

Looking for MCP-only services?

Atlassian, Polar, Granola, Figma, HeyGen, Neon, Square, Intercom, Monday, Canva, Webflow, n8n, and Custom (bring-your-own MCP) are MCP-only — they give the agent build-time context but don’t scaffold App code. See MCP connectors.

Don’t see what you need?

Ask anyway. For most public REST APIs the agent can write a fetch wrapper plus an Edge Function in one turn — paste the key in the Connectors panel and prompt: “Add a direct integration to <service>; here’s the API doc URL.”