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
