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

    Interface LintWikiFinding

    One lint finding. details carries kind-specific context (word count for stubs, mention sources for concepts, etc.). suggestion is an action hint the agent can paraphrase to the user.

    interface LintWikiFinding {
        details?: Record<string, unknown>;
        kind: "orphan" | "broken-link" | "stub" | "stale" | "concept-without-page";
        message: string;
        path?: string;
        suggestion?: string;
    }
    Index

    Properties

    details?: Record<string, unknown>

    Kind-specific payload (word_count, mention_count, sources, etc.).

    kind: "orphan" | "broken-link" | "stub" | "stale" | "concept-without-page"

    Lint category.

    message: string

    Human-readable description of the issue.

    path?: string

    Vault-relative path of the offending note (absent on concept candidates).

    suggestion?: string

    Action hint for fixing.