@codeam/shared 2.61.59 → 2.61.61
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +7 -4
- package/dist/index.d.ts +7 -4
- package/dist/index.js +46 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +46 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1212,6 +1212,52 @@ var INTEGRATION_REGISTRY = {
|
|
|
1212
1212
|
}
|
|
1213
1213
|
}
|
|
1214
1214
|
}
|
|
1215
|
+
},
|
|
1216
|
+
n8n: {
|
|
1217
|
+
id: "n8n",
|
|
1218
|
+
name: "n8n",
|
|
1219
|
+
icon: "n8n",
|
|
1220
|
+
category: "automation",
|
|
1221
|
+
// LIVE — api_key rail (like Trello / Azure DevOps). n8n auth is an API key
|
|
1222
|
+
// (Settings → n8n API) + the instance URL (n8n.cloud or self-hosted). The
|
|
1223
|
+
// user pastes both; the backend validates against the n8n REST API + vaults
|
|
1224
|
+
// them. No OAuth app, no GSM secrets, no config-gated 503.
|
|
1225
|
+
// ⚠️ The instance MUST be PUBLICLY reachable (n8n.cloud or a public self-host)
|
|
1226
|
+
// — a localhost/private n8n can't be reached from the deploy box.
|
|
1227
|
+
enabled: true,
|
|
1228
|
+
auth: {
|
|
1229
|
+
kind: "api_key",
|
|
1230
|
+
fields: [
|
|
1231
|
+
{
|
|
1232
|
+
key: "instanceUrl",
|
|
1233
|
+
label: "Instance URL",
|
|
1234
|
+
placeholder: "https://your-workspace.app.n8n.cloud",
|
|
1235
|
+
secret: false,
|
|
1236
|
+
help: "Your n8n base URL \u2014 n8n.cloud or your public self-hosted instance."
|
|
1237
|
+
},
|
|
1238
|
+
{
|
|
1239
|
+
key: "accessToken",
|
|
1240
|
+
label: "API Key",
|
|
1241
|
+
placeholder: "n8n_api_\u2026",
|
|
1242
|
+
secret: true,
|
|
1243
|
+
help: "Create in n8n \u2192 Settings \u2192 n8n API \u2192 Create an API key."
|
|
1244
|
+
}
|
|
1245
|
+
]
|
|
1246
|
+
},
|
|
1247
|
+
delivery: {
|
|
1248
|
+
mcp: {
|
|
1249
|
+
// n8n-mcp (Node): N8N_API_URL + N8N_API_KEY via env only, never argv.
|
|
1250
|
+
// Version PINNED; bump only after re-verifying headless.
|
|
1251
|
+
command: "npx",
|
|
1252
|
+
args: ["-y", "n8n-mcp@2.66.2"],
|
|
1253
|
+
envMapping: {
|
|
1254
|
+
N8N_API_URL: "instanceUrl",
|
|
1255
|
+
N8N_API_KEY: "accessToken"
|
|
1256
|
+
},
|
|
1257
|
+
// stdio transport (the CLI mcp-shim spawns it over stdio, not HTTP).
|
|
1258
|
+
staticEnv: { MCP_MODE: "stdio" }
|
|
1259
|
+
}
|
|
1260
|
+
}
|
|
1215
1261
|
}
|
|
1216
1262
|
};
|
|
1217
1263
|
function getEnabledIntegrations() {
|
|
@@ -1507,7 +1553,6 @@ var UPCOMING_INTEGRATION_IDS = [
|
|
|
1507
1553
|
"supabase",
|
|
1508
1554
|
"asana",
|
|
1509
1555
|
"postman",
|
|
1510
|
-
"n8n",
|
|
1511
1556
|
"stripe",
|
|
1512
1557
|
"mixpanel",
|
|
1513
1558
|
"pendo",
|