AnthropicMCPToolConfiguration.fromJson constructor
Implementation
factory AnthropicMCPToolConfiguration.fromJson(Map<String, dynamic> json) =>
AnthropicMCPToolConfiguration(
enabled: json['enabled'] as bool?,
allowedTools: json['allowed_tools'] != null
? List<String>.from(json['allowed_tools'] as List)
: null,
);