MCP TypeScript SDK (V2)
    Preparing search index...

    Type Alias TaskToolExecution<TaskSupport>Experimental

    TaskToolExecution: Omit<ToolExecution, "taskSupport"> & {
        taskSupport: TaskSupport extends "forbidden"
        | undefined
            ? never
            : TaskSupport;
    }

    Task-specific execution configuration. taskSupport cannot be 'forbidden' for task-based tools.

    Type Parameters