@danainnovations/cortex-mcp 1.0.119 → 1.0.121
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/cli.js +12 -28
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -635,9 +635,9 @@ function getWizardHtml() {
|
|
|
635
635
|
|
|
636
636
|
/* \u2500\u2500 Connection List \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 */
|
|
637
637
|
.conn-list {
|
|
638
|
-
display:
|
|
639
|
-
|
|
640
|
-
gap:
|
|
638
|
+
display: grid;
|
|
639
|
+
grid-template-columns: repeat(2, 1fr);
|
|
640
|
+
gap: 6px;
|
|
641
641
|
margin-bottom: 8px;
|
|
642
642
|
}
|
|
643
643
|
.conn-item {
|
|
@@ -810,6 +810,7 @@ function getWizardHtml() {
|
|
|
810
810
|
/* \u2500\u2500 Tablet / narrow \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 */
|
|
811
811
|
@media (max-width: 900px) {
|
|
812
812
|
.mcp-list { grid-template-columns: repeat(2, 1fr); }
|
|
813
|
+
.conn-list { grid-template-columns: 1fr; }
|
|
813
814
|
}
|
|
814
815
|
|
|
815
816
|
/* \u2500\u2500 Mobile \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 */
|
|
@@ -1511,43 +1512,26 @@ function getWizardHtml() {
|
|
|
1511
1512
|
var claudeAiIcon = CLIENT_ICONS['claude-ai'] || '';
|
|
1512
1513
|
|
|
1513
1514
|
el.innerHTML =
|
|
1514
|
-
'<h2 style="margin-bottom:4px;">Connect Cortex
|
|
1515
|
-
'<p class="subtitle" style="margin-bottom:20px;">
|
|
1515
|
+
'<h2 style="margin-bottom:4px;">Connect Cortex Enterprise</h2>' +
|
|
1516
|
+
'<p class="subtitle" style="margin-bottom:20px;">This step is only for <strong style="color:#fff;">Organization / Enterprise</strong> Claude accounts</p>' +
|
|
1516
1517
|
|
|
1517
|
-
|
|
1518
|
-
'<div style="border: 2px solid #00A3E1; border-radius: 14px; padding: 20px; margin-bottom: 16px; background: rgba(0,163,225,0.04);">' +
|
|
1518
|
+
'<div style="border: 2px solid #00A3E1; border-radius: 14px; padding: 20px; background: rgba(0,163,225,0.04);">' +
|
|
1519
1519
|
'<div style="display:flex; align-items:center; gap:10px; margin-bottom:14px;">' +
|
|
1520
1520
|
(coworkIcon ? '<div class="client-icon" style="width:28px;height:28px;">' + coworkIcon + '</div>' : '') +
|
|
1521
|
-
'<span style="font-size:16px; font-weight:600; color:#fff;">
|
|
1522
|
-
'<span style="font-size:10px; font-weight:600; text-transform:uppercase; letter-spacing:0.5px; color:#fff; background:#00A3E1; padding:3px 10px; border-radius:4px; margin-left:auto;">
|
|
1521
|
+
'<span style="font-size:16px; font-weight:600; color:#fff;">Cortex MCP Enterprise</span>' +
|
|
1522
|
+
'<span style="font-size:10px; font-weight:600; text-transform:uppercase; letter-spacing:0.5px; color:#fff; background:#00A3E1; padding:3px 10px; border-radius:4px; margin-left:auto;">Enterprise only</span>' +
|
|
1523
1523
|
'</div>' +
|
|
1524
|
-
'<p style="font-size:13px; color:#FFB74D; margin-bottom:12px; font-weight:500;">Enterprise
|
|
1524
|
+
'<p style="font-size:13px; color:#FFB74D; margin-bottom:12px; font-weight:500;">If you are on a company Claude Enterprise or Organization plan, you must complete this step. The local \\u201Ccortex\\u201D config from the previous step only works for personal accounts.</p>' +
|
|
1525
1525
|
'<ol class="manual-client-steps" style="font-size:14px; line-height:2;">' +
|
|
1526
1526
|
'<li>Open <strong>Claude Desktop</strong> \\u2192 <strong>Settings</strong> \\u2192 <strong>Connectors</strong></li>' +
|
|
1527
1527
|
'<li>Find <strong>Cortex MCP Enterprise</strong> at the bottom and click <strong>Connect</strong></li>' +
|
|
1528
1528
|
'<li>Sign in with your company account, click <strong>Open Claude</strong>, then close the browser tab</li>' +
|
|
1529
1529
|
'<li>Back in Connectors, click on <strong>Cortex</strong> \\u2192 set Tool permissions to <strong>Always allow</strong></li>' +
|
|
1530
1530
|
'</ol>' +
|
|
1531
|
+
'<p style="font-size:12px; color:#8f999f; margin-top:12px;">This one connection enables Cortex in CoWork, claude.ai (web), and the Claude mobile app.</p>' +
|
|
1531
1532
|
'</div>' +
|
|
1532
1533
|
|
|
1533
|
-
|
|
1534
|
-
'<div class="manual-client-card">' +
|
|
1535
|
-
'<div class="manual-client-header">' +
|
|
1536
|
-
(claudeAiIcon ? '<div class="client-icon">' + claudeAiIcon + '</div>' : '') +
|
|
1537
|
-
'<span class="client-name">Claude.ai & Mobile</span>' +
|
|
1538
|
-
'<span class="manual-client-badge">Optional</span>' +
|
|
1539
|
-
'</div>' +
|
|
1540
|
-
'<p style="font-size:12px;color:#8f999f;margin-bottom:10px;">Works on claude.ai (web), Claude Desktop, and the Claude mobile app</p>' +
|
|
1541
|
-
'<ol class="manual-client-steps">' +
|
|
1542
|
-
'<li>Open <a href="https://claude.ai/settings/integrations" target="_blank">claude.ai/settings/integrations</a></li>' +
|
|
1543
|
-
'<li>Click <strong>Add custom integration</strong></li>' +
|
|
1544
|
-
'<li>Paste the URL below and click <strong>Add</strong></li>' +
|
|
1545
|
-
'</ol>' +
|
|
1546
|
-
'<div class="manual-url-box">' +
|
|
1547
|
-
'<code>' + escapeHtml(mcpUrl) + '</code>' +
|
|
1548
|
-
'<button class="copy-btn" onclick="copySnippet(this)">Copy</button>' +
|
|
1549
|
-
'</div>' +
|
|
1550
|
-
'</div>';
|
|
1534
|
+
'<p style="font-size:12px; color:#6b7780; margin-top:16px; text-align:center;">Not on an Enterprise account? Click \\u201CContinue\\u201D \\u2014 the local setup from the previous step is all you need.</p>';
|
|
1551
1535
|
}
|
|
1552
1536
|
|
|
1553
1537
|
function completeManualSetup() {
|