n8n-workflows
n8n otomasyon workflow'lari. Webhook, cron trigger, API entegrasyon, CI/CD otomasyon.
npx skills add vibeeval/vibecosystem --skill n8n-workflows --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# n8n Workflows ## n8n MCP Server Kurulumu ### NPM Kurulum ```bash npm install -g n8n n8n start # http://localhost:5678 ``` ### Docker Kurulum ```bash docker run -d \ --name n8n \ -p 5678:5678 \ -v n8n_data:/home/node/.n8n \ -e N8N_BASIC_AUTH_ACTIVE=true \ -e N8N_BASIC_AUTH_USER=admin \ -e N8N_BASIC_AUTH_PASSWORD=<strong-password> \ n8nio/n8n ``` ### MCP Server Config ```json { "mcpServers": { "n8n": { "command": "npx", "args": ["-y", "@anthropic/n8n-mcp-server"], "env": { "N8N_API_URL": "http://localhost:5678/api/v1", "N8N_API_KEY": "<n8n-api-key>" } } } } ``` ### API Key Olusturma ``` n8n UI > Settings > API > Create API Key Scope: workflow:read, workflow:write, execution:read ``` ## Workflow Olusturma ### Temel Yapi ```json { "name": "My Workflow", "nodes": [ { "name": "Trigger", "type": "n8n-nodes-base.webhook", "position": [250, 300], "parameters": { "path": "my-webhook", "httpMethod": "POST" } }, { "name": "Process", "type": "n8n-nodes-base.function", "position": [450, 300], "parameters": { "functionCode": "return items.map(item => ({ json: { processed: true, ...item.json } }));" } } ], "connections": { "Trigger": { "main": [[{ "node": "Process", "type": "main", "index": 0 }]
- n8n MCP Server Kurulumu
- NPM Kurulum
- Docker Kurulum
- MCP Server Config
- API Key Olusturma
- Workflow Olusturma
- Temel Yapi
- MCP ile Workflow Olustur
- Workflow Listele
- Workflow Calistir
- Trigger Tipleri
- Webhook Trigger
- Cron Trigger
- Event Trigger'lar
npm install -g n8n n8n start # http://localhost:5678 docker run -d \ n8nio/n8n Webhook ile tetikle curl -X POST http://localhost:5678/webhook/my-workflow \ API ile tetikle curl -X POST http://localhost:5678/api/v1/workflows/123/execute \ Export (backup) curl -s http://localhost:5678/api/v1/workflows \
What does the n8n-workflows skill do?
n8n otomasyon workflow'lari. Webhook, cron trigger, API entegrasyon, CI/CD otomasyon.
How do I install it?
Run `npx skills add vibeeval/vibecosystem --skill n8n-workflows --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From vibeeval/vibecosystem, a repository with 521 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
