Skip to content

Commit 5917f7e

Browse files
committed
fix(examples): n8n workflow passes token via environments, not --token
Addresses Copilot review: the n8n workflow node still used the ignored --token CLI flag. Pass TASKADE_API_KEY via the node's environments field so the imported workflow actually authenticates (consistent with the stdio docs).
1 parent 06c36fe commit 5917f7e

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

examples/n8n-taskade-mcp-workflow.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@
4343
"parameters": {
4444
"connectionType": "stdio",
4545
"command": "npx",
46-
"arguments": "-y @taskade/mcp-server --token YOUR_TASKADE_API_KEY"
46+
"arguments": "-y @taskade/mcp-server",
47+
"environments": "TASKADE_API_KEY=YOUR_TASKADE_API_KEY"
4748
},
4849
"id": "mcp-taskade",
4950
"name": "Taskade MCP",

0 commit comments

Comments
 (0)