interface McpClientNodeParameters {
authentication?:
| "none"
| "headerAuth"
| "mcpOAuth2Api"
| "bearerAuth"
| "multipleHeadersAuth";
endpointUrl?: string;
inputMode?: "manual"
| "json";
jsonInput?: string;
options?: {
convertToBinary?: boolean;
timeout?: number;
};
serverTransport?: "httpStreamable"
| "sse";
tool?: { mode: "id" | "list"; value: string };
}Properties§
§§§§§§
readonly authentication?:
| "none"
| "headerAuth"
| "mcpOAuth2Api"
| "bearerAuth"
| "multipleHeadersAuth"§
readonly endpoint Url?: stringThe URL of the MCP server to connect to
readonly input Mode?: "manual" | "json"Default: "manual"
readonly json Input?: stringDefault: "{\n "my_field_1": "value",\n "my_field_2": 1\n}\n" Type options: {"rows":5}
readonly options?: { ... }Additional options to add Default: {}
readonly server Transport?: "httpStreamable" | "sse"The transport used by your endpoint Default: "httpStreamable"
readonly tool?: { ... }The tool to use Default: {"mode":"list","value":""}
The way to authenticate with your endpoint Default: "none"