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

    Interface SimilarNote

    One row of the findSimilar response. Exposes the per-signal breakdown so the agent can explain why a note is considered similar.

    interface SimilarNote {
        mtime: string;
        path: string;
        score: number;
        shared_tags: string[];
        signals: {
            co_backlink: number;
            shared_outbound: number;
            tag_jaccard: number;
            title_3gram: number;
        };
        title: string;
    }
    Index

    Properties

    mtime: string

    ISO-8601 modification time of the candidate note.

    path: string

    Vault-relative path of the candidate.

    score: number

    Composite weighted score in approximately [0, 8.5]. Sort key (desc).

    shared_tags: string[]

    Tags shared between the target and this candidate (lowercased, sorted).

    signals: {
        co_backlink: number;
        shared_outbound: number;
        tag_jaccard: number;
        title_3gram: number;
    }

    Per-signal contributions in [0, 1] before weighting.

    title: string

    .md-stripped basename for display.