fastmcp.client.client
Classes
ClientSessionState
Holds all session-related state for a Client instance.
This allows clean separation of configuration (which is copied) from
session state (which should be fresh for each new client instance).
CallToolResult
Parsed result from a tool call.
Client
MCP client that delegates connection management to a Transport instance.
The Client class is responsible for MCP protocol logic, while the Transport
handles connection establishment and management. Client provides methods for
working with resources, prompts, tools and other MCP capabilities.
This client supports reentrant context managers (multiple concurrent
async with client: blocks) using reference counting and background session
management. This allows efficient session reuse in any scenario with
nested or concurrent client usage.
MCP SDK 1.10 introduced automatic list_tools() calls during call_tool()
execution. This created a race condition where events could be reset while
other tasks were waiting on them, causing deadlocks. The issue was exposed
in proxy scenarios but affects any reentrant usage.
The solution uses reference counting to track active context managers,
a background task to manage the session lifecycle, events to coordinate
between tasks, and ensures all session state changes happen within a lock.
Events are only created when needed, never reset outside locks.
This design prevents race conditions where tasks wait on events that get
replaced by other tasks, ensuring reliable coordination in concurrent scenarios.
Args:
-
transport: Connection source specification, which can be:- ClientTransport: Direct transport instance
- FastMCP: In-process FastMCP server
- AnyUrl or str: URL to connect to
- Path: File path for local socket
- MCPConfig: MCP server configuration
- dict: Transport configuration
-
roots: Optional RootsList or RootsHandler for filesystem access -
sampling_handler: Optional handler for sampling requests -
log_handler: Optional handler for log messages -
message_handler: Optional handler for protocol messages -
progress_handler: Optional handler for progress notifications -
timeout: Optional timeout for requests (seconds or timedelta) -
init_timeout: Optional timeout for initial connection (seconds or timedelta). Set to 0 to disable. If None, uses the value in the FastMCP global settings.
session
initialize_result
set_roots
send_roots_list_changed.
set_sampling_callback
set_elicitation_callback
is_connected
new
- A new Client instance with the same configuration but disconnected state.
initialize
auto_initialize=False was set during client construction.
Manual calls to this method are only needed when auto-initialization is disabled.
Args:
timeout: Optional timeout for the initialization request (seconds or timedelta). If None, uses the client’s init_timeout setting.
- The server’s initialization response containing server info, capabilities, protocol version, and optional instructions.
RuntimeError: If the client is not connected or initialization times out.
close
ping
cancel
progress
set_logging_level
send_roots_list_changed
complete_mcp
ref: The reference to complete.argument: Arguments to pass to the completion request.context_arguments: Optional context arguments to include with the completion request. Defaults to None.
- mcp.types.CompleteResult: The complete response object from the protocol, containing the completion and any additional metadata.
RuntimeError: If called while the client is not connected.McpError: If the request results in a TimeoutError | JSONRPCError
complete
ref: The reference to complete.argument: Arguments to pass to the completion request.context_arguments: Optional context arguments to include with the completion request. Defaults to None.
- mcp.types.Completion: The completion object.
RuntimeError: If called while the client is not connected.McpError: If the request results in a TimeoutError | JSONRPCError

