It’s true that n8n has converted its documentation into an MCP server. This isn’t just a chat agent on their website, but a full MCP that you can link to any AI and get free AI answers based on the n8n docs.
n8n is using an agent service called “Kapa” and their MCP service for n8n is available at
https://n8n.mcp.kapa.ai/. You just link that URL and auth your kapa account (just use google auth with free plan), and you’ll get an MCP for the n8n docs, as shown in the image, which can help any AI agent using the latest n8n documentation.
Here’s an example MCP config:
{
"mcpServers": {
"n8n-docs": {
"type": "STREAMABLE_HTTP",
"url": "https://n8n.mcp.kapa.ai/"
}
}
}
Or
{
"mcpServers": {
"n8n docs": {
"command": "uvx",
"args": [
"mcp-proxy",
"--transport",
"streamablehttp",
"https://n8n.mcp.kapa.ai/"
],
"env": {
}
}
}
}
or using GUI like Claude Connector:
Pro tip: We use MetaMCP to manage MCP servers into one endpoint. and i have deployed n8n mcp server there and it worked too:
Another thing to keep in mind is that n8n already maintains an LLM index for all its docs at this link:
https://docs.n8n.io/llms.txt. This is an AI-indexed version of all their documentation pages share it with your A.I instructions and it will understand where to search in docs when need something.


