n8n Community Nodes MCP Server
Provides tools to search and retrieve documentation for official built-in nodes and core documentation pages, enabling discovery of integration capabilities and usage instructions directly within the AI assistant.
Enables searching and listing of n8n community packages published on npm, allowing users to find community-contributed nodes and access their metadata and documentation.
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 Community Nodes MCP Serversearch for community nodes for Telegram"
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 Community Nodes MCP Server
A focused MCP server for:
Community n8n packages from npm
Official n8n docs and built-in nodes from
n8n-io/n8n-docs
Why use this
Discover and search community n8n nodes directly from your AI assistant
Access official n8n documentation without leaving your editor
Context-optimized responses using TOON format to save tokens
Smart search
Searches 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.
Token-efficient responses (TOON)
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.
Related MCP server: Caipher MCP
Recommended (Hosted MCP)
Use the hosted endpoint by default:
https://n8n-community-mcp.masmoudi.dev/mcp
Quick setup (hosted)
Claude Desktop
{
"mcpServers": {
"n8n-community": {
"command": "npx",
"args": [
"mcp-remote@latest",
"--http",
"https://n8n-community-mcp.masmoudi.dev/mcp",
"--allow-http"
]
}
}
}Claude Code
claude mcp add --transport http n8n-community https://n8n-community-mcp.masmoudi.dev/mcpCursor
{
"mcpServers": {
"n8n-community": {
"url": "https://n8n-community-mcp.masmoudi.dev/mcp"
}
}
}Codex
[mcp_servers.n8n-community]
url = "https://n8n-community-mcp.masmoudi.dev/mcp"Tools
Community npm tools
search→ Search community npm packages onlylist→ List community npm packages onlydocs→ Get community npm package metadata + optional README
Official n8n docs tools
search_official_nodes→ Search official built-in nodes fromn8n-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 path
Self-host (Optional)
If you want your own instance:
npm install
npm run build
node dist/index.jsOr with an explicit path:
node /path/to/n8n-community-nodes-mcp/dist/index.jsEnvironment variables
MCP_HOST(default:127.0.0.1)MCP_PORT(default:3333)
Local endpoint:
http://127.0.0.1:3333/mcp
Local client config (self-hosted)
Use the same client snippets as above, but replace URL with:
http://127.0.0.1:3333/mcp
Notes
Official docs data source is GitHub (unauthenticated):
n8n-io/n8n-docs.Example path for
get_n8n_docs_page:docs/integrations/builtin/core-nodes/n8n-nodes-base.code.md
License
MIT — see LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceAn MCP server that provides AI assistants with access to documentation, schemas, and operations for over 535 n8n workflow automation nodes. It enables models to understand, create, and manage n8n workflows through natural language by connecting to the n8n API.Last updated194,006MIT
- Alicense-qualityCmaintenanceAn MCP server that provides AI assistants with comprehensive access to n8n workflow automation nodes, properties, and documentation. It enables models like Claude to search for nodes, access configuration templates, and manage workflows through natural language.Last updatedMIT
- Alicense-qualityDmaintenanceAn MCP server that empowers AI assistants to build, validate, and manage n8n workflows by providing structured access to documentation for over 1,200 nodes and thousands of templates. It enables deep integration with n8n instances for automated workflow orchestration and management through natural language.Last updated194,0061MIT
- Alicense-qualityBmaintenanceA Model Context Protocol (MCP) server that provides AI assistants with comprehensive access to n8n node documentation, properties, and operations.Last updated194,006MIT
Related MCP Connectors
Augments MCP Server - A comprehensive framework documentation provider for Claude Code
Markdown-first MCP server for Notion API with 8 composite tools and 39 actions.
MCP server for AI agent profiles and smart notes. 60+ coding prompt packs with expert personas.
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/dalisys/n8n-community-nodes-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server