Interface StudioAiToolDefinitionExperimental

A tool (function) the model may call, described by a JSON Schema input shape. This is the HTTP tool shape the proxy forwards verbatim — the same { name, description, inputSchema } triple convertHonuaAgentToolDefinitions(tools, "mcp") produces.

interface StudioAiToolDefinition {
    description?: string;
    inputSchema: unknown;
    name: string;
}

Properties

description?: string
inputSchema: unknown
name: string