/** * This file was auto-generated by Fern from our API Definition. */ import * as ElevenLabs from "../index"; /** * A MCP tool is a tool that is used to call a MCP server */ export interface McpToolConfigOutput { id?: string; name: string; description: string; /** The maximum time in seconds to wait for the tool call to complete. */ response_timeout_secs?: number; /** Schema for any parameters the LLM needs to provide to the MCP tool. */ parameters?: ElevenLabs.ObjectJsonSchemaPropertyOutput; /** The name of the MCP tool to call */ mcp_tool_name: string; /** The id of the MCP server to call */ mcp_server_id: string; }