Stop babysitting web search permissions — instant n8n answers from docs and community content in Claude Code
If you’re building n8n workflows with Claude Code, you know the loop: ask about webhook configuration, Claude fires off a web search, asks permission, reads something irrelevant, searches again, asks permission again. By the time you get an answer, you’ve burned 2-5 minutes babysitting permission prompts.
I built a free Claude Code plugin that replaces that entire chain with a 1-second lookup against 42,000+ curated n8n data points — official docs, GitHub issues with status, community solutions with solved/unsolved context, and feature requests with vote counts. No telemetry, no tracking.
What it does
- Auto-detects n8n projects and injects relevant docs and community content before Claude starts responding
- Each result scored HIGH/MEDIUM/LOW based on source type and engagement (votes, likes, views, solved status)
- Source links on every result so you can verify the original
- Works in any project when you mention “n8n”, broader keyword triggers inside n8n codebases
- No API keys, no MCP server, no setup — one command install
How it works
The plugin hooks into every message via UserPromptSubmit. It detects n8n context, queries a Hindsight graph memory database using TEMPR recall — four parallel search strategies (semantic, keyword, graph traversal, temporal) fused via Reciprocal Rank Fusion and cross-encoder reranking. On the LongMemEval benchmark, TEMPR improved accuracy by 44.6 percentage points (39% → 83.6%) and was the first agent memory system to surpass 90% overall accuracy. Zero LLM cost per recall, sub-second typical latency. The knowledge base syncs nightly from docs.n8n.io, GitHub, and this forum.
Install
Official Claude Code community marketplace — submitted, awaiting approval. This post will be updated with install instructions from the marketplace once approved.
Install from GitHub now:
Follow Anthropic’s official plugin marketplace guide to add a GitHub-hosted marketplace, then:
/plugin marketplace add dbenn8/n8n-knowledge
/plugin install n8n-knowledge@n8n-knowledge
Free and open source
MIT licensed, no telemetry, no tracking, no data collection. Your prompts are sent to a read-only API to retrieve results and are not logged or retained.
GitHub: GitHub - dbenn8/n8n-knowledge · GitHub
Happy to answer questions. If you find it useful, feedback and PRs welcome.