@opennous/mcp 0.30.1 → 0.30.2

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 +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opennous/mcp",
3
- "version": "0.30.1",
3
+ "version": "0.30.2",
4
4
  "description": "Nous — the Context Graph for AI Agents.",
5
5
  "license": "AGPL-3.0-only",
6
6
  "repository": {
package/src/server.js CHANGED
@@ -416,6 +416,7 @@ export function createServer() {
416
416
  for (const it of r.items ?? []) {
417
417
  if (r.corpus === "facts") {
418
418
  lines.push(` ${it.entity_name ?? it.entity_id} [${it.category}] ${it.content}` +
419
+ (it.date ? ` [${relAge(it.date)}]` : "") +
419
420
  (it.similarity != null ? ` (${it.similarity})` : ""));
420
421
  } else if (r.return === "entities") {
421
422
  lines.push(` ${it.entity_name ?? it.entity_id} ` +