mcp-use TypeScript API
    Preparing search index...

    Type Alias ViewAppToolConnection

    App-visible tools and the function used to call them.

    type ViewAppToolConnection = {
        callTool: (
            name: string,
            args?: Record<string, unknown>,
        ) => Promise<unknown>;
        tools: Tool[];
    }
    Index
    callTool: (name: string, args?: Record<string, unknown>) => Promise<unknown>

    Calls an app-visible tool.

    tools: Tool[]

    Tools available to the app.