get_templates_for_task
Retrieve pre-configured templates for specific automation tasks such as AI workflows, data synchronization, API integration, and scheduling to streamline workflow setup on n8n-MCP.
Instructions
Curated templates by task: ai_automation, data_sync, webhooks, email, slack, data_transform, files, scheduling, api, database.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
task | Yes | The type of task to get templates for |
Input Schema (JSON Schema)
{
"properties": {
"task": {
"description": "The type of task to get templates for",
"enum": [
"ai_automation",
"data_sync",
"webhook_processing",
"email_automation",
"slack_integration",
"data_transformation",
"file_processing",
"scheduling",
"api_integration",
"database_operations"
],
"type": "string"
}
},
"required": [
"task"
],
"type": "object"
}