Learn about the advanced features of the FlashMCP Client.
In addition to basic server interaction, FlashMCP clients can also handle more advanced features and server interaction patterns. The Client constructor accepts additional configuration to handle these server requests.
To enable many of these features, you must provide an appropriate handler or callback function. For example. In most cases, if you do not provide a handler, FlashMCP’s default handler will emit a DEBUG level log.
MCP servers can emit logs to clients. To process these logs, you can provide a log_handler to the client.The log_handler must be an async function that accepts a single argument, which is an instance of FlashMCP.client.logging.LogMessage. This has attributes like level, logger, and data.
By default, FlashMCP uses a handler that logs progress updates at the debug level. This default handler properly handles cases where total or message might be None.You can override the progress handler for specific tool calls:
Copy
# Client uses the default debug logger for progressclient = Client(...)async with client: # Use default progress handler (debug logging) result1 = await client.call_tool("long_task", {"param": "value"}) # Override with custom progress handler just for this call result2 = await client.call_tool( "another_task", {"param": "value"}, progress_handler=my_progress_handler )
A typical progress update includes:
Current progress value (e.g., 2 of 5 steps completed)
MCP Servers can request LLM completions from clients. The client can provide a sampling_handler to handle these requests. The sampling handler receives a list of messages and other parameters from the server, and should return a string completion.The following example uses the marvin library to generate a completion:
Roots are a way for clients to inform servers about the resources they have access to or certain boundaries on their access. The server can use this information to adjust behavior or provide more accurate responses.Servers can request roots from clients, and clients can notify servers when their roots change.To set the roots when creating a client, users can either provide a list of roots (which can be a list of strings) or an async function that returns a list of roots.
Copy
from FlashMCP import Clientclient = Client( ..., roots=["/path/to/root1", "/path/to/root2"],)