← Blog

What Does Claude Integrate With? Full Overview

2026-09-09 · 5 min read · SubToAPI Team

Claude integrates with a wide range of tools depending on how you use it: as a chat app, as a coding assistant, as a connector inside productivity software, or as a raw API you wire into your own product. There isn't one single "integrations list" because Anthropic ships several distinct products (Claude.ai, Claude for Desktop, Claude Code, the Claude API) and each has a different integration surface.

This article gives you the map: what connects natively, what connects through the Model Context Protocol (MCP), what connects through third-party automation tools, and what you need to build yourself if you want Claude inside your own application.

The short answer

At a high level, Claude integrates with:

The rest of this article breaks down each category so you can figure out which path fits your use case.

Native app integrations

Claude.ai (web/mobile) has built-in connectors for Google Drive, Gmail, and Calendar in supported plans, letting Claude read and reference your documents and messages during a conversation. These connectors are managed inside the app settings and don't require any code.

Claude for Desktop extends this with support for the Model Context Protocol (MCP), Anthropic's open standard for connecting AI models to external tools and data sources. Through MCP servers, Claude for Desktop can reach local files, databases, and third-party services that have an MCP server implementation.

Claude Code is the CLI-based coding agent, and it integrates directly with your terminal, git, and IDEs — VS Code, JetBrains products, and Cursor all have documented integration paths. It can run shell commands, edit files, and use MCP servers to reach outside tools during a coding session.

Model Context Protocol: the common thread

MCP is the piece that ties a lot of Claude's integrations together. Instead of every tool building a custom Claude plugin, MCP defines a standard way for a "server" (a thin adapter around a database, API, or app) to expose actions and resources that Claude can call. This is how Claude reaches things like local filesystems, Slack, Postgres, GitHub, and dozens of other systems without Anthropic building each one individually. If you see a tool advertised as having an "MCP server," that's the integration mechanism.

Productivity and office tools

For everyday office work, Claude connects to:

These integrations are aimed at knowledge workers who want Claude inside the tools they already use daily, without touching code.

Developer and data tool integrations

For teams building on top of Claude, the integration surface is broader:

All of these ultimately rely on the same underlying mechanism: an HTTPS request to Claude's API with a message payload and an API key.

Turning Claude into an API for your own product

If you're building software rather than connecting existing apps, the integration question becomes simpler: you need a stable HTTPS endpoint, an API key, and predictable request/response formats for messages, streaming, and tool use.

This is where a lot of teams hit friction — managing raw provider credentials across a team, tracking usage per application, and rotating keys safely takes real infrastructure. SubToAPI exists for exactly this gap: it turns your existing Claude access into a clean API with sub_live_... application keys, streaming support, tool use, and usage metadata, all from one dashboard. Instead of every internal app sharing one fragile credential, each app gets its own scoped key.

A basic request looks like this:

curl https://api.subtoapi.app/v1/messages \
  -H "Authorization: Bearer $SUBTOAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "claude-sonnet",
    "max_tokens": 1024,
    "messages": [
      {"role": "user", "content": "Summarize this integration list."}
    ]
  }'

If you're integrating Claude into a product for the first time, the quickstart walks through authentication, the messages docs cover the request format, streaming covers real-time output, and tools covers function-calling style integrations. Plans start at €9/month for solo use, with team and scale tiers at /pricing, and a free trial is available at /signup.

Choosing the right integration path

questions

Does Claude integrate with Slack and Zapier? Yes. Slack integrations are typically built on top of the API or MCP servers, and Zapier/Make support Claude as an action step you can trigger from other apps.

What's the difference between Claude for Desktop and Claude Code integrations? Claude for Desktop is aimed at general use with MCP-based connectors for files and services; Claude Code is a coding-focused CLI agent that integrates with IDEs, git, and the terminal.

Can I integrate Claude into my own app without managing raw API credentials? Yes — services like SubToAPI sit on top of your Claude access and give each application its own API key with streaming, tool use, and usage data, so you don't manage shared provider credentials directly.

Turn your Claude access into an HTTPS API

SubToAPI gives you application API keys, streaming, tool use and usage insights on top of your existing Claude access — set up in minutes.

Start free  Read the quickstart →