/** * This file was auto-generated by Fern from our API Definition. */ import * as Klavis from "../../../../index.js"; /** * @example * { * serverUrl: "serverUrl" * } */ export interface ListToolsRequest { /** The full URL for connecting to the MCP server */ serverUrl: string; /** The connection type to use for the MCP server. Default is STREAMABLE_HTTP. */ connectionType?: Klavis.ConnectionType; /** The format to return tools in. Default is MCP Native format for maximum compatibility. */ format?: Klavis.ToolFormat; /** Optional HTTP headers to include when connecting to the server */ headers?: Record; }