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

    Interface OpenQuestionExecutionOptions

    Internal execution seams for getOpenQuestions.

    MCP callers cannot provide this object (the registered input schema is strict). Tests use it to shrink admission limits and observe worker batches without allocating production-sized fixtures or starting native workloads.

    interface OpenQuestionExecutionOptions {
        limits?: Partial<OpenQuestionAdmissionLimits>;
        matchBatch?: (
            pattern: string,
            lines: readonly string[],
            budgetMs: number,
            onMatchingMs?: (ms: number) => void,
        ) => Promise<{ idx: number; q: string }[]>;
    }
    Index
    limits?: Partial<OpenQuestionAdmissionLimits>

    Optional limits; every supplied value must be no larger than production.

    matchBatch?: (
        pattern: string,
        lines: readonly string[],
        budgetMs: number,
        onMatchingMs?: (ms: number) => void,
    ) => Promise<{ idx: number; q: string }[]>

    Optional batch matcher used by bounded unit tests.