@opennous/mcp 0.59.0 → 0.60.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 +6 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opennous/mcp",
3
- "version": "0.59.0",
3
+ "version": "0.60.0",
4
4
  "description": "Nous — the Context Graph for AI Agents.",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
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.59.0";
32
+ export const SERVER_VERSION = "0.60.0";
33
33
 
34
34
  // ─── helpers ──────────────────────────────────────────────────────────────────
35
35
 
@@ -387,7 +387,11 @@ export function createServer() {
387
387
  "Insights about YOUR OWN business (product/positioning/market/buyer) go to record_insight, not here. " +
388
388
  "CLOSING THE LOOP — when you RECOMMEND an action, write the recommendation down before it happens: " +
389
389
  "{kind:'state',property:'decision.proposed',value:{decision_id:'<your id>',proposal:'send a follow-up " +
390
- "naming the security objection',action_type:'email_send',category:'outreach'}}. When the human answers, " +
390
+ "naming the security objection',rationale:'the security review is the real blocker at this stage', " +
391
+ "evidence_ids:['<claim/note id you reasoned from>'],action_type:'email_send',category:'outreach'}}. " +
392
+ "Keep `proposal` (WHAT you are doing) apart from `rationale` (WHY you think it works), and list the " +
393
+ "facts you actually reasoned from in `evidence_ids` — that is what lets Nous learn which KINDS of " +
394
+ "evidence are worth acting on, not just which actions worked. When the human answers, " +
391
395
  "record the verdict: property 'decision.accepted' | 'decision.edited' | 'decision.rejected' with the same " +
392
396
  "decision_id (pass drafted_body + sent_body on accepted and the edit is measured for you). Then pass that " +
393
397
  "same decision_id on the interaction observation when the action fires. That is what turns advice into " +