createClient method
UNSUPPORTED ON WEB
Create an MCP client
Implementation
Future<String> createClient({
required String name,
required String version,
dynamic capabilities,
String? transportCommand,
List<String>? transportArgs,
Map<String, dynamic>? options,
}) async {
_logger.fine('Client creation not supported on web platform');
throw MCPPlatformNotSupportedException(
'MCP Client creation is not supported on web platform',
errorCode: 'WEB_CLIENT_NOT_SUPPORTED',
);
}