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§
Source§readonly authentication?:
| "none"
| "headerAuth"
| "mcpOAuth2Api"
| "bearerAuth"
| "multipleHeadersAuth"
readonly authentication?:
| "none"
| "headerAuth"
| "mcpOAuth2Api"
| "bearerAuth"
| "multipleHeadersAuth"
Source§readonly json Input?: string
readonly json Input?: string
Default: "{\n "my_field_1": "value",\n "my_field_2": 1\n}\n" Type options: {"rows":5}
Source§readonly options?: { convertToBinary?: boolean; timeout?: number }
readonly options?: { convertToBinary?: boolean; timeout?: number }
Additional options to add Default: {}
The way to authenticate with your endpoint Default: "none"