simpleConfig static method
Helper method to create a simple client configuration
Implementation
static McpClientConfig simpleConfig({
required String name,
required String version,
bool enableDebugLogging = false,
}) {
return McpClientConfig(
name: name,
version: version,
enableDebugLogging: enableDebugLogging,
);
}