Skip to main content
Glama

n8n-workflow-builder-mcp

by ifmelate
itemLists.json12.3 kB
{ "nodeType": "n8n-nodes-base.itemLists", "displayName": "ItemLists", "description": null, "version": "3.1", "properties": [ { "name": "resource", "displayName": "Resource", "type": "hidden", "default": "itemList", "options": [ { "name": "Item List", "value": "itemList" } ] }, { "name": "operation", "displayName": "Operation", "type": "options", "default": "splitOutItems", "description": "Combine fields into a list in a single new item", "options": [ { "name": "Concatenate Items", "value": "aggregateItems", "description": "Combine fields into a list in a single new item" }, { "name": "Limit", "value": "limit", "description": "Remove items if there are too many" }, { "name": "Remove Duplicates", "value": "removeDuplicates", "description": "Remove extra items that are similar" }, { "name": "Sort", "value": "sort", "description": "Change the item order" }, { "name": "Split Out Items", "value": "splitOutItems", "description": "Turn a list or values of object's properties inside item(s) into separate items" }, { "name": "Summarize", "value": "summarize", "description": "Aggregate items together (pivot table)" } ] }, { "name": "fieldToSplitOut", "displayName": "Fields To Split Out", "type": "string", "default": "", "description": "The name of the input fields to break out into separate items", "required": true, "displayOptions": { "show": { "resource": [ "itemList" ], "operation": [ "splitOutItems" ] } } }, { "name": "include", "displayName": "Include", "type": "options", "default": "noOtherFields", "description": "Whether to copy any other fields into the new items", "options": [ { "name": "No Other Fields", "value": "noOtherFields" }, { "name": "All Other Fields", "value": "allOtherFields" }, { "name": "Selected Other Fields", "value": "selectedOtherFields" } ], "displayOptions": { "show": { "resource": [ "itemList" ], "operation": [ "splitOutItems" ] } } }, { "name": "fieldsToInclude", "displayName": "Fields To Include", "type": "fixedCollection", "default": {}, "description": "A field in the input items to aggregate together", "placeholder": "Add Field To Include", "typeOptions": { "multipleValues": true }, "displayOptions": { "show": { "resource": [ "itemList" ], "operation": [ "splitOutItems" ], "include": [ "selectedOtherFields" ] } } }, { "name": "aggregate", "displayName": "Aggregate", "type": "options", "default": "aggregateIndividualFields", "options": [ { "name": "Individual Fields", "value": "aggregateIndividualFields" }, { "name": "All Item Data (Into a Single List)", "value": "aggregateAllItemData" } ], "displayOptions": { "show": { "resource": [ "itemList" ], "operation": [ "aggregateItems" ] } } }, { "name": "fieldsToAggregate", "displayName": "Fields To Aggregate", "type": "fixedCollection", "default": {}, "description": "The name of a field in the input items to aggregate together", "placeholder": "Add Field To Aggregate", "typeOptions": { "multipleValues": true }, "displayOptions": { "show": { "resource": [ "itemList" ], "operation": [ "aggregateItems" ], "aggregate": [ "aggregateIndividualFields" ] } } }, { "name": "destinationFieldName", "displayName": "Put Output in Field", "type": "string", "default": "data", "description": "The name of the output field to put the data in", "displayOptions": { "show": { "resource": [ "itemList" ], "operation": [ "aggregateItems" ], "aggregate": [ "aggregateAllItemData" ] } } }, { "name": "fieldsToExclude", "displayName": "Fields To Exclude", "type": "fixedCollection", "default": {}, "description": "A field in the input to exclude from the object in output array", "placeholder": "Add Field To Exclude", "typeOptions": { "multipleValues": true }, "displayOptions": { "show": { "resource": [ "itemList" ], "operation": [ "aggregateItems" ], "aggregate": [ "aggregateAllItemData" ], "include": [ "allFieldsExcept" ] } } }, { "name": "compare", "displayName": "Compare", "type": "options", "default": "allFields", "description": "The fields of the input items to compare to see if they are the same", "options": [ { "name": "All Fields", "value": "allFields" }, { "name": "All Fields Except", "value": "allFieldsExcept" }, { "name": "Selected Fields", "value": "selectedFields" } ], "displayOptions": { "show": { "resource": [ "itemList" ], "operation": [ "removeDuplicates" ] } } }, { "name": "fieldsToCompare", "displayName": "Fields To Compare", "type": "fixedCollection", "default": {}, "description": "A field in the input to add to the comparison", "placeholder": "Add Field To Compare", "typeOptions": { "multipleValues": true }, "displayOptions": { "show": { "resource": [ "itemList" ], "operation": [ "removeDuplicates" ], "compare": [ "selectedFields" ] } } }, { "name": "type", "displayName": "Type", "type": "options", "default": "simple", "description": "The fields of the input items to compare to see if they are the same", "options": [ { "name": "Simple", "value": "simple" }, { "name": "Random", "value": "random" }, { "name": "Code", "value": "code" } ], "displayOptions": { "show": { "resource": [ "itemList" ], "operation": [ "sort" ] } } }, { "name": "sortFieldsUi", "displayName": "Fields To Sort By", "type": "fixedCollection", "default": {}, "description": "The field to sort by", "placeholder": "Add Field To Sort By", "required": true, "typeOptions": { "multipleValues": true }, "displayOptions": { "show": { "resource": [ "itemList" ], "operation": [ "sort" ], "type": [ "simple" ] } } }, { "name": "code", "displayName": "Code", "type": "string", "default": null, "description": "Javascript code to determine the order of any two items", "typeOptions": { "rows": 10 }, "displayOptions": { "show": { "resource": [ "itemList" ], "operation": [ "sort" ], "type": [ "code" ] } } }, { "name": "maxItems", "displayName": "Max Items", "type": "number", "default": 1, "description": "If there are more items than this number, some are removed", "typeOptions": { "minValue": 1 }, "displayOptions": { "show": { "resource": [ "itemList" ], "operation": [ "limit" ] } } }, { "name": "keep", "displayName": "Keep", "type": "options", "default": "firstItems", "description": "When removing items, whether to keep the ones at the start or the ending", "options": [ { "name": "First Items", "value": "firstItems" }, { "name": "Last Items", "value": "lastItems" } ], "displayOptions": { "show": { "resource": [ "itemList" ], "operation": [ "limit" ] } } }, { "name": "options", "displayName": "Options", "type": "collection", "default": {}, "description": "Whether to remove any fields that are not being compared. If disabled, will keep the values from the first of the duplicates.", "placeholder": "Add Field", "options": [ { "name": "removeOtherFields", "displayName": "Remove Other Fields", "type": "boolean", "default": false, "description": "Whether to remove any fields that are not being compared. If disabled, will keep the values from the first of the duplicates." }, { "name": "disableDotNotation", "displayName": "Disable Dot Notation", "type": "boolean", "default": false, "description": "Whether to disallow referencing child fields using `parent.child` in the field name" } ], "displayOptions": { "show": { "resource": [ "itemList" ], "operation": [ "removeDuplicates" ], "compare": [ "allFieldsExcept", "selectedFields" ] } } } ], "credentialsConfig": [ { "name": "resource", "required": false }, { "name": "operation", "required": false }, { "name": "fieldToSplitOut", "required": true }, { "name": "fieldsToInclude", "required": false }, { "name": "aggregate", "required": false }, { "name": "fieldsToAggregate", "required": false }, { "name": "fieldToAggregate", "required": false }, { "name": "destinationFieldName", "required": false }, { "name": "fieldsToExclude", "required": false }, { "name": "fieldsToInclude", "required": false }, { "name": "compare", "required": false }, { "name": "fieldsToExclude", "required": false }, { "name": "fieldsToCompare", "required": false }, { "name": "type", "required": false }, { "name": "sortFieldsUi", "required": true }, { "name": "code", "required": false }, { "name": "options", "required": false }, { "name": "options", "required": false }, { "name": "options", "required": false } ], "io": { "inputs": [], "outputs": [], "outputNames": [], "hints": {} }, "wiring": { "role": "generic", "requires": [], "optional": [], "consumedBy": [], "consumes": [], "produces": [] } }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/ifmelate/n8n-workflow-builder-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server