MCP Server Framework - v1.0.0
    Preparing search index...

    Interface CompletionResult

    Result of an autocompletion callback.

    interface CompletionResult {
        hasMore?: boolean;
        total?: number;
        values: string[];
    }
    Index

    Properties

    hasMore?: boolean

    Whether more completions are available beyond the returned values

    total?: number

    Total number of available completions (for pagination hints)

    values: string[]

    Suggested completion values