Interface McpClientToolNodeParameters

Source
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 authentication?: "none" | "headerAuth" | "bearerAuth"

The way to authenticate with your endpoint Default: "none"

Source§

readonly endpointUrl?: string

Endpoint of your MCP server

Source§

readonly excludeTools?: unknown[]

Choose from the list, or specify IDs using an expression Default: [] Type options: {"loadOptionsMethod":"getTools"}

Source§

readonly include?: "all" | "selected" | "except"

How to select the tools you want to be exposed to the AI Agent Default: "all"

Source§

readonly includeTools?: unknown[]

Choose from the list, or specify IDs using an expression Default: [] Type options: {"loadOptionsMethod":"getTools","loadOptionsDependsOn":["sseEndpoint"]}

Source§

readonly options?: { timeout?: number }

Additional options to add Default: {}

Source§

readonly serverTransport?: "sse" | "httpStreamable"

The transport used by your endpoint Default: "sse"

Source§

readonly sseEndpoint?: string

SSE Endpoint of your MCP server