What you will learn What the absence of a standard actually cost, and exactly what MCP standardised.
Three shapes passed over MCP in one line — "a protocol for talking to an outside program". This chapter is why that protocol was needed: there was a time when the way you attached them differed by product.
Say you attach three tools (Slack, GitHub, an internal database) to three agents.
graph TD
A1["Agent A"] --> S1["Slack integration for A"]
A1 --> G1["GitHub integration for A"]
A1 --> D1["Internal DB integration for A"]
A2["Agent B"] --> S2["Slack integration for B"]
A2 --> G2["GitHub integration for B"]
A2 --> D2["Internal DB integration for B"]That is 3 × 3 = 9 integrations. One more tool adds three; one more agent adds as many as you have tools.
| Tools × agents | Integrations to build |
|---|---|
| 3 × 3 | 9 |
| 5 × 4 | 20 |
| 10 × 5 | 50 |
That was the real cost. And maintaining them was worse than building them — change the Slack API and you fix it in three places.
Model Context Protocol. It put a common specification in between.
graph TD
A1["Agent A"] --> M["MCP"]
A2["Agent B"] --> M
A3["Agent C"] --> M
M --> S["Slack server"]
M --> G["GitHub server"]
M --> D["Internal DB server"]Now the arithmetic changes.
3 × 3 = 9 becomes 3 + 3 = 6, and the gap widens with scale. 10 × 5 = 50 becomes 10 + 5 = 15.
Think of USB.
MCP is the USB between AI and tools.
Precisely three things.
| What it defines | Content |
|---|---|
| How to introduce | how a server announces its list of tools |
| How to call | the request format for invoking a tool |
| How to reply | the format for returning a result |
It did not standardise what a tool does. Each server decides that. The same way USB defines "how you connect" but not "what a printer prints."
Slack, GitHub, Google Drive and the like often already have MCP servers. You do not have to build them.
Build one MCP server for your internal system and several agents use it. Switch to a different AI product later and the server carries over unchanged.
Attach tools directly to a specific AI product and you are tied to it. Attach via MCP and you can leave the tools alone and change the AI side.
In practice this matters more than expected. AI products change quickly; internal system integrations, once built, stay in use for a long time.
It means the connection method is standard — not that every system already has an MCP server. Internal systems generally have to be built. The gain is that once built, they are reusable.
The standard is about the connection method, not about safety. Attaching an MCP server means allowing the agent to do everything that server can do. That is covered separately in tools are permissions.
1. Attaching 5 tools to 4 agents — how many integrations before and after the standard?
Before, 5 × 4 = 20; with MCP, 5 + 4 = 9. You implement once on the tool side and once on the agent side.
2. What did MCP not standardise?
What a tool does. It defines only the introduce, call, and reply formats; each server decides its own functionality. The same way USB defines the connection but not what a printer prints.
3. Why does attaching via MCP make switching easier?
Because the tool integration and the AI product are decoupled. Attach directly to a product and you are tied to it; attach via MCP and you leave the tools alone while changing the AI side. AI products change fast and internal integrations last, so this is a big practical difference.
What an MCP server actually provides → What an MCP server gives you
Tool side: build it once (as an MCP server)Agent side: implement it once (as an MCP client)Connecting: just plug in