MCP (Model Context Protocol)
Open protocol that lets LLMs connect to tools, data sources and apps through a standard interface.
/ quick answer
The Model Context Protocol (MCP) is an open standard for exposing tools, files and APIs to AI models. Instead of bespoke plugins per vendor, an MCP server describes its capabilities and any compatible client (Claude, Cursor, IDE agents, custom apps) can call them with a shared schema — like USB for AI tools.
What does MCP actually stand for?
Model Context Protocol. It is an open standard for exposing tools, resources and prompt templates to AI models over a JSON-RPC channel.
Who created MCP?
Anthropic released the specification in November 2024. OpenAI, Google, Microsoft, Cursor and most agent frameworks have since adopted it.
How is MCP different from an OpenAI plugin or a Claude tool call?
Plugins and tool calls are proprietary and tied to one vendor. MCP is a shared protocol: one MCP server works with Claude, ChatGPT, Cursor, VS Code, custom agents and anything else that speaks MCP.
Do I need to run my own MCP server?
Only if you want to expose your own data or tools. Public MCP servers already exist for GitHub, Postgres, Notion, filesystems and hundreds of SaaS tools.
Is MCP secure for internal data?
MCP transport is transport-agnostic (stdio, HTTP, SSE) and defers auth to the transport. Self-hosting a server behind your VPN with scoped credentials keeps data inside your perimeter.
/ continue exploring
Related concepts
The vocabulary this page depends on.
- →MCP (Model Context Protocol)
Open standard letting AI clients call external tools, data and prompts.
- →Context Engineering
Context engineering is the discipline of deciding exactly what information enters a model's context window, in what order and at what cost.
- →Agent Memory
Persistent context that lets agents retain preferences, decisions, and prior work.
- →Agentic RAG
RAG where an agent decides what to retrieve, when, and from which source — instead of a single static query.
Related workflows
Turn this into a repeatable process.
- →Build an Internal Knowledge Bot
Ship a Slack bot that answers questions from your company docs.
- →AI Agent Monitoring System
Track agent runs, failures, cost, and review queues from one operational surface.
Related tool stacks
The tools that run it in production.
- →Agent Research Stack
Web-search-enabled agent for autonomous research tasks.
- →Internal Ops Agent Stack
Tool-calling agent stack for internal triage, routing, research, and operations.
Comparisons & alternatives
Pick between the options.
- →OpenAI vs Anthropic for Agents
Which provider builds better production agents in 2026.
- →CrewAI vs AutoGen vs LangGraph
Three approaches to multi-agent orchestration.
- →RAG vs Long Context Windows
Is RAG obsolete now that context windows are 1M+ tokens? Not quite — here's when each wins.
- →Cursor Agents vs Devin vs Lovable
Three ways AI writes code for you in 2026.