@edda-business/mcp 0.68.0 → 0.69.0

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 +5 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@edda-business/mcp",
3
- "version": "0.68.0",
3
+ "version": "0.69.0",
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
@@ -315,12 +315,11 @@ export function createServer() {
315
315
  // ===========================================================================
316
316
  server.tool(
317
317
  "reconcile",
318
- "PROCESS the company Inbox. Two modes. (1) Sweep: no arguments — the company auto-files items " +
319
- "with a clear destination and leaves ambiguous ones waiting. (2) ANALYZED FILING the ingest " +
320
- "flow: list waiting items with `inbox`, read and analyze each one, then call this with that " +
321
- "item's `stagingId` AND an explicit `path` (e.g. 'Projects/Whitehay AI/Working Documents') to " +
322
- "file it exactly there. YOU are the analyst; the company only files what you tell it. " +
323
- "Returns where each item landed.",
318
+ "FILE items from the company Inbox NOTHING files without an explicit per-item action " +
319
+ "(company ruling). Without arguments this only REPORTS what is waiting (each with a proposed " +
320
+ "destination). The ingest flow: list items with `inbox`, read and analyze each, then call this " +
321
+ "with that item's `stagingId` plus an explicit `path` to place it exactly where you decided " +
322
+ "(omit `path` to accept the proposed destination). YOU are the analyst; your call is the review.",
324
323
  {
325
324
  stagingId: z.string().optional().describe("Id of one staged item to file (from an `inbox` row or a submit receipt). Omit to sweep the whole Inbox."),
326
325
  path: z.string().optional().describe("Explicit destination folder path for THAT item (requires stagingId). Missing folders are created."),