mcp-use TypeScript API
    Preparing search index...

    Interface ProxyTool

    Tool metadata consumed while introspecting an upstream connection.

    interface ProxyTool {
        annotations?: {};
        description?: string;
        inputSchema?: Record<string, unknown>;
        name: string;
        outputSchema?: Record<string, unknown>;
        title?: string;
    }
    Index
    annotations?: {}

    Upstream behavioral hints.

    description?: string

    LLM-facing tool description.

    inputSchema?: Record<string, unknown>

    Upstream input JSON Schema.

    name: string

    Upstream tool name.

    outputSchema?: Record<string, unknown>

    Upstream output JSON Schema.

    title?: string

    Human-readable tool title.