Table of Contents

Class WebMcpToolCallResult

Namespace
PuppeteerSharp.Cdp
Assembly
PuppeteerSharp.dll

Result of a WebMCP tool invocation.

public class WebMcpToolCallResult
Inheritance
WebMcpToolCallResult

Properties

Call

The corresponding tool call if available.

public WebMcpToolCall Call { get; init; }

Property Value

WebMcpToolCall

ErrorText

Error text.

public string ErrorText { get; init; }

Property Value

string

Exception

The exception object, if the JavaScript tool threw an error.

public RemoteObject Exception { get; init; }

Property Value

RemoteObject

Id

Tool invocation identifier.

public string Id { get; init; }

Property Value

string

Output

Output delivered to the agent. Present only when Status is Completed.

public object Output { get; init; }

Property Value

object

Status

Status of the invocation.

public WebMcpInvocationStatus Status { get; init; }

Property Value

WebMcpInvocationStatus