Schema<T>.toMCP constructor
Implementation
factory Schema.toMCP(Map<String, Object?> map) {
return Schema(
type: map['type'] as String,
title: map['title'] as String?,
description: map['description'] as String?,
defaultValue: map['default'] as T?,
);
}