simpleConfig static method

McpClientConfig simpleConfig({
  1. required String name,
  2. required String version,
  3. bool enableDebugLogging = false,
})

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,
  );
}