n8n MCP Server

create-variable

Define and store reusable data variables in n8n workflows using JSON input, enabling streamlined data sharing and management across workflow executions.

Instructions

Create a new variable in n8n. NOTE: Requires n8n Enterprise license with variable management features enabled. Variables can be used across workflows to store and share data. IMPORTANT: Arguments must be provided as compact, single-line JSON without whitespace or newlines.

Input Schema

NameRequiredDescriptionDefault
clientIdYes
keyYes
valueYes

Input Schema (JSON Schema)

{ "properties": { "clientId": { "type": "string" }, "key": { "type": "string" }, "value": { "type": "string" } }, "required": [ "clientId", "key", "value" ], "type": "object" }
ID: l1rov8ni7r