An interactive chatbot MCP client: it launches an MCP server over stdio, lists its tools, and hands them to Claude, which can call them while answering your questions.
This example accompanies the Build an MCP client tutorial.
- Python 3.10+
- uv
- An Anthropic API key (optional — see below)
Put your API key in a .env file (or export ANTHROPIC_API_KEY in your shell):
cp .env.example .env
# then edit .env and add your keyPass the path to a server script. .py servers are launched with uv, .js servers with node:
uv run client.py ../weather-server-python/weather.pyor, against the TypeScript server (build it first — see its README):
uv run client.py ../weather-server-typescript/build/index.jsType a question (for example, "What's the weather in Sacramento?") and Claude answers using the server's tools. Type quit to exit.
Without an ANTHROPIC_API_KEY, the client still connects, prints the server's tools, and exits — useful for verifying the MCP wiring without credentials.
call_tool validates every result against the tool's declared output schema, so the spec's client-side SHOULD needs no code here.
The two channels go to different readers: content is forwarded to the model, while structured_content is used as data — when a tool returns an array, the client counts its items rather than re-reading the prose. See Structured Content.
Client(transport, mode="auto") probes server/discover and falls back to the 2025-11-25 handshake; client.protocol_version reports which era you got. See Protocol versions.