get_node_type
Retrieve detailed information about specific n8n node types to understand their functionality and usage within workflow automation.
Instructions
Get details about a specific n8n node type
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| type | Yes | The node type name (e.g., n8n-nodes-base.httpRequest) |
Input Schema (JSON Schema)
{
"properties": {
"type": {
"description": "The node type name (e.g., n8n-nodes-base.httpRequest)",
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}