n8n-node-configuration
n8n Node Configuration
Each n8n node has its own parameter shape, often with conditional fields (parameter X only matters when parameter Y has value Z). Shapes evolve between versions. Guessing produces cryptic validation errors.
Don't guess, use the get_node_types tool.
Non-negotiable
Call get_node_types with discriminators (resource, operation, mode) before configuring a node. Without discriminators you get the generic shape, missing operation-specific parameters and required fields. Build against the exact shape. Don't guess from memory.
The live get_node_types output is the canonical parameter shape. The references in this skill cover patterns, gotchas, security rules, and decision-making (when to use which operation, why credentials over text fields, engine retry caps, etc.) not parameter names or field structures. If a reference example conflicts with what get_node_types returns, trust the tool. Markdown drifts; the type def is generated from the live source.
Strong defaults
- Configure operation-first. Set
resourceandoperationfirst, and conditional parameters become visible. Most "field doesn't exist" errors are really "you haven't set the parent operation yet." - Don't carry parameters across operations. When changing
operation, re-derive from the new shape. Stale parameters from the previous operation trip validation.