Member Junction
    Preparing search index...

    Definition of a client-side tool that can be registered and invoked by agents.

    interface ClientToolDefinition {
        Description: string;
        Handler: ClientToolHandler;
        Name: string;
        ParameterSchema: Record<string, unknown>;
    }
    Index

    Properties

    Description: string

    Human-readable description of what this tool does

    The function that executes the tool

    Name: string

    Unique name identifying this tool

    ParameterSchema: Record<string, unknown>

    JSON Schema describing the parameters this tool accepts