@edda-business/mcp 0.69.0 → 0.69.1
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/package.json +1 -1
- package/src/server.js +5 -0
package/package.json
CHANGED
package/src/server.js
CHANGED
|
@@ -225,6 +225,11 @@ export function createServer() {
|
|
|
225
225
|
for (const pg of recent) lines.push(` · ${[pg.folder, pg.name].filter(Boolean).join("/")} (${String(pg.updated_at).slice(0, 10)})`);
|
|
226
226
|
}
|
|
227
227
|
lines.push(`\nInbox: ${r?.inbox_pending ?? 0} item(s) waiting.`);
|
|
228
|
+
const paths = r?.folder_paths ?? [];
|
|
229
|
+
if (paths.length) {
|
|
230
|
+
lines.push(`\nFolder tree (use these EXACT paths as destinations — a bare project name creates a NEW top-level project):`);
|
|
231
|
+
for (const p of paths) lines.push(` ${p}`);
|
|
232
|
+
}
|
|
228
233
|
return text(lines.join("\n"));
|
|
229
234
|
} catch (e) {
|
|
230
235
|
const msg = String(e?.message || e);
|