@edda-business/mcp 0.66.0 → 0.66.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/server.js +7 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@edda-business/mcp",
3
- "version": "0.66.0",
3
+ "version": "0.66.1",
4
4
  "description": "Edda — the company data layer for AI agents.",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
package/src/server.js CHANGED
@@ -213,7 +213,9 @@ export function createServer() {
213
213
  "itself (on the next reconcile). You may optionally `suggest` a destination as a hint. Use " +
214
214
  "this to promote a finished note from your own work into the shared company brain. Only stage " +
215
215
  "what the person has approved sharing — this leaves their private vault. (Their private files " +
216
- "stay on their disk; this is the shared company layer.)",
216
+ "stay on their disk; this is the shared company layer.) This stages PAGES (content) only — " +
217
+ "NEVER folders: if the person asks to create a folder, call `create` instead; folder creation " +
218
+ "is direct and immediate, it does not go through the Inbox.",
217
219
  {
218
220
  name: z.string().describe("File/page name, e.g. 'MCP Overview EFB'. A '.md' suffix is added if missing."),
219
221
  content: z.string().describe("The full markdown content of the item to share."),
@@ -322,9 +324,10 @@ export function createServer() {
322
324
  "are FIXED (Company · Projects · Decisions · Companies · People · Raw Documents · Archive) — you " +
323
325
  "cannot add new ones. A bare name (or a path not starting with a fixed folder) becomes a PROJECT " +
324
326
  "under Projects: 'Agency' → Projects/Agency. To nest under a specific top-level folder, start the " +
325
- "path with it, e.g. 'Company/Policies' or 'Projects/Data Centre/Specs'. A write role is required; " +
326
- "the folder appears immediately, and you can suggest it as a destination when you " +
327
- "submit_company_candidate. Returns the folder id.",
327
+ "path with it, e.g. 'Company/Policies' or 'Projects/Data Centre/Specs'. When the person asks to " +
328
+ "create a folder, ALWAYS call this tool directly never stage a folder request into the Inbox " +
329
+ "(the Inbox is for page content only). A write role is required; the folder appears immediately, " +
330
+ "and you can suggest it as a destination when you submit_company_candidate. Returns the folder id.",
328
331
  { path: z.string().describe("Folder name or path. A bare name → a project under Projects; 'Top-Level/Sub' nests under a fixed top-level folder.") },
329
332
  async ({ path }) => {
330
333
  try {