search_node_properties
Locate specific properties (auth, headers, body, etc.) within an n8n node. Returns paths and descriptions for efficient workflow automation and integration.
Instructions
Find specific properties in a node (auth, headers, body, etc). Returns paths and descriptions.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
maxResults | No | Max results (default 20) | |
nodeType | Yes | Full type with prefix | |
query | Yes | Property to find: "auth", "header", "body", "json" |
Input Schema (JSON Schema)
{
"properties": {
"maxResults": {
"default": 20,
"description": "Max results (default 20)",
"type": "number"
},
"nodeType": {
"description": "Full type with prefix",
"type": "string"
},
"query": {
"description": "Property to find: \"auth\", \"header\", \"body\", \"json\"",
"type": "string"
}
},
"required": [
"nodeType",
"query"
],
"type": "object"
}