interface McpClientToolNodeParameters {
authentication?:
| "none"
| "headerAuth"
| "mcpOAuth2Api"
| "bearerAuth"
| "multipleHeadersAuth";
endpointUrl?: string;
excludeTools?: unknown[];
include?: "all"
| "selected"
| "except";
includeTools?: unknown[];
options?: { timeout?: number };
serverTransport?: "httpStreamable" | "sse";
sseEndpoint?: string;
}Properties§
§§§§§§§
readonly authentication?:
| "none"
| "headerAuth"
| "mcpOAuth2Api"
| "bearerAuth"
| "multipleHeadersAuth"§
readonly endpoint Url?: stringEndpoint of your MCP server
readonly exclude Tools?: unknown[]Choose from the list, or specify IDs using an expression Default: [] Type options: {"loadOptionsMethod":"getTools"}
readonly include?: "all" | "selected" | "except"How to select the tools you want to be exposed to the AI Agent Default: "all"
readonly include Tools?: unknown[]Choose from the list, or specify IDs using an expression Default: [] Type options: {"loadOptionsMethod":"getTools","loadOptionsDependsOn":["sseEndpoint"]}
readonly options?: { ... }Additional options to add Default: {}
readonly server Transport?: "httpStreamable" | "sse"The transport used by your endpoint Default: "sse"
readonly sse Endpoint?: stringSSE Endpoint of your MCP server
The way to authenticate with your endpoint Default: "none"