n8n-mcp-lite: MCP server reduces token usage by 80% for Claude with n8n workflows

A developer has open-sourced n8n-mcp-lite, a custom Model Context Protocol server designed to help Claude work with n8n automation workflows while significantly reducing token consumption. The tool addresses the challenge of Claude processing massive JSON exports from visual node automation canvases, which typically burn thousands of tokens during debugging sessions.
How it reduces token usage
The MCP server introduces several tools that minimize the amount of data Claude needs to process:
scan_workflowtool: Instead of reading entire workflow JSON files, Claude can request a scan that returns a Table of Contents, saving approximately 90% of tokens. Claude then usesfocus_workflowto zoom in on specific nodes that need debugging.- Abstracts canvas layout: Claude no longer needs to handle X/Y canvas positioning, which it natively struggles with. The MCP handles layout generation automatically when Claude defines logical connections like "Node A -> Node B."
update_nodestool: Provides surgical updates using highly typed operations rather than requiring full workflow overwrites, keeping token usage minimal.
Current status and results
The tool is in early phases with edge cases still being smoothed out, but initial results show significant improvements in context length preservation and Claude's ability to successfully repair workflows. The developer reports approximately 80% reduction in token usage compared to previous methods.
This type of MCP server is particularly useful for developers who use AI coding agents to build and maintain complex automation workflows, where visual node editors like n8n generate large JSON representations that are expensive for LLMs to process repeatedly.
📖 Read the full source: r/ClaudeAI
👀 See Also

Claude-ETA Plugin Adds Task Timing and Repair Loop Detection to Claude Code
Claude-ETA is a Claude Code plugin that times tasks, learns your actual velocity, and feeds real data back into Claude before it responds. It also detects repair loops by fingerprinting error content and intervenes after three identical failures.

2026 Hermes Agent Alternatives Roundup: Self-Hosted Options from OpenClaw to memU Bot
A developer who has been running Hermes since launch tested every self-hosted and managed alternative after the ClawHub security mess. Key findings: OpenClaw (370k stars) but 9 CVEs in 4 days and ~20% malicious packages; TrustClaw rebuilt with OAuth/sandboxing; nanobot at ~4K lines Python with MCP; memU Bot with unique structured memory. Managed options include Perplexity Computer (19 models, $200/mo), Claude Cowork (opens real Mac apps), and KimiClaw (40GB RAG, locked to K2.5, Chinese data law). Full roundup at source.

Marmy: A Self-Hosted Framework for Managing AI Coding Agents Remotely
Marmy is an open-source, MIT-licensed framework built with Claude Code that lets developers manage AI coding agents and tmux sessions from a mobile app. It includes a Rust agent for development machines and a React Native app for remote control.

Corbell: Open Source CLI for Cross-Repo Architecture Analysis and Design Docs
Corbell is a free, open source CLI tool that scans multiple repositories to build an architecture graph and generate design documentation locally. It works fully offline with Ollama or supports various LLM providers, and never sends code off your machine.