MCP — the Model Context Protocol — is an open standard that lets AI applications connect to external tools and data through one common interface. Instead of every AI app needing a custom integration for every service, a service publishes one MCP server and any MCP-capable client — Claude, ChatGPT, an IDE, your own agent — can discover and use its capabilities.
Before MCP, giving an AI assistant access to a real system meant writing glue code for that specific pair: this assistant, that API. Ten assistants and ten services meant up to a hundred integrations — the classic N×M problem. Each one handled auth, data shapes, and errors differently, and none of it transferred.
MCP collapses that to N+M. The service implements the protocol once, as a server. The AI application implements it once, as a client. Any client can then talk to any server. The common analogy is a USB-C port for AI applications: one connector, many devices.
MCP has three roles, and the names trip people up less if you anchor on who owns what:
When the model wants to act, the client sends a tool call and the server executes it and returns the result:
// The AI decides to call a tool; the client sends JSON-RPC:
{
"method": "tools/call",
"params": {
"name": "create_card",
"arguments": {
"board_id": "b7f3…",
"title": "Draft May newsletter"
}
}
}The model never sees your HTTP client or your auth code — it sees a typed catalog of what it may do, and the host enforces the boundary.
The protocol is JSON-RPC 2.0 over a transport, and the spec defines two (as of the current revision, July 2026):
Remote servers authenticate the connection — typically a bearer token in the Authorization header or an OAuth flow — so the server knows who is acting, not just that someone is.
Anthropic introduced MCP in November 2024 and open-sourced the specification and SDKs. Adoption crossed vendor lines fast — OpenAI announced client support in March 2025 — and through 2025 mainstream IDEs and agent frameworks followed. In December 2025, Anthropic donated the protocol to the Agentic AI Foundation under the Linux Foundation, making it vendor-neutral in governance as well as in practice. The ecosystem now counts thousands of servers, discoverable through the official MCP registry. (Facts as of July 2026.)
The practical shift is that an AI assistant stops being a text box and starts being a coworker with hands. With MCP, “draft the May newsletter and file it for review” is not a copy-paste relay — the model reads the brief from one tool call, writes the draft back with another, and moves the work forward in the system your team already uses. The integration cost that used to make this a per-company engineering project is now a config entry.
It also changes what to look for in the software you buy: does this product treat its MCP surface as a first-class interface with real identity and permissions, or as a demo?
A concrete example of the pattern end-to-end: Novum OS is a kanban board where the MCP server is part of the product, not an afterthought. Every UI capability has a typed MCP tool — listing boards, creating and moving cards, writing content, even draining a column as a durable work queue. An agent connects with its own seat — its own identity, scoped permissions, and audit trail — so “the AI did it” is an attributed, revocable fact rather than a mystery write. The five-minute setup guide shows the whole flow.
Try MCP against a real board — free tier, no card, the MCP server included.
Create account