loading…
Search for a command to run...
loading…
This MCP server enables users to search and access documentation for community-developed n8n nodes and official built-in nodes. It provides token-optimized resp
This MCP server enables users to search and access documentation for community-developed n8n nodes and official built-in nodes. It provides token-optimized responses for discovering n8n packages and documentation directly through AI assistants.
A focused MCP server for:
n8n-io/n8n-docsSearches run in parallel across multiple npm tags, results are deduplicated and ranked:
| Signal | Weight |
|---|---|
| Name match | 40% |
| Tag match | 30% |
| Description | 20% |
| Popularity | 10% |
Filler phrases are stripped from queries — "how to send slack messages" and "slack messages" return the same results.
All responses are encoded in TOON (Token-Oriented Object Notation) — a compact format designed for LLMs. Instead of repeating JSON keys in every object, TOON declares them once and streams rows:
[10]{package,name,description,version,downloadsLastWeek}:
n8n-nodes-slack-bolt,Slack Bolt,Advanced Slack integration,1.2.0,340
n8n-nodes-discord,Discord,Discord bot nodes for n8n,0.9.1,210
...
30–60% fewer tokens per response — more room in context, lower cost per call.
Use the hosted endpoint by default:
https://n8n-community-mcp.masmoudi.dev/mcp{
"mcpServers": {
"n8n-community": {
"command": "npx",
"args": [
"mcp-remote@latest",
"--http",
"https://n8n-community-mcp.masmoudi.dev/mcp",
"--allow-http"
]
}
}
}
claude mcp add --transport http n8n-community https://n8n-community-mcp.masmoudi.dev/mcp
{
"mcpServers": {
"n8n-community": {
"url": "https://n8n-community-mcp.masmoudi.dev/mcp"
}
}
}
[mcp_servers.n8n-community]
url = "https://n8n-community-mcp.masmoudi.dev/mcp"
search → Search community npm packages onlylist → List community npm packages onlydocs → Get community npm package metadata + optional READMEsearch_official_nodes → Search official built-in nodes from n8n-io/n8n-docsget_official_node_docs → Get official node docs markdownsearch_n8n_docs_pages → Search official docs pagesget_n8n_docs_page → Get full docs page markdown by pathIf you want your own instance:
npm install
npm run build
node dist/index.js
Or with an explicit path:
node /path/to/n8n-community-nodes-mcp/dist/index.js
MCP_HOST (default: 127.0.0.1)MCP_PORT (default: 3333)Local endpoint:
http://127.0.0.1:3333/mcpUse the same client snippets as above, but replace URL with:
http://127.0.0.1:3333/mcpn8n-io/n8n-docs.get_n8n_docs_page:docs/integrations/builtin/core-nodes/n8n-nodes-base.code.mdMIT — see LICENSE.
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"n8n-community-nodes-mcp-server": {
"command": "npx",
"args": []
}
}
}