Initial implementation of n8n MCP server
All checks were successful
Build and Push n8n MCP Docker Image / build (push) Successful in 8s

Implements Hybrid MCP Light pattern with:
- 5 curated tools: list_workflows, get_workflow, list_executions, get_execution, trigger_webhook
- API pass-through tool: n8n_api_call for complete coverage
- API reference resource: n8n://api-reference
- Dockerfile and CI workflow for Gitea container registry
This commit is contained in:
Ben
2025-12-26 18:49:11 +00:00
commit d717d12c57
8 changed files with 715 additions and 0 deletions

11
.env.example Normal file
View File

@@ -0,0 +1,11 @@
# n8n MCP Server Configuration
# Copy this file to .env and fill in your values
# n8n Instance URL (without trailing slash)
N8N_URL=https://n8n.example.com
# n8n API Key (generate from n8n Settings > API)
N8N_API_KEY=your-api-key-here
# Optional: Server port (default: 8000)
# PORT=8000