enquire-mcp API reference - v3.11.6-rc.2
    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 {
        age_days: number;
        matched_terms: string[];
        mtime: string;
        path: string;
        score: number;
        snippet: string;
        stale: boolean;
        title: string;
    }
    Index

    Properties

    age_days: number

    v3.10 — whole days since mtime (freshness signal; never negative).

    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.

    stale: boolean

    v3.10 — true when older than the default stale threshold (365d).

    title: string

    .md-stripped basename for display.