n8n Forum MCP

n8n Forum MCP

Enables AI agents to search and read solved threads from the n8n community forum for vetted solutions.

Category
Visit Server

README

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. Set solved_only=True to 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 (from search_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.

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.txt

Use 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.py

For 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 answer

License

MIT

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured