interface McpClientProps {
alwaysOutputData?: boolean;
disabled?: boolean;
executeOnce?: boolean;
httpBearerAuthCredentials?: Credentials<
HttpBearerAuthCredentials,
>;
httpHeaderAuthCredentials?: Credentials<
HttpHeaderAuthCredentials,
>;
httpMultipleHeadersAuthCredentials?: Credentials<
HttpMultipleHeadersAuthCredentials,
>;
label?: string;
maxTries?: number;
mcpOAuth2ApiCredentials?: Credentials<
McpOAuth2ApiCredentials,
>;
notes?: string;
notesInFlow?: boolean;
onError?: | "continueRegularOutput"
| "continueErrorOutput";
outputSchema?: Type<unknown, {}>;
parameters?: McpClientNodeParameters;
position?: NodePosition;
retryOnFail?: boolean;
}Properties§
§§§§§§
always Output Data?: boolean§disabled?: boolean§
execute Once?: booleanIf active, the node executes only once, with data from the first item it receives
readonly http Bearer Auth Credentials?: Credentials<HttpBearerAuthCredentials>§readonly http Header Auth Credentials?: Credentials<HttpHeaderAuthCredentials>§readonly http Multiple Headers Auth Credentials?: Credentials<HttpMultipleHeadersAuthCredentials>§label?: string§max Tries?: numberNumber of times to attempt to execute the node before failing the execution
Enabled if retryOnFail is true
readonly mcp OAuth 2 Api Credentials?: Credentials<McpOAuth2ApiCredentials>§notes?: stringOptional note to save with the node
notes In Flow?: boolean§on Error?: "continueRegularOutput" | "continueErrorOutput"Action to take when the node execution fails When undefined, an error will stop the workflow execution
readonly output Schema?: Type<unknown, {}>{@inheritDoc OutputSchema}
readonly parameters?: McpClientNodeParameters§position?: NodePosition§retry On Fail?: booleanIf active, the node tries to execute again when it fails
If true, the node won't run but subsequent nodes WILL be executed