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

    Interface UnresolvedWikilink

    One unresolved (broken) wikilink — a [[Target]] that doesn't point to any file in the vault.

    line + snippet give the agent enough context to fix the link in-place.

    interface UnresolvedWikilink {
        alias: string | null;
        block: string | null;
        from_path: string;
        kind: "embed" | "wikilink";
        line: number;
        raw: string;
        section: string | null;
        snippet: string;
        target: string;
    }
    Index

    Properties

    alias: string | null

    Display alias, or null if absent.

    block: string | null

    ^block anchor, or null if absent.

    from_path: string

    Note containing the broken link.

    kind: "embed" | "wikilink"

    Whether the link is a normal [[wikilink]] or an ![[embed]].

    line: number

    1-based line number where the broken link appears.

    raw: string

    Raw inner-bracket text including any |alias / #section / ^block.

    section: string | null

    #section anchor, or null if absent.

    snippet: string

    ~120-char excerpt centered on the link.

    target: string

    Link target as written (e.g. "Foo", "Sub/Bar").