Options for searching tools

interface ToolSearchOptions {
    query?: string;
    category?: string;
    tags?: string[];
    requiresApproval?: boolean;
    limit?: number;
}

Properties

query?: string
category?: string
tags?: string[]
requiresApproval?: boolean
limit?: number