Interface McpRegistryClientToolNodeParameters

Source
interface McpRegistryClientToolNodeParameters {
    excludeTools?: unknown[];
    include?: "all" | "selected" | "except";
    includeTools?: unknown[];
    options?: { timeout?: number };
}

Properties§

§readonly excludeTools?: unknown[]

Tools from the MCP server to hide from the agent. 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 includeTools?: unknown[]

Tools from the MCP server to expose to the agent. Choose from the list, or specify IDs using an expression. Default: [] Type options: {"loadOptionsMethod":"getTools"}

§readonly options?: { ... }

Additional options to add Default: {}