@nestr/mcp 0.1.33 → 0.1.34
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/build/apps/index.d.ts.map +1 -1
- package/build/apps/index.js +43 -16
- package/build/apps/index.js.map +1 -1
- package/build/server.d.ts.map +1 -1
- package/build/server.js +13 -4
- package/build/server.js.map +1 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/apps/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/apps/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAqzCH,wBAAgB,sBAAsB,IAAI,MAAM,CAE/C;AAGD,eAAO,MAAM,YAAY;;;;;;;CAOxB,CAAC;AAGF,eAAO,MAAM,UAAU;;;;;;CAMtB,CAAC"}
|
package/build/apps/index.js
CHANGED
|
@@ -21,18 +21,30 @@ const COMPLETABLE_LIST_HTML = `<!DOCTYPE html>
|
|
|
21
21
|
font-size: 16px;
|
|
22
22
|
color: #1a1a1a;
|
|
23
23
|
background: #fff;
|
|
24
|
-
|
|
25
|
-
|
|
24
|
+
margin: 0;
|
|
25
|
+
padding: 0;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.scroll-container {
|
|
29
|
+
max-height: 750px;
|
|
26
30
|
overflow-y: auto;
|
|
31
|
+
overscroll-behavior: none;
|
|
27
32
|
}
|
|
28
33
|
|
|
29
34
|
.header {
|
|
30
35
|
display: flex;
|
|
31
36
|
align-items: center;
|
|
32
37
|
gap: 10px;
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
38
|
+
padding: 16px 26px;
|
|
39
|
+
position: sticky;
|
|
40
|
+
top: 0;
|
|
41
|
+
background: #fff;
|
|
42
|
+
z-index: 10;
|
|
43
|
+
transition: box-shadow 0.2s;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.header.scrolled {
|
|
47
|
+
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
|
|
36
48
|
}
|
|
37
49
|
|
|
38
50
|
.header-logo {
|
|
@@ -89,6 +101,10 @@ const COMPLETABLE_LIST_HTML = `<!DOCTYPE html>
|
|
|
89
101
|
to { transform: rotate(360deg); }
|
|
90
102
|
}
|
|
91
103
|
|
|
104
|
+
#app {
|
|
105
|
+
padding: 0 16px 16px 16px;
|
|
106
|
+
}
|
|
107
|
+
|
|
92
108
|
.nest-list {
|
|
93
109
|
list-style: none;
|
|
94
110
|
}
|
|
@@ -228,6 +244,7 @@ const COMPLETABLE_LIST_HTML = `<!DOCTYPE html>
|
|
|
228
244
|
text-decoration-style: dashed;
|
|
229
245
|
text-decoration-color: #ccc;
|
|
230
246
|
text-underline-offset: 3px;
|
|
247
|
+
cursor: text;
|
|
231
248
|
}
|
|
232
249
|
|
|
233
250
|
.nest-title:focus {
|
|
@@ -580,6 +597,7 @@ const COMPLETABLE_LIST_HTML = `<!DOCTYPE html>
|
|
|
580
597
|
</style>
|
|
581
598
|
</head>
|
|
582
599
|
<body>
|
|
600
|
+
<div class="scroll-container">
|
|
583
601
|
<div class="header">
|
|
584
602
|
<a href="https://nestr.io" target="_blank" class="header-logo" title="Nestr">
|
|
585
603
|
<svg viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg"><circle cx="128" cy="128" r="120" fill="#4b44ee"/><circle cx="151" cy="151" r="62" fill="#fff"/></svg>
|
|
@@ -596,6 +614,7 @@ const COMPLETABLE_LIST_HTML = `<!DOCTYPE html>
|
|
|
596
614
|
<div id="app">
|
|
597
615
|
<div class="loading">Loading...</div>
|
|
598
616
|
</div>
|
|
617
|
+
</div>
|
|
599
618
|
|
|
600
619
|
<script type="module">
|
|
601
620
|
// MCP App SDK - inline implementation of official MCP Apps protocol (2026-01-26)
|
|
@@ -708,7 +727,7 @@ const COMPLETABLE_LIST_HTML = `<!DOCTYPE html>
|
|
|
708
727
|
}
|
|
709
728
|
|
|
710
729
|
sendSizeChanged() {
|
|
711
|
-
const height = Math.min(document.documentElement.scrollHeight,
|
|
730
|
+
const height = Math.min(document.documentElement.scrollHeight, 750);
|
|
712
731
|
const width = document.documentElement.scrollWidth;
|
|
713
732
|
window.parent.postMessage({
|
|
714
733
|
jsonrpc: '2.0',
|
|
@@ -825,11 +844,13 @@ const COMPLETABLE_LIST_HTML = `<!DOCTYPE html>
|
|
|
825
844
|
}
|
|
826
845
|
|
|
827
846
|
function getParentUrl(nest) {
|
|
847
|
+
// No link for inbox items
|
|
848
|
+
if (nest.parentId && nest.parentId.toLowerCase() === 'inbox') return null;
|
|
849
|
+
// ancestors order: [self, parent, grandparent, ...] - need at least 2 for context link
|
|
828
850
|
if (!nest.ancestors || nest.ancestors.length < 2) return null;
|
|
829
|
-
|
|
830
|
-
const
|
|
831
|
-
|
|
832
|
-
return \`https://app.nestr.io/n/\${grandparent}/\${parent}\`;
|
|
851
|
+
const self = nest.ancestors[0];
|
|
852
|
+
const parent = nest.ancestors[1];
|
|
853
|
+
return \`https://app.nestr.io/n/\${parent}/\${self}\`;
|
|
833
854
|
}
|
|
834
855
|
|
|
835
856
|
function isProject(nest) {
|
|
@@ -871,7 +892,7 @@ const COMPLETABLE_LIST_HTML = `<!DOCTYPE html>
|
|
|
871
892
|
<div class="nest-title"
|
|
872
893
|
contenteditable="true"
|
|
873
894
|
data-id="\${nest._id}"
|
|
874
|
-
data-original="\${escapeHtml(nest.title)}">\${
|
|
895
|
+
data-original="\${escapeHtml(nest.title)}">\${nest.title}</div>
|
|
875
896
|
\${getParentUrl(nest)
|
|
876
897
|
? \`<a href="\${getParentUrl(nest)}" target="_blank" class="nest-path">\${escapeHtml(getParentTitle(nest))}</a>\`
|
|
877
898
|
: \`<div class="nest-path">\${escapeHtml(getParentTitle(nest))}</div>\`}
|
|
@@ -963,10 +984,10 @@ const COMPLETABLE_LIST_HTML = `<!DOCTYPE html>
|
|
|
963
984
|
el.addEventListener('blur', async (e) => {
|
|
964
985
|
const id = e.target.dataset.id;
|
|
965
986
|
const original = e.target.dataset.original;
|
|
966
|
-
const newTitle = e.target.
|
|
987
|
+
const newTitle = e.target.innerHTML.trim();
|
|
967
988
|
|
|
968
|
-
if (newTitle === original || !
|
|
969
|
-
e.target.
|
|
989
|
+
if (newTitle === original || !e.target.textContent.trim()) {
|
|
990
|
+
e.target.innerHTML = original;
|
|
970
991
|
return;
|
|
971
992
|
}
|
|
972
993
|
|
|
@@ -982,7 +1003,7 @@ const COMPLETABLE_LIST_HTML = `<!DOCTYPE html>
|
|
|
982
1003
|
} catch (err) {
|
|
983
1004
|
console.error('Failed to update title:', err);
|
|
984
1005
|
if (nest) nest.title = original;
|
|
985
|
-
e.target.
|
|
1006
|
+
e.target.innerHTML = original;
|
|
986
1007
|
e.target.dataset.original = original;
|
|
987
1008
|
}
|
|
988
1009
|
});
|
|
@@ -993,7 +1014,7 @@ const COMPLETABLE_LIST_HTML = `<!DOCTYPE html>
|
|
|
993
1014
|
e.target.blur();
|
|
994
1015
|
}
|
|
995
1016
|
if (e.key === 'Escape') {
|
|
996
|
-
e.target.
|
|
1017
|
+
e.target.innerHTML = e.target.dataset.original;
|
|
997
1018
|
e.target.blur();
|
|
998
1019
|
}
|
|
999
1020
|
});
|
|
@@ -1295,6 +1316,12 @@ const COMPLETABLE_LIST_HTML = `<!DOCTYPE html>
|
|
|
1295
1316
|
}
|
|
1296
1317
|
});
|
|
1297
1318
|
|
|
1319
|
+
// Sticky header shadow on scroll
|
|
1320
|
+
const scrollContainer = document.querySelector('.scroll-container');
|
|
1321
|
+
scrollContainer.addEventListener('scroll', () => {
|
|
1322
|
+
document.querySelector('.header').classList.toggle('scrolled', scrollContainer.scrollTop > 0);
|
|
1323
|
+
});
|
|
1324
|
+
|
|
1298
1325
|
// Initialize: connect to host via MCP Apps protocol, then listen for tool results
|
|
1299
1326
|
appEl.innerHTML = '<div class="loading">Loading...</div>';
|
|
1300
1327
|
app.onToolResult = handleData;
|
package/build/apps/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/apps/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,8CAA8C;AAC9C,MAAM,qBAAqB,GAAG
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/apps/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,8CAA8C;AAC9C,MAAM,qBAAqB,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QA+yCtB,CAAC;AAET,oDAAoD;AACpD,MAAM,UAAU,sBAAsB;IACpC,OAAO,qBAAqB,CAAC;AAC/B,CAAC;AAED,2BAA2B;AAC3B,MAAM,CAAC,MAAM,YAAY,GAAG;IAC1B,eAAe,EAAE;QACf,GAAG,EAAE,6BAA6B;QAClC,IAAI,EAAE,kBAAkB;QACxB,WAAW,EAAE,wLAAwL;QACrM,QAAQ,EAAE,2BAA2B;KACtC;CACF,CAAC;AAEF,qCAAqC;AACrC,MAAM,CAAC,MAAM,UAAU,GAAG;IACxB,eAAe,EAAE;QACf,EAAE,EAAE;YACF,WAAW,EAAE,6BAA6B;SAC3C;KACF;CACF,CAAC"}
|
package/build/server.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"server.d.ts","sourceRoot":"","sources":["../src/server.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,MAAM,EAAE,MAAM,2CAA2C,CAAC;AAOnE,OAAO,EAAE,WAAW,EAAuB,MAAM,iBAAiB,CAAC;AAKnE,MAAM,WAAW,oBAAoB;IACnC,MAAM,CAAC,EAAE,WAAW,CAAC;IACrB,6DAA6D;IAC7D,UAAU,CAAC,EAAE,CAAC,QAAQ,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,OAAO,EAAE,OAAO,EAAE,KAAK,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;CAC1G;
|
|
1
|
+
{"version":3,"file":"server.d.ts","sourceRoot":"","sources":["../src/server.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,MAAM,EAAE,MAAM,2CAA2C,CAAC;AAOnE,OAAO,EAAE,WAAW,EAAuB,MAAM,iBAAiB,CAAC;AAKnE,MAAM,WAAW,oBAAoB;IACnC,MAAM,CAAC,EAAE,WAAW,CAAC;IACrB,6DAA6D;IAC7D,UAAU,CAAC,EAAE,CAAC,QAAQ,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,OAAO,EAAE,OAAO,EAAE,KAAK,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;CAC1G;AAqhCD,wBAAgB,YAAY,CAAC,MAAM,GAAE,oBAAyB,GAAG,MAAM,CA6LtE"}
|
package/build/server.js
CHANGED
|
@@ -959,7 +959,7 @@ Nestr provides interactive UI components that can be embedded in MCP clients tha
|
|
|
959
959
|
|
|
960
960
|
**Resource URI:** \`ui://nestr/completable-list\`
|
|
961
961
|
|
|
962
|
-
An interactive list for displaying and managing completable items (tasks and projects).
|
|
962
|
+
An interactive list for displaying and managing completable items (tasks and projects). **Prefer using the app over listing items in text.** The app lets users check off, edit, reorder, and manage items directly — no need to also repeat items in text unless the user specifically asks for a text summary.
|
|
963
963
|
|
|
964
964
|
#### When to Use
|
|
965
965
|
|
|
@@ -968,6 +968,8 @@ An interactive list for displaying and managing completable items (tasks and pro
|
|
|
968
968
|
- Listing projects under a role or circle
|
|
969
969
|
- Any time users might want to check off, edit, or reorder items
|
|
970
970
|
|
|
971
|
+
**Important:** When the tool result feeds the app, do NOT also list the items as text in your response. Simply confirm the action (e.g., "Here's your inbox" or "Here's your daily plan") and let the app handle the display. Users can ask to see items as text if they prefer.
|
|
972
|
+
|
|
971
973
|
#### Data Format
|
|
972
974
|
|
|
973
975
|
The tool response includes \`title\`, \`source\`, and \`items\`. The \`title\` is a descriptive label for the list. The \`source\` tells the app which reorder API to use (inbox items use a different endpoint than regular nests).
|
|
@@ -1182,11 +1184,16 @@ export function createServer(config = {}) {
|
|
|
1182
1184
|
...(enableReplay ? {} : {
|
|
1183
1185
|
// Selectively redact sensitive values - keep metadata visible for debugging
|
|
1184
1186
|
redactSensitiveInformation: async (text) => {
|
|
1187
|
+
// Redact Bearer token headers
|
|
1188
|
+
if (/^Bearer\s+/i.test(text))
|
|
1189
|
+
return '[REDACTED_BEARER]';
|
|
1185
1190
|
// Redact JWT tokens (authorization header values)
|
|
1186
1191
|
if (/^eyJ[A-Za-z0-9_-]+\./.test(text))
|
|
1187
1192
|
return '[REDACTED_TOKEN]';
|
|
1188
|
-
// Redact long random tokens/secrets (API keys, session tokens, etc.)
|
|
1189
|
-
if (text.length
|
|
1193
|
+
// Redact long random tokens/secrets (API keys, session tokens, hex tokens, etc.)
|
|
1194
|
+
if (text.length >= 32 && /^[A-Fa-f0-9]+$/.test(text))
|
|
1195
|
+
return '[REDACTED_TOKEN]';
|
|
1196
|
+
if (text.length >= 32 && /^[A-Za-z0-9+/=_-]+$/.test(text))
|
|
1190
1197
|
return '[REDACTED_TOKEN]';
|
|
1191
1198
|
// Redact cookie values (key=value; pairs)
|
|
1192
1199
|
if (/^[^=]+=.+;/.test(text) && text.length > 30)
|
|
@@ -1198,16 +1205,18 @@ export function createServer(config = {}) {
|
|
|
1198
1205
|
return text;
|
|
1199
1206
|
}
|
|
1200
1207
|
}),
|
|
1201
|
-
identify: async () => {
|
|
1208
|
+
identify: async (request, extra) => {
|
|
1202
1209
|
if (identityFetched)
|
|
1203
1210
|
return cachedIdentity;
|
|
1204
1211
|
identityFetched = true;
|
|
1205
1212
|
try {
|
|
1213
|
+
console.log('[MCPCat] identify called, fetching user...');
|
|
1206
1214
|
const user = await client.getCurrentUser();
|
|
1207
1215
|
cachedIdentity = {
|
|
1208
1216
|
userId: user._id,
|
|
1209
1217
|
userName: user.profile?.fullName || user._id,
|
|
1210
1218
|
};
|
|
1219
|
+
console.log('[MCPCat] identify success:', cachedIdentity.userName);
|
|
1211
1220
|
return cachedIdentity;
|
|
1212
1221
|
}
|
|
1213
1222
|
catch (err) {
|
package/build/server.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"server.js","sourceRoot":"","sources":["../src/server.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,MAAM,EAAE,MAAM,2CAA2C,CAAC;AACnE,OAAO,EACL,sBAAsB,EACtB,qBAAqB,EACrB,0BAA0B,EAC1B,yBAAyB,GAC1B,MAAM,oCAAoC,CAAC;AAC5C,OAAO,EAAe,mBAAmB,EAAE,MAAM,iBAAiB,CAAC;AACnE,OAAO,EAAE,eAAe,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AACnE,OAAO,EAAE,sBAAsB,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AACvE,OAAO,KAAK,MAAM,MAAM,QAAQ,CAAC;AAQjC,6FAA6F;AAC7F,MAAM,mBAAmB,GAAG
|
|
1
|
+
{"version":3,"file":"server.js","sourceRoot":"","sources":["../src/server.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nestr/mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.34",
|
|
4
4
|
"mcpName": "io.nestr/mcp",
|
|
5
5
|
"description": "MCP server for Nestr - the platform for self-organizing teams practicing Holacracy, Sociocracy, and role-based work. Manage circles, roles, tactical meetings, governance meetings, tensions, and more.",
|
|
6
6
|
"author": "Nestr <dev@nestr.io>",
|