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

    Interface NoteNeighbors

    One-hop graph neighborhood around a target note — returned by getNoteNeighbors.

    Three orthogonal "neighbor" buckets:

    • outbound — notes the target links to
    • inbound — notes that link to the target (with backlink count)
    • tag_siblings — notes sharing ≥1 tag, excluding outbound/inbound
    interface NoteNeighbors {
        center: { mtime: string; path: string; tags: string[]; title: string };
        inbound: { count: number; path: string; tags: string[]; title: string }[];
        outbound: { path: string; tags: string[]; title: string }[];
        tag_siblings: { path: string; shared_tags: string[]; title: string }[];
    }
    Index

    Properties

    center: { mtime: string; path: string; tags: string[]; title: string }

    The target note (the graph center).

    inbound: { count: number; path: string; tags: string[]; title: string }[]

    Notes linking to the center, sorted by count desc. Bounded by max_per_bucket.

    outbound: { path: string; tags: string[]; title: string }[]

    Notes the center links to. Bounded by max_per_bucket.

    tag_siblings: { path: string; shared_tags: string[]; title: string }[]

    Notes sharing ≥1 tag, excluding outbound/inbound. Bounded by max_per_bucket.