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

    Function getOutboundLinks

    • List every link emanating from a single note, with resolved targets.

      The "outbound" complement to getBacklinks. Useful for building a link-graph view of a note's neighborhood without paying for the inbound scan. Resolution uses the same fuzzy match as resolveWikilink, biased toward the source note's folder.

      Parameters

      • vault: Vault

        The vault.

      • args: {
            include_embeds?: boolean;
            include_unresolved?: boolean;
            path?: string;
            title?: string;
        }

        One of path or title is required. include_embeds defaults to true. include_unresolved defaults to true — set false to filter out broken targets.

      Returns Promise<{ from_path: string; from_title: string; links: OutboundLink[] }>

      { from_path, from_title, links }links preserves the order links appear in the source note.

      If the source note can't be resolved.

      const r = await getOutboundLinks(vault, {
      path: "Posts/2026/Article.md",
      include_unresolved: false
      });
      for (const link of r.links) console.log(link.target, "→", link.resolved_path);