@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.js
CHANGED
|
@@ -1515,28 +1515,34 @@ var INTEGRATION_REGISTRY = {
|
|
|
1515
1515
|
name: "Convex",
|
|
1516
1516
|
icon: "convex",
|
|
1517
1517
|
category: "database",
|
|
1518
|
-
// LIVE —
|
|
1519
|
-
//
|
|
1520
|
-
//
|
|
1521
|
-
//
|
|
1522
|
-
//
|
|
1523
|
-
//
|
|
1524
|
-
//
|
|
1525
|
-
//
|
|
1526
|
-
//
|
|
1518
|
+
// LIVE — api_key rail (the user pastes a Convex DEPLOY KEY).
|
|
1519
|
+
// ⚠️ Convex's OAuth application token was tried first and DOES NOT WORK with
|
|
1520
|
+
// the MCP: it's a narrow Management-API credential — verified live it fails
|
|
1521
|
+
// `convex mcp start` as BOTH CONVEX_DEPLOY_KEY and CONVEX_OVERRIDE_ACCESS_TOKEN,
|
|
1522
|
+
// and can't even enumerate the team's deployments ("requires a Personal
|
|
1523
|
+
// Access Token"). The Convex MCP's DOCUMENTED headless credential is a
|
|
1524
|
+
// DEPLOY KEY (CONVEX_DEPLOY_KEY=dev:…|… / prod:… / project:…), so the user
|
|
1525
|
+
// pastes one (Convex Dashboard → Project Settings → Deploy Keys), exactly
|
|
1526
|
+
// like Azure DevOps / Datadog / Trello. No OAuth app, no GSM secret.
|
|
1527
1527
|
enabled: true,
|
|
1528
1528
|
auth: {
|
|
1529
|
-
kind: "
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1529
|
+
kind: "api_key",
|
|
1530
|
+
fields: [
|
|
1531
|
+
{
|
|
1532
|
+
key: "accessToken",
|
|
1533
|
+
label: "Convex deploy key",
|
|
1534
|
+
placeholder: "prod:happy-animal-123|eyJ2\u2026",
|
|
1535
|
+
secret: true,
|
|
1536
|
+
help: "Convex Dashboard \u2192 Project Settings \u2192 Deploy Keys \u2192 Generate a deploy key."
|
|
1537
|
+
}
|
|
1538
|
+
]
|
|
1533
1539
|
},
|
|
1534
1540
|
delivery: {
|
|
1535
1541
|
mcp: {
|
|
1536
1542
|
// Convex's OFFICIAL MCP server ships inside the `convex` npm package
|
|
1537
|
-
// (`convex mcp start`). The
|
|
1538
|
-
//
|
|
1539
|
-
//
|
|
1543
|
+
// (`convex mcp start`). The pasted deploy key is fed via CONVEX_DEPLOY_KEY
|
|
1544
|
+
// (env only, never argv) — its documented non-interactive credential.
|
|
1545
|
+
// Version PINNED; bump only after re-verifying headless.
|
|
1540
1546
|
command: "npx",
|
|
1541
1547
|
args: ["-y", "convex@1.42.3", "mcp", "start"],
|
|
1542
1548
|
envMapping: {
|