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
ErrorText
Error text.
public string ErrorText { get; init; }
Property Value
Exception
The exception object, if the JavaScript tool threw an error.
public RemoteObject Exception { get; init; }
Property Value
Id
Tool invocation identifier.
public string Id { get; init; }
Property Value
Output
Output delivered to the agent. Present only when Status is Completed.
public object Output { get; init; }
Property Value
Status
Status of the invocation.
public WebMcpInvocationStatus Status { get; init; }