DEPLOYEDAI-era interview training
RankBootstrapping
XP 0 / 250
0
0%
Ready
Interview questions · MCP (Model Context Protocol) Interview Questions

MCP (Model Context Protocol) Interview Questions

MCP (Model Context Protocol) is the emerging standard for connecting models to tools and data. Know the primitives and when it beats plain function calling.

Practice these free — flashcards, retrieval checks & a timed mock interview.▸ Open the AI Agents Engineering trainer

Key concepts to know

Interview questions & answers

What are the three core primitives an MCP server exposes?

Tools, resources, and prompts.

Why: MCP servers expose tools (actions), resources (data), and prompts (templates).

Which statement is correct about MCP transports?

stdio runs the server as a local subprocess; streamable HTTP is for remote/hosted servers.

Why: stdio launches the server locally over stdin/stdout; streamable HTTP is the standard remote transport (superseding HTTP+SSE).

In a typical MCP SDK, where does the tool's JSON schema and description come from?

The SDK generates it from the function's typed signature and docstring.

Why: SDKs like FastMCP derive the schema and description from the typed signature and docstring — so clear typing and docs directly improve tool selection.

Go deeperPractice the full track in the free interactive trainer — spaced-repetition flashcards, retrieval checks and timed mock interviews.

Related topics