n8n Forum MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@n8n Forum MCPsearch forum for solved threads about webhook timeout"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
n8n Forum MCP
An MCP server that searches the n8n community forum so AI agents (Claude, etc.) can use it as a knowledge source — pairs nicely with the official n8n Docs MCP.
Solved threads on the forum (those with an accepted answer) are effectively vetted community documentation: real problems with confirmed fixes. This server makes them searchable and readable from your agent.
Read-only and anonymous — it only hits the public Discourse search/topic endpoints. No login, no credentials.
Tools
search_forum(query, solved_only=False, max_results=8)— search the forum. Setsolved_only=Trueto return only threads with an accepted answer (vetted solutions). Returns each thread's solved-status, title, category, link, and excerpt — plus, for solved threads, a snippet of the accepted answer inline so the vetted fix shows up in the search itself.get_thread(topic_id)— read a thread by id (fromsearch_forum). Surfaces the accepted answer first, then the posts.
Adaptive recall
Discourse search ANDs every term, so pasting a whole error message or a full sentence ("OpenAI node messages must be a non-empty array got null despite having inputs") tends to match nothing — while the same intent as a few key terms ("messages non-empty array") finds the solved threads. search_forum handles this for you: it runs the exact query first (precision), then progressively broadens to the most distinctive 4 → 3 → 2 terms only if results are thin (recall), merging solved threads to the top. So you can hand it a raw error string and still get hits.
Related MCP server: n8n-MCP
Install
git clone https://github.com/acunningham-ship-it/n8n-forum-mcp
cd n8n-forum-mcp
python3 -m venv .venv
./.venv/bin/pip install -r requirements.txtUse with Claude Code
claude mcp add n8n-forum -- /absolute/path/to/n8n-forum-mcp/.venv/bin/python /absolute/path/to/n8n-forum-mcp/forum_mcp.pyFor Claude Desktop / other clients, add an equivalent stdio server entry pointing at .venv/bin/python forum_mcp.py.
CLI (no MCP client needed)
forumsearch.py works standalone for quick lookups:
python3 forumsearch.py search "airtable rate limit" # all results
python3 forumsearch.py solved "azure openai api version" # accepted-answer threads only
python3 forumsearch.py thread 300911 # read a thread + its accepted answerLicense
MIT
This server cannot be installed
Maintenance
Related MCP Servers
- AlicenseBqualityDmaintenanceUsed to create an assistant integrated with n8n that can search n8n documentation, example workflows, and community forums.114MIT
- Alicense-qualityDmaintenanceProvides AI assistants with comprehensive access to n8n node documentation, properties, and workflow templates. It enables models to search, understand, and manage n8n automation workflows through structured access to over 1,000 node types.160,284MIT
- Alicense-qualityDmaintenanceProvides AI assistants with comprehensive access to n8n node documentation, properties, and operations for building and managing automation workflows.160,284MIT
- Alicense-qualityDmaintenanceEnables AI assistants to access comprehensive n8n node documentation, properties, and operations for building workflow automations.160,284MIT
Related MCP Connectors
The best web search for your AI Agent
Give AI agents access to form submissions — read, search, update, and process file attachments.
Shared knowledge base for AI agents. Search and contribute solutions to technical problems.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/acunningham-ship-it/n8n-forum-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server