@opennous/mcp 0.64.0 → 0.65.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 +3 -3
  2. package/src/server.js +7 -2
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@opennous/mcp",
3
- "version": "0.64.0",
4
- "description": "Nous \u2014 the Context Graph for AI Agents.",
3
+ "version": "0.65.0",
4
+ "description": "Nous the Context Graph for AI Agents.",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
7
7
  "type": "git",
@@ -21,7 +21,7 @@
21
21
  "start": "node src/index.js",
22
22
  "dev:http": "node --watch src/http.js",
23
23
  "start:http": "node src/http.js",
24
- "typecheck": "echo 'no ts in mcp \u2014 skipping'",
24
+ "typecheck": "echo 'no ts in mcp skipping'",
25
25
  "test": "node --test tests/*.test.mjs"
26
26
  },
27
27
  "keywords": [
package/src/server.js CHANGED
@@ -29,7 +29,7 @@ const APP_URL = () => (process.env.NOUS_APP_URL || "https://app.opennous.cloud")
29
29
  const OAUTH_CONNECT = { gmail: "gmail", gmail_oauth: "gmail", google: "gmail", "google-mail": "gmail", googlemail: "gmail", linkedin: "linkedin" };
30
30
  const connectLink = (slug) => `${APP_URL()}/settings?section=integrations&connect=${slug}`;
31
31
 
32
- export const SERVER_VERSION = "0.64.0";
32
+ export const SERVER_VERSION = "0.65.0";
33
33
 
34
34
  // ─── helpers ──────────────────────────────────────────────────────────────────
35
35
 
@@ -529,7 +529,12 @@ export function createServer() {
529
529
  "facts you actually reasoned from in `evidence_ids` — that is what lets Nous learn which KINDS of " +
530
530
  "evidence are worth acting on, not just which actions worked. When the human answers, " +
531
531
  "record the verdict: property 'decision.accepted' | 'decision.edited' | 'decision.rejected' with the same " +
532
- "decision_id (pass drafted_body + sent_body on accepted and the edit is measured for you). Then pass that " +
532
+ "decision_id (pass drafted_body + sent_body on accepted and the edit is measured for you). On the verdict, " +
533
+ "say what the correction MEANT — you are the only one who heard it: {interpretation:'cut the pricing " +
534
+ "paragraph', correction_kind:'rule'|'structure'|'claim'|'constraint'|'none', correction_scope:'once'|" +
535
+ "'person'|'workspace'|'product'}. 'none' and 'once' are correct most of the time; a typo or a detail only " +
536
+ "they knew teaches nothing, and recording it crowds out the real signal. Ask 'just this one, or always?' " +
537
+ "only when you genuinely cannot tell. Then pass that " +
533
538
  "same decision_id on the interaction observation when the action fires. That is what turns advice into " +
534
539
  "learnable data — without it a send is an orphan nobody can grade.",
535
540
  {