Claude on WholeTech network
The connector standard

Model Context Protocol shipping

An open protocol for connecting Claude to external systems — Drive, Gmail, Calendar, Slack, GitHub, your database, your in-house APIs.

01 — Why it exists

One protocol, every connector.

Before MCP, every Drive integration, every Gmail integration, every database integration was bespoke code in each AI client. After MCP, the same connector works in Claude Code, Claude Desktop, Cursor, ChatGPT, and any other compliant client. Anthropic, Google, OpenAI, and the major IDE makers all speak it.

02 — Add a server to Claude Code

Plug something in.

  1. Pick a server. Official ones live at github.com/modelcontextprotocol/servers — Drive, Gmail, GitHub, Slack, Postgres, Filesystem, Brave Search, Puppeteer, and dozens more.
  2. Run claude mcp add and paste the install command from the server's README.
  3. Restart Claude Code. The new tools show up in /help.
  4. Use them in plain English: "search my Drive for the BBQ catering quote from last March" — Claude calls the Drive MCP server.
03 — Servers worth knowing

The starter pack.

Filesystem

Sandboxed file access. Read/write a specific folder.

Postgres / SQLite

Read-only or read-write SQL access. Lets Claude answer questions about your data.

GitHub

Issues, PRs, repo search, Actions. Works hand-in-glove with Claude Code's git tools.

Gmail / Drive / Calendar

Search threads, draft replies, list events, suggest times.

Slack

Read channels, post messages, search history.

Puppeteer / Playwright

Drive a browser. Useful for scraping and visual QA.

Brave Search

Web search with low quotas. Good fallback when the built-in WebSearch is unavailable.

YouTube Data

Channel/video metadata, transcripts. Read-only by default.

04 — Build your own

Wrap your stack in MCP.

An MCP server is just a small program with a manifest describing the tools it offers. Python, Node, Go SDKs are official. If you have an internal API, wrapping it as MCP makes it instantly usable from any AI client your team uses.

  1. Pick the SDK. Python or Node are quickest.
  2. Define your tools — name, JSON schema for inputs, what they return. Same shape as Tool Use.
  3. Wire each tool to the underlying call (HTTP, DB, library).
  4. Run the server locally or as a managed process.
  5. Register in Claude Code (or any other client) with claude mcp add.
05 — Security

Treat MCP servers like APIs.