userConfigPath property

  1. @override
String? get userConfigPath
override

Config file path relative to user home (optional)

Implementation

@override
String? get userConfigPath {
  final home = Platform.environment['HOME'];
  if (home == null) return null;
  return p.join(home, '.claude', 'mcp.json');
}