Skip to main content
In this tutorial, you’ll learn how to build an LLM-powered chatbot client that connects to MCP servers. Before you begin, it helps to have gone through our Build an MCP Server tutorial so you can understand how clients and servers communicate.
You can find the complete code for this tutorial here.

System Requirements

Before starting, ensure your system meets these requirements:
  • Mac or Windows computer
  • Latest Python version installed
  • Latest version of uv installed
  • You must use the Python MCP SDK 2.0.0 or higher

Setting Up Your Environment

First, create a new Python project with uv:

Setting Up Your API Key

You’ll need an Anthropic API key from the Anthropic Console.Create a .env file to store it:
Add .env to your .gitignore:
Make sure you keep your ANTHROPIC_API_KEY secure!

Creating the Client

Imports and Setup

First, let’s set up our imports and the pieces the rest of the file shares:
Client is the single object your program talks to the server through. Listing the tools, calling one, reading a resource: each of those is a method on it.

Server Connection Management

Next, we’ll work out which process to launch for a given server script:
StdioServerParameters is configuration, not a connection. stdio_client() turns it into a stdio transport, and Client opens that transport when you enter its async with block. We’ll do both in main().

Query Processing Logic

Now let’s add the core functionality for processing queries and handling tool calls:
call_tool returns a CallToolResult. Its content is a list of blocks, which is why we narrow to TextContent before reading .text. A tool that raises does not raise here: it answers with is_error set, and passing that flag on lets Claude read the message and try something else.

Interactive Chat Interface

Now we’ll add the chat loop:
input() blocks, so it runs on a worker thread. That keeps the event loop free to service the connection while you type.

Main Entry Point

Finally, we’ll add the main execution logic:
That async with is the entire connection lifecycle. Entering it launches the server and agrees a protocol version with it; leaving it disconnects and shuts the subprocess down. There is nothing to close by hand.You can find the complete client.py file here.

Key Components Explained

1. Client Initialization

  • A single Client carries the connection, and async with is its whole lifecycle
  • There is no connect/close pair to call and nothing to clean up afterwards
  • Configures the Anthropic client for Claude interactions

2. Server Connection

  • Supports both Python and Node.js servers
  • Validates server script type
  • Launches the server as a subprocess and speaks stdio to it
  • Lists the available tools once the connection is open

3. Query Processing

  • Maintains conversation context
  • Handles Claude’s responses and tool calls
  • Manages the message flow between Claude and tools
  • Combines results into a coherent response

4. Interactive Interface

  • Provides a simple command-line interface
  • Handles user input and displays responses
  • Includes basic error handling
  • Allows graceful exit

5. Resource Management

  • Leaving the async with block disconnects and shuts the server subprocess down
  • A failing query is reported without ending the session
  • Typing quit, or closing standard input, exits cleanly

Common Customization Points

  1. Tool Handling
    • Modify process_query() to handle specific tool types
    • Add custom error handling for tool calls
    • Implement tool-specific response formatting
  2. Response Processing
    • Customize how tool results are formatted
    • Add response filtering or transformation
    • Implement custom logging
  3. User Interface
    • Add a GUI or web interface
    • Implement rich console output
    • Add command history or auto-completion

Running the Client

To run your client with any MCP server:
If you’re continuing the weather tutorial from the server quickstart, your command might look something like this: python client.py .../quickstart-resources/weather-server-python/weather.py
The client will:
  1. Connect to the specified server
  2. List available tools
  3. Start an interactive chat session where you can:
    • Enter queries
    • See tool executions
    • Get responses from Claude
Here’s an example of what it should look like if connected to the weather server from the server quickstart:

How It Works

When you submit a query:
  1. The client gets the list of available tools from the server
  2. Your query is sent to Claude along with tool descriptions
  3. Claude decides which tools (if any) to use
  4. The client executes any requested tool calls through the server
  5. Results are sent back to Claude
  6. Claude provides a natural language response
  7. The response is displayed to you

Best practices

  1. Error Handling
    • Check result.is_error rather than expecting a failing tool to raise
    • Provide meaningful error messages
    • Gracefully handle connection issues
  2. Resource Management
    • Let the async with block own the connection
    • Keep it open for as long as you need the server
    • Handle server disconnections
  3. Security
    • Store API keys securely in .env
    • Validate server responses
    • Be cautious with tool permissions
  4. Tool Names
    • Tool names can be validated according to the format specified here
    • If a tool name conforms to the specified format, it should not fail validation by an MCP client

Troubleshooting

Server Path Issues

  • Double-check the path to your server script is correct
  • Use the absolute path if the relative path isn’t working
  • For Windows users, make sure to use forward slashes (/) or escaped backslashes (\) in the path
  • Verify the server file has the correct extension (.py for Python or .js for Node.js)
Example of correct path usage:

Response Timing

  • The first response might take up to 30 seconds to return
  • This is normal and happens while:
    • The server initializes
    • Claude processes the query
    • Tools are being executed
  • Subsequent responses are typically faster
  • Don’t interrupt the process during this initial waiting period

Common Error Messages

If you see:
  • FileNotFoundError: Check your server path
  • Connection refused: Ensure the server is running and the path is correct
  • Tool execution failed: Verify the tool’s required environment variables are set
  • Timeout error: Consider raising read_timeout_seconds on the Client

Next steps

Example servers

Check out our gallery of official MCP servers and implementations