@echomem/mcp 1.4.37 → 1.4.38
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 +1 -12
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2343,22 +2343,11 @@ Details: ${m.details || "N/A"}`;
|
|
|
2343
2343
|
content: [{ type: "text", text: this.sharingFallbackText(scopeText, groupName) }],
|
|
2344
2344
|
};
|
|
2345
2345
|
}
|
|
2346
|
-
if (elicitation.action === "cancel") {
|
|
2347
|
-
return {
|
|
2348
|
-
content: [{
|
|
2349
|
-
type: "text",
|
|
2350
|
-
text: this.sharingFallbackText(scopeText, groupName),
|
|
2351
|
-
}],
|
|
2352
|
-
};
|
|
2353
|
-
}
|
|
2354
2346
|
if (elicitation.action !== "accept") {
|
|
2355
2347
|
return {
|
|
2356
2348
|
content: [{
|
|
2357
2349
|
type: "text",
|
|
2358
|
-
text:
|
|
2359
|
-
scopeText,
|
|
2360
|
-
`No sharing decision was recorded for ${groupName}. The checkpoint remains private. Ask again at a later qualifying checkpoint; never interpret decline or cancel as No.`,
|
|
2361
|
-
].filter(Boolean).join("\n\n"),
|
|
2350
|
+
text: this.sharingFallbackText(scopeText, groupName),
|
|
2362
2351
|
}],
|
|
2363
2352
|
};
|
|
2364
2353
|
}
|
package/package.json
CHANGED