search_templates
Search for workflow templates by name or description keywords to streamline automation in n8n workflows. Input a query and set a result limit for precise template discovery.
Instructions
Search templates by name/description keywords. NOT for node types! For nodes use list_node_templates. Example: "chatbot".
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of results. Default 20. | |
query | Yes | Search keyword as string. Example: "chatbot" |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 20,
"description": "Maximum number of results. Default 20.",
"type": "number"
},
"query": {
"description": "Search keyword as string. Example: \"chatbot\"",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}