connectClient method

Future<bool> connectClient(
  1. String clientId
)

UNSUPPORTED ON WEB Connect an MCP client

Implementation

Future<bool> connectClient(String clientId) async {
  _logger.fine('Client connection not supported on web platform');
  throw MCPPlatformNotSupportedException(
    'MCP Client connection is not supported on web platform',
    errorCode: 'WEB_CLIENT_NOT_SUPPORTED',
  );
}