MCPServer tool result content.

interface MCPServerToolResultContent {
    call_id: string;
    name?: string;
    result: unknown;
    server_name?: string;
    type: "mcp_server_tool_result";
}

Properties

call_id: string

ID to match the ID from the MCP server tool call block.

name?: string

Name of the tool which is called for this specific tool call.

result: unknown

The result of the tool call.

server_name?: string

The name of the used MCP server.

type: "mcp_server_tool_result"

Used as the OpenAPI type discriminator for the content oneof.