MCP (Model Context Protocol) একটি খোলা মান, Anthropic দ্বারা প্রবর্তিত, যা AI অ্যাপ্লিকেশনগুলিকে একটি একীভূত ইন্টারফেসের মাধ্যমে বাহ্যিক সরঞ্জাম এবং ডেটার সাথে সংযোগ স্থাপন করতে দেয় — প্রতিটি অ্যাপের জন্য কাস্টম ইন্টিগ্রেশন লেখার পরিবর্তে। এটিকে একটি মডেল এবং বাইরের বিশ্বের মধ্যে একটি সর্বজনীন অ্যাডাপ্টার হিসাবে ভাবুন।
ক্লায়েন্ট এবং সার্ভার
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
