MCP (Model Context Protocol) yra atviras standartas, kurį pristatė Anthropic, leidžiantis AI programoms prisijungti prie išorinių įrankių ir duomenų per vieną vieningą sąsają — vietoj to, kad rašytumėte savo integracijas kiekvienai programai. Galvokite apie jį kaip apie universalų adapterį tarp modelio ir išorinio pasaulio.
Klientas ir serveris
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
