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