@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.
- package/package.json +1 -1
- package/src/server.js +5 -6
package/package.json
CHANGED
package/src/server.js
CHANGED
|
@@ -315,12 +315,11 @@ export function createServer() {
|
|
|
315
315
|
// ===========================================================================
|
|
316
316
|
server.tool(
|
|
317
317
|
"reconcile",
|
|
318
|
-
"
|
|
319
|
-
"
|
|
320
|
-
"flow: list
|
|
321
|
-
"item's `stagingId`
|
|
322
|
-
"
|
|
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."),
|