export interface McpToolProperty {
/**
* The name of the property.
*/
propertyName: string;
/**
* The type of the property.
*/
propertyType: string;
/**
* A description of the property.
* This provides additional context about the purpose or usage of the property.
*/
description: string;
/**
* Indicates whether the property is required.
*/
required?: boolean;
}
in the output, required is filled with all the properties