11 — Connecting Tools with MCP — The Universal Port for AI
"Plugins, basically" was how I described MCP, and it undersold the standardization. The frame that stuck: MCP is a standardized bridge that lets the loop discover and call external functions, so Claude connects to any service through one protocol instead of needing a custom-coded integration per tool. [1] The roadmap's metaphor is exact: it's a "USB-C port for AI." One cable shape, many devices.
The framing that clicked is the contrast with the built-in tools. Read, Edit, Bash, Grep are the loop's hands on _my local machine_. MCP is the mechanism that gives it hands on _everything else_ — GitHub to manage pull requests, a Postgres or Snowflake database to query, Jira or Linear to update issues [1]. Without MCP, every one of those would need a bespoke integration coded into Claude itself. With MCP, each service publishes a server that speaks the protocol, and Claude discovers and calls whatever functions that server exposes.
What MCP actually is
The protocol is an open standard. The roadmap's definition is precise: it enables Claude Code to connect securely to a vast ecosystem of external tools, databases, and third-party services, extending the core capabilities beyond simple file editing [2]. Three properties matter:
- Standardized. One protocol, any server. I don't write integration code; I run a server that already exists (or write one against the spec).
- Discoverable. Claude learns what tools a server exposes dynamically — it doesn't need them hard-coded. The tool menu grows by connecting servers, not by patching the agent.
- Isolated. Each MCP server is its own process. Connecting one doesn't grant access to another; permissions are granted per server.
Skills improve how MCP gets used
A subtle but important pairing: skills make MCP usage smarter. The roadmap flags that skills act as structured knowledge packages that improve how Claude interacts with MCP servers, giving it precise, context-aware instructions for specific tools and workflows [3]. Rather than the model inferring how to use a given server from scratch each time, a skill provides curated guidance on which calls to make, how to chain them, and how to interpret results.
The way of thinking: MCP grows the tool menu; skills shape _how_ the model reaches into that menu. A GitHub MCP server exposes functions; a "manage a pull request" skill tells the model which sequence of those functions actually produces a good PR. They compose — and the discipline (from the skills post) still holds: enable only the MCP servers a session needs, because every server's tool definitions consume context [4].
Channels: pushing the outside in
Channels showed up earlier (in the surfaces post) as a way to use Claude from a phone. From the MCP angle, they're a specific kind of MCP server plugin: they push messages, alerts, and webhooks _into_ a running session [5]. I install one for Telegram, Discord, or iMessage, configure credentials, pair my account, and events arrive in my already-open session — ideal for an always-on setup where Claude runs in the background.
The distinction worth holding onto: regular MCP servers expose functions the model calls when _it_ needs something; channels push events _in_ from the outside world without the model asking. Both speak MCP; the direction differs.
MCP tunnels: private network, no exposed ports
The piece that took longest to click is MCP Tunnels, and it matters for any real-world setup. Tunnels connect Claude to MCP servers running inside a _private network_ without opening inbound firewall ports or exposing services to the public internet [6]. Traffic flows over an outbound-only encrypted connection, so internal tools and data sources stay fully private while still being reachable.
Why this is a big deal: most enterprise data — internal databases, private APIs, intranet services — can never be exposed publicly, which without tunnels would mean MCP simply can't reach them. With tunnels, I can build agents that interact with internal systems securely, because the connection is initiated from inside the private network outward. The security posture is "no inbound surface," which is the only posture a security team will sign off on.
Managing MCP in a session
The /mcp slash command is the integration hub inside a session. While I use claude mcp add in the terminal to install a new server, /mcp manages connections, authorizes permissions, and views the specific tools available to the model [7]. It's the place to check what the tool menu actually contains right now — which matters for the context-hygiene discipline of enabling only what's needed.
How I use this
The habit these notes left me with is an enablement test for MCP servers: _does this session actually call into that service?_ If not, the server stays disabled, because its tool definitions cost context every turn. For sessions that do need external reach, I pair the MCP server with a skill that shapes how the model uses it, so the calls are deliberate rather than improvised. And for anything behind a corporate firewall, tunnels are the only acceptable path — outbound-only, no inbound port, full privacy. The throughline: MCP grows what the loop can touch; the discipline is keeping that growth intentional.
References
[1] Anthropic, "Connect Claude Code to tools via MCP," Claude Code Docs, 2025. [Online]. Available: https://code.claude.com/docs/en/mcp
[2] Model Context Protocol, "What is the Model Context Protocol?," 2025. [Online]. Available: https://modelcontextprotocol.io/docs/getting-started/intro
[3] Anthropic, "The Complete Guide to Building Skills for Claude," Anthropic Resources, 2025. [Online]. Available: https://resources.anthropic.com/hubfs/The-Complete-Guide-to-Building-Skill-for-Claude.pdf?hsLang=en
[4] Mario Giancini, "The Hidden Cost of MCP Servers (And When They're Worth It)," 2025. [Online]. Available: https://mariogiancini.com/the-hidden-cost-of-mcp-servers-and-when-theyre-worth-it
[5] Anthropic, "Push events into a running session with channels," Claude Code Docs, 2025. [Online]. Available: https://code.claude.com/docs/en/channels
[6] Anthropic, "MCP Tunnels," Claude Developer Platform Docs, 2025. [Online]. Available: https://platform.claude.com/docs/en/agents-and-tools/mcp-tunnels/overview
[7] Anthropic, "Interactive mode — /mcp," Claude Code Docs, 2025. [Online]. Available: https://code.claude.com/docs/en/interactive-mode
Knowledge check · Question 1 of 5
What problem does MCP solve?
Comments
Leave a Comment
You must be signed in to comment
0 Comments
No comments yet. Be the first to comment!