An n8n community node that acts as a manual trigger, emitting a fixed JSON payload configured directly in the node.
This node lets you start a workflow with a predefined JSON object as output. It is useful when you need to test or trigger workflows with a known, static input without relying on external webhooks or schedulers.
Unlike the built-in Manual Trigger, this node allows you to configure and store the input payload directly in the workflow, making it self-contained and reproducible.
- Configure a fixed JSON object as trigger output
- Can be used multiple times in the same workflow, each with a different payload
- Input is validated at execution time (must be a JSON object, not an array or primitive)
- Open your n8n instance
- Go to Settings → Community Nodes
- Click Install
- Enter
n8n-nodes-custom-trigger-with-fixed-paramand confirm
The node will appear in the editor under the trigger category.
npm install n8n-nodes-custom-trigger-with-fixed-paramThen restart n8n.
- Add the Custom Trigger With Fixed Param node to your workflow
- Open the node and configure the Fixed Parameters field with any valid JSON object:
{ "environment": "production", "userId": 44 } - Execute the workflow — the node will emit that object as its output
- Node.js >= 22
- npm
npm install
npm run buildOutput is generated in the dist/ folder.
MIT