@codeam/shared 2.61.61 → 2.61.63
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 +9 -4
- package/dist/index.d.ts +9 -4
- package/dist/index.js +115 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +115 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1258,6 +1258,121 @@ var INTEGRATION_REGISTRY = {
|
|
|
1258
1258
|
staticEnv: { MCP_MODE: "stdio" }
|
|
1259
1259
|
}
|
|
1260
1260
|
}
|
|
1261
|
+
},
|
|
1262
|
+
postman: {
|
|
1263
|
+
id: "postman",
|
|
1264
|
+
name: "Postman",
|
|
1265
|
+
icon: "postman",
|
|
1266
|
+
category: "api_tools",
|
|
1267
|
+
// LIVE — api_key rail. Postman auth is a personal API key (Settings → API
|
|
1268
|
+
// keys). The user pastes it; the backend validates via GET /me + vaults it.
|
|
1269
|
+
// No OAuth (Postman's API has no user OAuth), no secrets, no config-503.
|
|
1270
|
+
enabled: true,
|
|
1271
|
+
auth: {
|
|
1272
|
+
kind: "api_key",
|
|
1273
|
+
fields: [
|
|
1274
|
+
{
|
|
1275
|
+
key: "accessToken",
|
|
1276
|
+
label: "API Key",
|
|
1277
|
+
placeholder: "PMAK-\u2026",
|
|
1278
|
+
secret: true,
|
|
1279
|
+
help: "Postman \u2192 Settings \u2192 API keys \u2192 Generate API Key."
|
|
1280
|
+
}
|
|
1281
|
+
]
|
|
1282
|
+
},
|
|
1283
|
+
delivery: {
|
|
1284
|
+
mcp: {
|
|
1285
|
+
// Postman's OFFICIAL stdio MCP server (Node). BYO key via POSTMAN_API_KEY
|
|
1286
|
+
// (env only). Version PINNED; bump only after re-verifying headless.
|
|
1287
|
+
command: "npx",
|
|
1288
|
+
args: ["-y", "@postman/postman-mcp-server@2.11.2"],
|
|
1289
|
+
envMapping: {
|
|
1290
|
+
POSTMAN_API_KEY: "accessToken"
|
|
1291
|
+
}
|
|
1292
|
+
}
|
|
1293
|
+
}
|
|
1294
|
+
},
|
|
1295
|
+
mixpanel: {
|
|
1296
|
+
id: "mixpanel",
|
|
1297
|
+
name: "Mixpanel",
|
|
1298
|
+
icon: "mixpanel",
|
|
1299
|
+
category: "analytics",
|
|
1300
|
+
// LIVE — api_key rail. Mixpanel query/export auth is a SERVICE ACCOUNT
|
|
1301
|
+
// (username + password, Basic auth) scoped to a project (project id). The
|
|
1302
|
+
// user pastes all three; the backend validates + vaults them. No OAuth
|
|
1303
|
+
// redirect (service accounts are machine-to-machine), no GSM secrets.
|
|
1304
|
+
enabled: true,
|
|
1305
|
+
auth: {
|
|
1306
|
+
kind: "api_key",
|
|
1307
|
+
fields: [
|
|
1308
|
+
{
|
|
1309
|
+
key: "accessToken",
|
|
1310
|
+
label: "Service Account Username",
|
|
1311
|
+
placeholder: "your-sa.mp-service-account",
|
|
1312
|
+
secret: false,
|
|
1313
|
+
help: "Mixpanel \u2192 Organization Settings \u2192 Service Accounts \u2192 create one with project access."
|
|
1314
|
+
},
|
|
1315
|
+
{
|
|
1316
|
+
key: "secretKey",
|
|
1317
|
+
label: "Service Account Secret",
|
|
1318
|
+
placeholder: "the service account secret",
|
|
1319
|
+
secret: true,
|
|
1320
|
+
help: "Shown once when you create the service account \u2014 copy it then."
|
|
1321
|
+
},
|
|
1322
|
+
{
|
|
1323
|
+
key: "projectId",
|
|
1324
|
+
label: "Project ID",
|
|
1325
|
+
placeholder: "1234567",
|
|
1326
|
+
secret: false,
|
|
1327
|
+
help: "Mixpanel \u2192 Project Settings \u2192 Project ID."
|
|
1328
|
+
}
|
|
1329
|
+
]
|
|
1330
|
+
},
|
|
1331
|
+
delivery: {
|
|
1332
|
+
mcp: {
|
|
1333
|
+
// @mendeel/mcp-mixpanel (Node): the service account + project id via env
|
|
1334
|
+
// only (MIXPANEL_SERVICE_ACCOUNT_USERNAME/PASSWORD + MIXPANEL_PROJECT_ID).
|
|
1335
|
+
// Version PINNED; bump only after re-verifying headless. Default region US.
|
|
1336
|
+
command: "npx",
|
|
1337
|
+
args: ["-y", "@mendeel/mcp-mixpanel@1.0.4"],
|
|
1338
|
+
envMapping: {
|
|
1339
|
+
MIXPANEL_SERVICE_ACCOUNT_USERNAME: "accessToken",
|
|
1340
|
+
MIXPANEL_SERVICE_ACCOUNT_PASSWORD: "secretKey",
|
|
1341
|
+
MIXPANEL_PROJECT_ID: "projectId"
|
|
1342
|
+
}
|
|
1343
|
+
}
|
|
1344
|
+
}
|
|
1345
|
+
},
|
|
1346
|
+
supabase: {
|
|
1347
|
+
id: "supabase",
|
|
1348
|
+
name: "Supabase",
|
|
1349
|
+
icon: "supabase",
|
|
1350
|
+
category: "database",
|
|
1351
|
+
// LIVE — OAuth 2.0 (authorization code, Confidential). authorize
|
|
1352
|
+
// api.supabase.com/v1/oauth/authorize; token /v1/oauth/token
|
|
1353
|
+
// (form-urlencoded, client creds via HTTP Basic); rotating refresh tokens.
|
|
1354
|
+
// The OAuth app (Organization → OAuth Apps) is registered and
|
|
1355
|
+
// SUPABASE_OAUTH_CLIENT_ID/SECRET/REDIRECT_URI are in Secret Manager
|
|
1356
|
+
// (prod+dev); the config-gated 503 keeps this safe mid-rollout.
|
|
1357
|
+
enabled: true,
|
|
1358
|
+
auth: {
|
|
1359
|
+
kind: "oauth_redirect",
|
|
1360
|
+
// ⚠️ Supabase scopes are configured ON THE OAUTH APP, NOT sent in the
|
|
1361
|
+
// authorize URL — this list is informational (what the app was granted).
|
|
1362
|
+
scopes: ["all"]
|
|
1363
|
+
},
|
|
1364
|
+
delivery: {
|
|
1365
|
+
mcp: {
|
|
1366
|
+
// Supabase's OFFICIAL MCP server (Node). The OAuth access token IS a
|
|
1367
|
+
// Management API token → fed via SUPABASE_ACCESS_TOKEN (env only, never
|
|
1368
|
+
// argv). Version PINNED; bump only after re-verifying headless.
|
|
1369
|
+
command: "npx",
|
|
1370
|
+
args: ["-y", "@supabase/mcp-server-supabase@0.9.0"],
|
|
1371
|
+
envMapping: {
|
|
1372
|
+
SUPABASE_ACCESS_TOKEN: "accessToken"
|
|
1373
|
+
}
|
|
1374
|
+
}
|
|
1375
|
+
}
|
|
1261
1376
|
}
|
|
1262
1377
|
};
|
|
1263
1378
|
function getEnabledIntegrations() {
|
|
@@ -1550,11 +1665,8 @@ var INTEGRATION_BRANDING = {
|
|
|
1550
1665
|
var UPCOMING_INTEGRATION_IDS = [
|
|
1551
1666
|
"gmail",
|
|
1552
1667
|
"figma",
|
|
1553
|
-
"supabase",
|
|
1554
1668
|
"asana",
|
|
1555
|
-
"postman",
|
|
1556
1669
|
"stripe",
|
|
1557
|
-
"mixpanel",
|
|
1558
1670
|
"pendo",
|
|
1559
1671
|
"pagerduty",
|
|
1560
1672
|
"amplitude"
|