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

    Interface ReadPdfPage

    One page of extracted PDF text.

    is_empty true indicates either a blank page or — more commonly — an image-only page that needs OCR. Drives the has_text aggregate on the envelope.

    interface ReadPdfPage {
        char_count: number;
        is_empty: boolean;
        page_number: number;
        text: string;
    }
    Index

    Properties

    char_count: number

    Character count of text (post-extraction, post-trim).

    is_empty: boolean

    True when no text could be extracted (likely needs OCR).

    page_number: number

    1-indexed page number.

    text: string

    Extracted text content (may be empty for image-only pages).