@mmnto/mcp 1.89.0 → 1.90.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/README.md +38 -0
  2. package/package.json +2 -2
package/README.md ADDED
@@ -0,0 +1,38 @@
1
+ # @mmnto/mcp
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.
4
+
5
+ ## Setup
6
+
7
+ Add it to your agent's MCP configuration (`npx` fetches it on demand):
8
+
9
+ ```json
10
+ {
11
+ "mcpServers": {
12
+ "totem": {
13
+ "command": "npx",
14
+ "args": ["-y", "@mmnto/mcp"]
15
+ }
16
+ }
17
+ }
18
+ ```
19
+
20
+ On Windows, wrap the command: `"command": "cmd", "args": ["/c", "npx", "-y", "@mmnto/mcp"]`.
21
+
22
+ Requires Node >= 24 and a Totem-initialized project (`totem init` from [`@mmnto/cli`](https://www.npmjs.com/package/@mmnto/cli)).
23
+
24
+ ## Tools
25
+
26
+ | Tool | What it does |
27
+ | ------------------ | --------------------------------------------------------------------------------------------------------- |
28
+ | `search_knowledge` | Semantic search over the project's knowledge index (code, lessons, specs, session logs) |
29
+ | `add_lesson` | Persist a lesson to `.totem/lessons/`; an incremental re-index runs automatically |
30
+ | `describe_project` | Structured JSON summary of project governance scope (rules, lessons, config tier, targets, hooks); no LLM |
31
+ | `verify_execution` | Run deterministic lint checks against current changes; returns PASS or FAIL with violations; zero LLM |
32
+
33
+ ## Docs
34
+
35
+ - Repository: <https://github.com/mmnto-ai/totem>
36
+ - Setup guide: [docs/wiki/mcp-setup.md](https://github.com/mmnto-ai/totem/blob/main/docs/wiki/mcp-setup.md)
37
+
38
+ Apache-2.0.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mmnto/mcp",
3
- "version": "1.89.0",
3
+ "version": "1.90.0",
4
4
  "description": "MCP server for Totem — AI persistent memory and context layer",
5
5
  "type": "module",
6
6
  "engines": {
@@ -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.89.0"
25
+ "@mmnto/totem": "1.90.0"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@types/node": "^22.0.0",