MCP (Model Context Protocol) એક ખુલ્લો ધોરણ છે, જે Anthropic દ્વારા રજૂ કરવામાં આવ્યો હતો, જે AI apps ને બાહ્ય સાધનો અને ડેટાને એક એકીકૃત ઇન્ટરફેસ દ્વારા જોડવાની મંજૂરી આપે છે — દરેક app માટે કસ્ટમ ઇન્ટિગ્રેશન લખવાની જગ્યાએ. તેને મોડેલ અને બાહ્ય વિશ્વ વચ્ચે સાર્વત્રિક સ્વીકારકર્તા તરીકે વિચારો.
ક્લાયંટ અને સર્વર
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
