mcp-use TypeScript API
    Preparing search index...

    Type Alias ElicitValidationResult

    Result of validate(params, content).

    type ElicitValidationResult = {
        errors?: string[];
        valid: boolean;
    }
    Index
    errors?: string[]

    Validation error messages when valid is false.

    valid: boolean

    Whether the submitted content satisfies the requested schema.