ModelRefs / MCP (Model Context Protocol) — AI Glossary

MCP (Model Context Protocol) — AI Glossary

An open protocol from Anthropic for standardizing how LLM clients connect to external tools, data sources, and prompts. Also called Model Context Protocol.

Overview

MCP defines a client-server architecture where MCP servers expose resources, tools, and prompts that any MCP-compatible client (Claude, Cursor, ChatGPT, Zed) can discover and invoke. It plays the same role for AI as LSP plays for editors — replacing bespoke plugin integrations.

Reference details

Topicagents
Also known asModel Context Protocol
Last reviewed2026-06-24

Example: N plus M instead of N times M

Four clients each needing five integrations is twenty bespoke connectors. With a shared protocol it is four clients and five servers — nine components, and a new server works with every client immediately. That arithmetic is the entire argument for standardising the interface.

bespoke : 4 clients x 5 tools = 20 integrations
protocol: 4 clients + 5 servers =  9 components

Commonly confused with

MCP is not function calling and does not replace it. Function calling is how a model expresses an intent to call a tool; MCP is how a client discovers and connects to the tools available. They operate at different layers and are normally used together.

When to use it

Reach for it when:

  • The same tools must be reachable from several clients
  • You want tool discovery rather than hard-coded integrations
  • Tools are maintained separately from the applications using them

Reach for something else when:

  • One client, two tools — direct integration is simpler
  • You have not scoped what an MCP server exposes; it is a new trust boundary
  • The tool surface changes rarely enough that discovery adds nothing

Referenced by

This term is used by the following ModelRefs references:

Continue your research

Use these connected ModelRefs sections to compare alternatives, inspect implementation paths, and review the evidence and governance boundaries relevant to MCP (Model Context Protocol) — AI Glossary.

Frequently asked questions

What is MCP (Model Context Protocol)?

An open protocol from Anthropic for standardizing how LLM clients connect to external tools, data sources, and prompts.

Is MCP (Model Context Protocol) the same as Model Context Protocol?

Yes — Model Context Protocol are common aliases for MCP (Model Context Protocol).

What concepts are related to MCP (Model Context Protocol)?

Closely related concepts include agent, tool use, function calling.