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

    Interface SemanticHit

    One hit from semanticSearch. matched_terms are the query tokens that contributed to the cosine score, sorted by IDF (rarest first).

    interface SemanticHit {
        matched_terms: string[];
        mtime: string;
        path: string;
        score: number;
        snippet: string;
        title: string;
    }
    Index

    Properties

    matched_terms: string[]

    Up to 8 query tokens that contributed, sorted by IDF desc (rarest first).

    mtime: string

    ISO-8601 modification time of the note.

    path: string

    Vault-relative path of the matching note.

    score: number

    Cosine similarity in [0, 1], rounded to 4 decimals. Sort key.

    snippet: string

    ~120-char excerpt centered on the first matched term in the body.

    title: string

    .md-stripped basename for display.