@codeam/shared 2.61.78 → 2.61.80
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.js +22 -16
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +22 -16
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1428,28 +1428,34 @@ var INTEGRATION_REGISTRY = {
|
|
|
1428
1428
|
name: "Convex",
|
|
1429
1429
|
icon: "convex",
|
|
1430
1430
|
category: "database",
|
|
1431
|
-
// LIVE —
|
|
1432
|
-
//
|
|
1433
|
-
//
|
|
1434
|
-
//
|
|
1435
|
-
//
|
|
1436
|
-
//
|
|
1437
|
-
//
|
|
1438
|
-
//
|
|
1439
|
-
//
|
|
1431
|
+
// LIVE — api_key rail (the user pastes a Convex DEPLOY KEY).
|
|
1432
|
+
// ⚠️ Convex's OAuth application token was tried first and DOES NOT WORK with
|
|
1433
|
+
// the MCP: it's a narrow Management-API credential — verified live it fails
|
|
1434
|
+
// `convex mcp start` as BOTH CONVEX_DEPLOY_KEY and CONVEX_OVERRIDE_ACCESS_TOKEN,
|
|
1435
|
+
// and can't even enumerate the team's deployments ("requires a Personal
|
|
1436
|
+
// Access Token"). The Convex MCP's DOCUMENTED headless credential is a
|
|
1437
|
+
// DEPLOY KEY (CONVEX_DEPLOY_KEY=dev:…|… / prod:… / project:…), so the user
|
|
1438
|
+
// pastes one (Convex Dashboard → Project Settings → Deploy Keys), exactly
|
|
1439
|
+
// like Azure DevOps / Datadog / Trello. No OAuth app, no GSM secret.
|
|
1440
1440
|
enabled: true,
|
|
1441
1441
|
auth: {
|
|
1442
|
-
kind: "
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1442
|
+
kind: "api_key",
|
|
1443
|
+
fields: [
|
|
1444
|
+
{
|
|
1445
|
+
key: "accessToken",
|
|
1446
|
+
label: "Convex deploy key",
|
|
1447
|
+
placeholder: "prod:happy-animal-123|eyJ2\u2026",
|
|
1448
|
+
secret: true,
|
|
1449
|
+
help: "Convex Dashboard \u2192 Project Settings \u2192 Deploy Keys \u2192 Generate a deploy key."
|
|
1450
|
+
}
|
|
1451
|
+
]
|
|
1446
1452
|
},
|
|
1447
1453
|
delivery: {
|
|
1448
1454
|
mcp: {
|
|
1449
1455
|
// Convex's OFFICIAL MCP server ships inside the `convex` npm package
|
|
1450
|
-
// (`convex mcp start`). The
|
|
1451
|
-
//
|
|
1452
|
-
//
|
|
1456
|
+
// (`convex mcp start`). The pasted deploy key is fed via CONVEX_DEPLOY_KEY
|
|
1457
|
+
// (env only, never argv) — its documented non-interactive credential.
|
|
1458
|
+
// Version PINNED; bump only after re-verifying headless.
|
|
1453
1459
|
command: "npx",
|
|
1454
1460
|
args: ["-y", "convex@1.42.3", "mcp", "start"],
|
|
1455
1461
|
envMapping: {
|