Interface McpTriggerNodeParameters

Source

interface McpTriggerNodeParameters {
    authentication?:
        | "none"
        | "headerAuth"
        | "bearerAuth"
        | "n8nOAuth2";
    path?: string;
    requireExecuteAccess?: boolean;
}

Properties§

§readonly authentication?: "none" | "headerAuth" | "bearerAuth" | "n8nOAuth2"

The way to authenticate Default: "none"

§readonly path?: string

The base path for this MCP server

§readonly requireExecuteAccess?: boolean

Whether the triggering user must also have permission to execute the workflow in the project it belongs to Default: true