n8n-workflow-builder-mcp

by ifmelate

edit_node

Modify workflow nodes by updating node type, name, position, parameters, type version, or webhook ID within the n8n-workflow-builder-mcp server. Simplify workflow adjustments with targeted node edits.

Input Schema

NameRequiredDescriptionDefault
node_idYesThe ID of the node to edit
node_nameNoThe new name for the node
node_typeNoThe new type for the node (e.g., 'gmail', 'slack', 'openAi'). You can specify with or without the 'n8n-nodes-base.' prefix. The system will handle proper casing (e.g., 'openai' will be converted to 'openAi' if that's the correct casing).
parametersNoThe new parameters
positionNoThe new position {x,y} - will be converted to [x,y]
typeVersionNoThe new type version for the node
webhookIdNoOptional new webhook ID for the node.
workflow_nameYesThe Name of the workflow containing the node

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "node_id": { "description": "The ID of the node to edit", "type": "string" }, "node_name": { "description": "The new name for the node", "type": "string" }, "node_type": { "description": "The new type for the node (e.g., 'gmail', 'slack', 'openAi'). You can specify with or without the 'n8n-nodes-base.' prefix. The system will handle proper casing (e.g., 'openai' will be converted to 'openAi' if that's the correct casing).", "type": "string" }, "parameters": { "additionalProperties": {}, "description": "The new parameters", "type": "object" }, "position": { "additionalProperties": false, "description": "The new position {x,y} - will be converted to [x,y]", "properties": { "x": { "type": "number" }, "y": { "type": "number" } }, "required": [ "x", "y" ], "type": "object" }, "typeVersion": { "description": "The new type version for the node", "type": "number" }, "webhookId": { "description": "Optional new webhook ID for the node.", "type": "string" }, "workflow_name": { "description": "The Name of the workflow containing the node", "type": "string" } }, "required": [ "workflow_name", "node_id" ], "type": "object" }

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