@productbrain/mcp 0.0.1-beta.124 → 0.0.1-beta.125
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.
|
@@ -528,6 +528,7 @@ async function handleGet(entryId) {
|
|
|
528
528
|
if (e.origin) lines.push(`**Origin:** ${e.origin}`);
|
|
529
529
|
if (e.verificationStatus) lines.push(`**Verification:** ${e.verificationStatus}`);
|
|
530
530
|
if (e.sourceRef) lines.push(`**Source ref:** ${e.sourceRef}`);
|
|
531
|
+
if (e.sourceExcerpt) lines.push(`**Source excerpt:** ${e.sourceExcerpt}`);
|
|
531
532
|
if (epistemic) {
|
|
532
533
|
lines.push(formatEpistemicLine(epistemic));
|
|
533
534
|
}
|
|
@@ -572,6 +573,7 @@ async function handleGet(entryId) {
|
|
|
572
573
|
...e.origin ? { origin: String(e.origin) } : {},
|
|
573
574
|
...e.verificationStatus ? { verificationStatus: String(e.verificationStatus) } : {},
|
|
574
575
|
...e.sourceRef ? { sourceRef: String(e.sourceRef) } : {},
|
|
576
|
+
...e.sourceExcerpt ? { sourceExcerpt: String(e.sourceExcerpt) } : {},
|
|
575
577
|
entries: [{ entryId: e.entryId, name: e.name, status: e.status, ...e.workflowStatus ? { workflowStatus: e.workflowStatus } : {}, collectionName: String(e.collectionName ?? e.canonicalKey ?? "\u2014") }],
|
|
576
578
|
...visibleData ? { data: visibleData } : {},
|
|
577
579
|
...Array.isArray(e.relations) && e.relations.length > 0 ? {
|
|
@@ -11528,4 +11530,4 @@ export {
|
|
|
11528
11530
|
SERVER_VERSION,
|
|
11529
11531
|
createProductBrainServer
|
|
11530
11532
|
};
|
|
11531
|
-
//# sourceMappingURL=chunk-
|
|
11533
|
+
//# sourceMappingURL=chunk-4ALZMEXE.js.map
|