@edda-business/mcp 0.74.0 → 0.75.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 +3 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@edda-business/mcp",
3
- "version": "0.74.0",
3
+ "version": "0.75.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
@@ -384,6 +384,7 @@ export function createServer() {
384
384
  subject_kind: z.enum(["project", "person", "company", "page"]).optional().describe("Default project — the project this is filed into."),
385
385
  subject_id: z.string().optional().describe("Only when the subject is NOT the destination project."),
386
386
  confidence: z.enum(["stated", "inferred"]).optional().describe("stated = the source says it outright; inferred = you read it between the lines."),
387
+ excerpt: z.string().max(600).optional().describe("A short passage copied WORD FOR WORD from the document that supports this claim (one or two sentences). Shown to people as the evidence. It is kept only if it is actually found in the filed document; never paraphrase."),
387
388
  })).optional().describe(
388
389
  "What this material CHANGES about what the company believes — the point of sharing an update rather than a document. " +
389
390
  "'The term sheet arrived and Tom is unhappy with it' is not a document, it is two claims. " +
@@ -462,6 +463,7 @@ export function createServer() {
462
463
  subject_kind: z.enum(["project", "person", "company", "page"]).optional(),
463
464
  subject_id: z.string().optional(),
464
465
  confidence: z.enum(["stated", "inferred"]).optional(),
466
+ excerpt: z.string().max(600).optional().describe("A short passage copied WORD FOR WORD from the document that supports this claim (one or two sentences). Shown to people as the evidence. It is kept only if it is actually found in the filed document; never paraphrase."),
465
467
  })).optional().describe("What THIS item changes about what the company believes."),
466
468
  })).max(100).describe("The items from one ingest run."),
467
469
  },
@@ -531,6 +533,7 @@ export function createServer() {
531
533
  standing: z.enum(["committed", "reported", "indicative", "contested"]).optional().describe("committed = signed/agreed/done · reported = a source states it · indicative = non-binding, draft, conditional · contested = disputed. A weaker claim never retires a firmer one."),
532
534
  as_of: z.string().optional().describe("When it became TRUE (YYYY-MM-DD), not when you learned it."),
533
535
  confidence: z.enum(["stated", "inferred"]).optional(),
536
+ excerpt: z.string().max(600).optional().describe("A short passage copied WORD FOR WORD from one of the cited source_refs documents that supports this claim. Kept only if found in that document; never paraphrase."),
534
537
  })).max(25).describe("The beliefs that changed. One per fact — do not pack two facts into one sentence."),
535
538
  source_refs: z.array(z.object({
536
539
  kind: z.enum(["company_file", "river_original", "river_receipt"]),