n8n-mcp-server
@S17S17
关于 n8n-mcp-server
A Model-Controller-Provider (MCP) server implementation for n8n workflow automation
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"n8n-mcp-server-s17s17": {
"command": "docker",
"args": [
"build",
"-t",
"n8n-mcp-server",
"."
]
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is n8n-mcp-server?
A Model-Controller-Provider (MCP) server implementation for n8n workflow automation. It provides a standardized JSON-RPC 2.0 interface for executing and managing n8n workflows.
How to use n8n-mcp-server?
Clone the repository, install dependencies (npm install), and configure required environment variables (N8N_URL, N8N_API_KEY, N8N_API_HEADER). Start the server with npm start or use Docker (docker build -t n8n-mcp-server && docker run -p 3000:3000 --env-file .env n8n-mcp-server).
Key features of n8n-mcp-server
- JSON-RPC 2.0 compliant API
- Workflow execution and management
- Environment-based configuration
- TypeScript support
- Comprehensive logging
- Docker support
Use cases of n8n-mcp-server
- Execute n8n workflows programmatically via JSON-RPC
- Manage workflow tools from MCP clients
- Automate n8n operations in a standardized way
- Integrate workflow automation into external applications
FAQ from n8n-mcp-server
What are the prerequisites for using n8n-mcp-server?
Node.js >= 14.0.0, a running n8n instance, and an n8n API key.
What environment variables are required to configure the server?
N8N_URL (n8n instance API URL), N8N_API_KEY (your API key), and N8N_API_HEADER (header name, default: X-N8N-API-KEY).
How can I start the server?
Use npm start for standard mode, npm run start:dev for development with hot reload, npm run start:simple for minimal features, or npm run debug for debug mode.
Does n8n-mcp-server support Docker?
Yes. You can build and run with docker build -t n8n-mcp-server . and docker run -p 3000:3000 --env-file .env n8n-mcp-server, or use docker-compose up.
What JSON-RPC methods does the server implement?
It provides initialize, shutdown, listTools, and callTool methods. See API.md for details.
其他 分类下的更多 MCP 服务器
MCP Registry
modelcontextprotocolA community driven registry service for Model Context Protocol (MCP) servers.
Awesome Mlops
visengerA curated list of references for MLOps
Core Philosophy: Connect, Unify, Respond
mindsdbDelegate anything. It comes back done.
MCP Toolbox for Databases
googleapisMCP Toolbox for Databases is an open source MCP server for databases.
Nginx UI
0xJackyYet another WebUI for Nginx
评论