MCP Apps Kit - v0.5.0
    Preparing search index...

    Interface ToolBuilderWithDescription<TName>

    Step 2: Has description - requires input.

    interface ToolBuilderWithDescription<TName extends string> {
        input<TInput extends SchemaInput>(
            schema: TInput,
        ): ToolBuilderWithInput<TName, NormalizedSchema<TInput>>;
        title(title: string): ToolBuilderWithDescription<TName>;
    }

    Type Parameters

    • TName extends string
    Index

    Methods

    Methods