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

    Type Alias CompletionCallback

    CompletionCallback: (
        argName: string,
        argValue: string,
    ) => CompletionResult | Promise<CompletionResult>

    Callback for providing autocompletion suggestions.

    Used on resource templates (for URI template variables) and prompts (for prompt arguments). The callback is invoked when a client sends a completion/complete request.

    Type Declaration