MCP is a protocol that standarises how applications provide context to large language models (LLMs).
A lot of people liken it to 'USB-C for AI' - a standardised way to connect AI models to different data sources and tools.
MCP is a client-server architecture, with a MCP Host (e.g. VS Code) connects to one or more MCP Servers (e.g. Figma's). The MCP Host does this by creating one-to-many MCP Clients, which then connect to a MCP Server in a one-to-one relationship.
MCP works on two layers:
The data layer protocol is the most interesting. Here, MCP defines three primitives:
Each primitive type has associated methods for discovery (*/list), retrieval (*/get), and in some cases, execution (tools/call).
This is the key part, as AI agents can discover these primitives at runtime. Meaning in the same request, an MCP Client can discover and then use a given tool. This is sometimes known as 'dynamic self discovery'?
MCP is similar, to different than something like REST.
- As such, it can bake in certain assumptions that are useful for AI, such as dynamic self discovery.
- Standaridsation then becomes more important also, as REST is more of a 'style' than hard rules.
Note that MCP servers often are a wrapper around an existing API - translating between MCP and REST, for example.It's kind of like an API, but not quite. If an API is just an interface or contract to execute functions, that's very similar to what MCP servers are trying to do (as a whole). However because MCP servers use MCP, there's certain rules and schema they have to follow. This makes MCP servers perhaps an opinionated API. Often MCP servers are just wrappers around an existing API, translating between MCP and REST, for example.
But remember, that's MCP servers. Being more nitpicky, MCP is a protocol, and APIs are an interface. So MCP != an API - but an MCP server is close to an API.
One huge downside for AI is the amount of context tokens that they consume. Every tool description, parameter schema, and response format eats into the model's working memory. Additionally each MCP server usually requires their own auth, which makes orchestration a bit tedious. [[20260318091849-ai-context-tokens]]
In theory MCP is universal to more than just AI, but then it gets a bit weird - what's actually universal? If you remove the AI, then you've just created the idea of an 'API', which we already knew was universal. However MCPs being the hot new thing is making everyone improve interoperability in a new way.
https://modelcontextprotocol.io/ https://glama.ai/blog/2025-06-06-mcp-vs-api
[[20260306121823-ai-instructions]] [[20260306121850-ai-agent-skills]]