ع
Learn Tracks Reference Guides Saved
feature

Connect your tools (MCP)

A standard plug that lets Claude read and act in your other tools — GitHub, Slack, your database, Google Drive, and more.

MCP (Model Context Protocol) is a universal connector. Add one for a tool you already use, and Claude gains the ability to work with it directly — pull a Notion doc, query a database, check a Sentry error — instead of you copy-pasting back and forth. In Claude Desktop you add these the easy way: open Settings, pick a connector, and click approve — no code. The claude mcp add command does the same wiring in the Power Track (the terminal) for tools that aren't in the click-to-add list yet.

MCP — the Model Context Protocol — is best understood as a standard plug. Before it, connecting Claude to each new tool meant a bespoke integration. With it, any tool that speaks the protocol snaps in the same way, and Claude gains the ability to read and act in it directly: pull a Notion doc, query your database, check a Sentry error, open a pull request — no more copy-pasting back and forth as the courier.

The easy way is in the app. In Claude Desktop, open Settings, choose a connector from the list — Google Drive, Gmail, Notion, GitHub, Slack — and click approve. No code, no terminal. That covers the tools most people reach for, and it’s where a non-technical professional should start.

For tools that aren’t in the click-to-add list yet, there’s the Power Track (the terminal). Servers come in two shapes: a remote one is a URL you point at (a hosted service like Notion’s); a local one runs on your machine over stdio (like the Playwright browser server). Either way it’s one claude mcp add command to connect, and /mcp shows you everything currently wired up. New abilities just appear in the session.

Two things to hold onto, whichever way you add a tool. First, trust matters: a connector can read and act inside the tool you point it at, so only add ones you’d trust with that access. Second, the signal that you need one — if Claude keeps asking you to go fetch the same data by hand, that tool has earned a connector. Start with the one you touch daily; the payoff is immediate.

why it helps Stop being the courier between Claude and your other apps.

examples
In Claude Desktop — click to connect
Settings → Connectors → pick a tool (Notion, GitHub, Drive) → Approve.
Power Track (terminal) — add a remote tool by URL
claude mcp add --transport http notion https://mcp.notion.com/mcp
Power Track (terminal) — add a local tool
claude mcp add --transport stdio playwright -- npx -y @playwright/mcp@latest
See what's connected
/mcp
tips & best practices
  • On Desktop, add a connector from Settings with a click — reach for claude mcp add only when a tool isn't in the click-to-add list.
  • Only add tools you trust — a connector can read and act in the tool you point it at.
  • Start with one tool you use daily (GitHub, Notion, your database); the payoff is immediate.
  • If Claude keeps asking you to fetch the same data by hand, that tool deserves a connector.

Questions people ask

What does MCP stand for?
MCP stands for Model Context Protocol. It's a universal standard for connecting Claude to other tools, so any tool that speaks the protocol snaps in the same way instead of needing a bespoke integration.
Is it safe to add an MCP server?
Only add servers you trust. A connector can read and act inside the tool you point it at, so treat adding one like granting access — connect tools you'd trust with that reach, and skip ones you don't.
Do I need to install anything to use MCP?
Usually not. In Claude Desktop you add most tools as connectors from Settings with a click — nothing to install. A *remote* server is just a URL; a *local* one runs on your machine. In the terminal it's one `claude mcp add` command to connect.
How is MCP different from connectors in the Claude app?
They're the same idea. Connectors are the friendly, click-to-approve face of MCP inside Claude Desktop — the way most people should add a tool. `claude mcp add` is the Power-Track (terminal) way to wire the same kind of connection.