Result
A method for quickly copying n8n workflows is spreading in the community: send a screenshot of a target n8n workflow to Claude Opus 4.7, and the model can directly output the corresponding JSON configuration file. The entire process takes about 30 seconds without manually rebuilding each node.
Tool Stack
- Claude Opus 4.7 (Anthropic): Visual recognition and JSON generation
- n8n: Target automation platform
- n8n official documentation: Context reference for Claude
Steps
- Prepare context: Load n8n official documentation (node types, configuration format, JSON schema) into Claude’s Project
- Screenshot input: Take a screenshot of the n8n workflow you want to copy
- Send prompt: Send the screenshot to Claude, asking it to generate the corresponding n8n JSON
- Verify and run: Paste the generated JSON into n8n’s import function and test
Notes
- Screenshot quality directly affects recognition accuracy
- Complex workflows may need to be processed in steps
- Generated JSON requires manual verification, especially for API keys and authentication
- n8n version compatibility should be confirmed
Cost and Limitations
- Cost: Claude Opus 4.7 API call fees, visual input costs more than pure text
- Limitations: Can only copy visual structure, not custom code node logic; environment variables and keys need manual configuration
Alternative: n8n Atom
A VSCode extension called n8n Atom converts n8n workflows into .n8n plain text files, letting Claude or Cursor read, edit, and version-control workflows.
Sources
- AI automation community shares
- n8n official documentation
- Claude Opus 4.7 capabilities