getSystemStatus method

Map<String, dynamic> getSystemStatus()

Get web platform status information

Implementation

Map<String, dynamic> getSystemStatus() {
  return {
    'initialized': _initialized,
    'platform': 'web',
    'backgroundServiceRunning': _backgroundService?.isRunning ?? false,
    'notificationsSupported': _supportsNotifications(),
    'storageSupported': _supportsLocalStorage(),
    'backgroundServiceSupported': _supportsBackgroundService(),
    'limitations': [
      'MCP server and client support is limited on web',
      'LLM integration is limited on web',
      'Background processing is limited to browser restrictions',
    ]
  };
}