@mcp-z/client
    Preparing search index...

    Interface SearchResult

    A single search result representing a matched capability

    interface SearchResult {
        description: string | undefined;
        matchedOn: string[];
        name: string;
        score: number;
        server: string;
        type: CapabilityType;
    }
    Index
    description: string | undefined

    Human-readable description (may be truncated)

    matchedOn: string[]

    Which fields matched the search query

    name: string

    The name of the capability

    score: number

    Relevance score from 0 (low) to 1 (high)

    server: string

    The server that provides this capability

    The type of capability