list_available_nodes
Discover and filter compatible workflow nodes by name, type, or description within the n8n ecosystem, tailored to specific N8N versions.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
n8n_version | No | Filter nodes by N8N version compatibility. If not provided, uses current configured N8N version. | |
search_term | No | An optional search term to filter nodes by their name, type, or description. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"n8n_version": {
"description": "Filter nodes by N8N version compatibility. If not provided, uses current configured N8N version.",
"type": "string"
},
"search_term": {
"description": "An optional search term to filter nodes by their name, type, or description.",
"type": "string"
}
},
"type": "object"
}