enquire-mcp API reference - v3.9.0-rc.4
    Preparing search index...

    Interface EmbedSearchResponse

    Envelope returned by embeddingsSearch.

    total_chunks is the full index size (post-exclusion filtering), useful for sanity-checking that the agent's build-embeddings actually ran on the expected corpus.

    interface EmbedSearchResponse {
        hyde?: boolean;
        matches: EmbedHit[];
        method: "embeddings-cosine";
        model: string;
        query: string;
        total_chunks: number;
    }
    Index

    Properties

    hyde?: boolean

    v3.1.0 — present + true when retrieval used the agent-supplied hypothetical_answer as the embedding seed (HyDE). Lets clients audit whether they're seeing raw-query or HyDE-augmented results.

    matches: EmbedHit[]
    method: "embeddings-cosine"
    model: string
    query: string
    total_chunks: number