Glossary term
MCP (Model Context Protocol)
MCP (Model Context Protocol) is an open standard that defines how an AI application connects to external tools, data sources, and prompts over a uniform client–server interface, so that any compliant client can use any compliant server without integration code written for that specific pair.
Also known as Model Context ProtocolMCP serverMCP client
In practice
The protocol specifies a JSON-RPC exchange between a client and a server. A server advertises tools (callable operations), resources (readable data), and prompts (reusable instruction templates); a client — a chat application, an IDE, or an agent runtime — discovers them when it connects and calls them over stdio or HTTP. It was introduced by Anthropic in late 2024, published as an open specification, and is now implemented by clients and servers from many vendors and open-source projects. The value it captures is combinatorial: N clients and M tools stop requiring N×M bespoke integrations.
A connection standard says nothing about authority, and MCP deliberately does not try to. It describes how a call is framed and transported; it does not decide whose permissions apply to that call, whether the operation needs a signature before it takes effect, or what evidence remains afterwards. Those decisions belong to the system holding the data, which is why an MCP server is never safer than the interface it wraps: a server placed in front of a raw database connection hands the agent the service account reach, not the reach of the person asking.
The clean way to hold the two apart is that MCP standardizes how an agent reaches a tool, while a governed tool layer decides whether the call is allowed and whether it is recorded. Both are needed. Connectivity arriving years before governance is exactly how an agent ends up cheerfully exporting records that the person who asked was never entitled to see — not through malice, but because nothing in the path ever asked who was calling.
Where this term is used
Pages and articles that put this term to work.
Product pages
- Tools & MCP The @objectstack/mcp server turns objects, queries, and actions into policy-checked tools for Claude, Cursor, or any MCP client — with permissions enforced on every call.
- AI Build & Ask ObjectOS AI Build turns a described change into reviewable ObjectStack metadata. AI Ask answers over live business data inside user permissions; open-source ObjectStack supports your own agent via MCP.
Articles
- Sécurité MCP : pourquoi le protocole seul ne suffit pas MCP et A2A facilitent la connexion des agents aux outils. Mais connexion n'est pas autorisation : l'entreprise a besoin d'une couche qui impose identité, permissions et audit à chaque appel.
- Comment les agents AI travaillent dans les permissions d’entreprise Les entreprises n’ont pas besoin d’agents AI super-administrateurs. Elles ont besoin d’agents contrôlés, qui héritent des permissions, demandent validation pour les actions risquées et restent auditables.