MCP (Model Context Protocol) ist ein offener Standard, eingeführt von Anthropic, der KI-Apps ermöglicht, sich mit externen Tools und Daten über eine einheitliche Schnittstelle zu verbinden — anstatt für jede App eine maßgeschneiderte Integration zu schreiben. Stellen Sie sich das als universellen Adapter zwischen einem Modell und der Außenwelt vor.
Client und Server
MCP SERVER → exposes capabilities to the model:
- TOOLS → actions the model can call (send_email, create_issue, search_files)
- RESOURCES → data the model can read (a file, a Drive doc, a DB row)
- PROMPTS → reusable prompt templates the server offers
MCP CLIENT → the AI app (Claude Desktop, Claude Code, an IDE) that connects to servers
TRANSPORT → stdio (local process) or HTTP (remote), speaking JSON-RPC both ways
