mcp-use TypeScript API
    Preparing search index...

    Interface NativeToolEntry

    Native tool definition paired with its internal dispatch route.

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

    Hierarchy (View Summary)

    Index
    description?: string

    Human-readable tool description.

    dispatchKey: string

    Internal dispatch key (may differ from MCP name after dedup).

    inputSchema: Record<string, unknown>

    JSON Schema object describing the tool's input.

    name: string

    Tool name exposed to the model.