179 questions
No questions match those filters.
What is MCP (Model Context Protocol), and why does it m...
This is one of the questions in the full AI/ML interview bank. Pro unlocks all 1789 questions; Premium includes the same bank plus the highest daily Practice limit.
See plansMCP standardizes the interface between an AI model and the tools or data it needs to reach — the same role REST played for standardizing how web services talk to each other, just for AI-to-tool communication instead of service-to-service.
Before a shared standard, connecting a model to Google Drive, then to Slack, then to GitHub meant three separate integrations, each written specifically for that combination of model and service, and none of it reusable elsewhere. With MCP, each service exposes itself as an MCP server once, and any MCP-compatible model can connect to it through the same protocol — adding a new tool becomes “point at this server” rather than “write new integration code.”
It follows a client-server split: the AI application acts as the client, and each tool or service runs as its own MCP server. That separation is what makes the ecosystem compound — a server built once is immediately usable by every compatible agent, not just the one it was built alongside.