MCPServer tool call content.

interface MCPServerToolCallContent {
    arguments: { [key: string]: unknown };
    id: string;
    name: string;
    server_name: string;
    type: "mcp_server_tool_call";
}

Properties

arguments: { [key: string]: unknown }

The JSON object of arguments for the function.

id: string

A unique ID for this specific tool call.

name: string

The name of the tool which was called.

server_name: string

The name of the used MCP server.

type: "mcp_server_tool_call"