mcp-use TypeScript API
    Preparing search index...

    Interface ProviderTool

    Provider-neutral tool definition supplied to a model.

    interface ProviderTool {
        description?: string;
        inputSchema: Record<string, unknown>;
        name: string;
    }

    Hierarchy (View Summary)

    Index
    description?: string

    Human-readable tool description.

    inputSchema: Record<string, unknown>

    JSON Schema object describing the tool's input.

    name: string

    Tool name exposed to the model.