From 7fbd737e91a1bf4f01c6b2bd32a312268981dcd7 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 15 Jun 2026 21:34:49 +0000 Subject: [PATCH] Add n8n MCP server config for ECHO workflow access Configures the n8n-mcp HTTP server so a future session can load n8n tools directly. The auth token is referenced via the N8N_MCP_TOKEN environment variable so no secret is committed to the repo. https://claude.ai/code/session_01AzcXJz5iqKWxr87JYwUco2 --- .mcp.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .mcp.json diff --git a/.mcp.json b/.mcp.json new file mode 100644 index 0000000..6b2e811 --- /dev/null +++ b/.mcp.json @@ -0,0 +1,11 @@ +{ + "mcpServers": { + "n8n-mcp": { + "type": "http", + "url": "https://tradingmagic.app.n8n.cloud/mcp-server/http", + "headers": { + "Authorization": "Bearer ${N8N_MCP_TOKEN}" + } + } + } +}