Claude + n8n's official instance MCP · describe it, validate it, deploy it
n8n Workflow Builder Agent
The build channel for the rest of this section: describe, validate, create, publish.
status in use · builds the restrole designed + built end to end
The Review and Reputation Engine on n8n. Thirteen nodes, live, and not one of them was placed by hand. This canvas is the output of the session in the demo above.
recorded runlive
The real session: validate, create, attach the credential, publish, fire four reviews, catch a genuine bug, fix it, re-publish, and land a ledger row.
What it solves
Hand-building an n8n workflow means placing nodes, wiring branches, and retyping the same guard logic each time. I also lost a working 20KB workflow JSON to encoding corruption while hand-carrying it through a browser tab. That failure is what moved the whole build process onto MCP, where validate_workflow runs before anything touches the instance.
Who it serves
Anyone running n8n who would rather review a workflow than assemble one.
Who it is for
Teams that want assembly automated while a person still decides what goes live.
How it works
Read the instanceClaude can search existing workflows, read node configs, and inspect executions and data tables on the live instance.
Author as SDK codeThe workflow is written as n8n Workflow SDK code, with the guard logic and prompts embedded so it carries them with no external file at runtime.
Validate before touching productionvalidate_workflow runs first and returns a node count and a verdict. Invalid code never reaches the instance.
Create, then attach credentialscreate_workflow_from_code deliberately skips HTTP-node credentials, so the credential is attached as an explicit second step.
A human publishesNothing is live until publish_workflow runs, because a PATCH only updates the draft. That is the checkpoint.
Fix it in the same channelWhen the first real run surfaced a bug in the guard, the fix went out as a node parameter update and a re-publish, without opening the editor.
Built with
Claude Coden8n official instance MCPn8n Workflow SDKvalidate before createhuman approval before publish