@mmnto/mcp 1.95.0 → 1.97.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/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @mmnto/mcp
2
2
 
3
- MCP (Model Context Protocol) server for [Totem](https://github.com/mmnto-ai/totem), a persistent memory and context layer for AI coding agents. A stdio-based server that exposes a Totem project's knowledge index to any MCP-compatible agent. Installs the `totem-mcp` binary.
3
+ MCP (Model Context Protocol) server for [Totem](https://github.com/mmnto-ai/totem) a local-first, file-anchored substrate that makes AI-agent work queryable, enforceable, and derivable in your codebase. A stdio-based server that exposes a Totem project's knowledge index to MCP-compatible agents. Installs the `totem-mcp` binary.
4
4
 
5
5
  ## Setup
6
6
 
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=description.test.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"description.test.d.ts","sourceRoot":"","sources":["../src/description.test.ts"],"names":[],"mappings":""}
@@ -0,0 +1,16 @@
1
+ import { readFileSync } from 'node:fs';
2
+ import { describe, expect, it } from 'vitest';
3
+ // Family parity with the CLI's single-sourced self-description (mmnto-ai/totem#2336 D1,
4
+ // pattern from mmnto-ai/totem#2349): every published @mmnto package carries the ruled
5
+ // descriptive core and never regresses to the retired category label.
6
+ describe('package self-description parity (mmnto-ai/totem#2336 D1 family alignment)', () => {
7
+ it('package.json description carries the ruled descriptive core', () => {
8
+ const pkgUrl = new URL('../package.json', import.meta.url);
9
+ const pkg = JSON.parse(readFileSync(pkgUrl, 'utf-8'));
10
+ expect(pkg.name).toBe('@mmnto/mcp');
11
+ expect(pkg.description).toContain('a local-first, file-anchored substrate that makes AI-agent work queryable, enforceable, and derivable in your codebase');
12
+ // Guards against a regression to the retired category.
13
+ expect(pkg.description).not.toContain('persistent memory and context layer');
14
+ });
15
+ });
16
+ //# sourceMappingURL=description.test.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"description.test.js","sourceRoot":"","sources":["../src/description.test.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AAEvC,OAAO,EAAE,QAAQ,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,QAAQ,CAAC;AAE9C,wFAAwF;AACxF,sFAAsF;AACtF,sEAAsE;AACtE,QAAQ,CAAC,2EAA2E,EAAE,GAAG,EAAE;IACzF,EAAE,CAAC,6DAA6D,EAAE,GAAG,EAAE;QACrE,MAAM,MAAM,GAAG,IAAI,GAAG,CAAC,iBAAiB,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;QAC3D,MAAM,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,YAAY,CAAC,MAAM,EAAE,OAAO,CAAC,CAGnD,CAAC;QACF,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;QACpC,MAAM,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC,SAAS,CAC/B,wHAAwH,CACzH,CAAC;QACF,uDAAuD;QACvD,MAAM,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC,GAAG,CAAC,SAAS,CAAC,qCAAqC,CAAC,CAAC;IAC/E,CAAC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mmnto/mcp",
3
- "version": "1.95.0",
4
- "description": "MCP server for Totem — AI persistent memory and context layer",
3
+ "version": "1.97.0",
4
+ "description": "MCP server for Totem — a local-first, file-anchored substrate that makes AI-agent work queryable, enforceable, and derivable in your codebase",
5
5
  "type": "module",
6
6
  "engines": {
7
7
  "node": ">=24"
@@ -22,7 +22,7 @@
22
22
  "dotenv": "^16.4.0",
23
23
  "jiti": "^2.4.0",
24
24
  "zod": "^3.24.0",
25
- "@mmnto/totem": "1.95.0"
25
+ "@mmnto/totem": "1.97.0"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@types/node": "^22.0.0",