enquire-mcp API reference - v4.0.0-rc.7
    Preparing search index...

    Interface OcrPdfPage

    One OCR'd page of a PDF.

    confidence is Tesseract's mean per-word confidence for this page, 0-100. Low confidence (<60) typically indicates a rough render — try increasing scale or providing a better-matched lang.

    interface OcrPdfPage {
        char_count: number;
        confidence: number | null;
        failure?: { code: string; detail: string };
        is_empty: boolean;
        page_number: number;
        status: "ok" | "empty" | "failed";
        text: string;
    }
    Index
    char_count: number

    Character count of text.

    confidence: number | null

    Tesseract's finite mean confidence for this page, 0-100, or null.

    failure?: { code: string; detail: string }

    Bounded failure evidence, present only for status: "failed".

    is_empty: boolean

    True when OCR returned no text; inspect status for the reason.

    page_number: number

    1-indexed page number.

    status: "ok" | "empty" | "failed"

    Explicit OCR outcome. failed is never treated as a blank page.

    text: string

    OCR'd text content.