MCP (Model Context Protocol), Anthropic tarafından tanıtılan açık bir standarttır ve AI uygulamalarının harici araçlar ve verilerle birleşik bir arayüz aracılığıyla bağlanmasını sağlar — her uygulama için özel bir entegrasyon yazmak yerine. Bunu bir model ile dış dünya arasında evrensel bir adaptör olarak düşünün.
İstemci ve sunucu
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
