memory-pulse 0.1.1 → 0.1.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 (3) hide show
  1. package/README.md +4 -0
  2. package/package.json +5 -4
  3. package/server.mjs +1 -1
package/README.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # memory-pulse
2
2
 
3
+ [![npm](https://img.shields.io/npm/v/memory-pulse)](https://www.npmjs.com/package/memory-pulse)
4
+ [![license](https://img.shields.io/badge/license-MIT-6366f1)](LICENSE)
5
+ [![MCP](https://img.shields.io/badge/MCP-server-a855f7)](https://github.com/t-crew/memory-pulse)
6
+
3
7
  Causal project memory for coding agents — built for the thing MCP memory
4
8
  servers usually get wrong: **the cost of having it installed.**
5
9
 
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "memory-pulse",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Causal memory for coding agents that costs ~670 tokens, not your context window. Four MCP tools: re-enter a project, recall what caused what, record findings, run code against memory.",
5
5
  "type": "module",
6
6
  "bin": {
7
- "memory-pulse": "./server.mjs"
7
+ "memory-pulse": "server.mjs"
8
8
  },
9
9
  "files": [
10
10
  "server.mjs",
@@ -32,5 +32,6 @@
32
32
  },
33
33
  "engines": {
34
34
  "node": ">=18"
35
- }
36
- }
35
+ },
36
+ "mcpName": "io.github.t-crew/memory-pulse"
37
+ }
package/server.mjs CHANGED
@@ -187,7 +187,7 @@ async function dispatch(msg) {
187
187
  return ok(id, {
188
188
  protocolVersion: SUPPORTED.includes(wanted) ? wanted : SUPPORTED[0],
189
189
  capabilities: { tools: {} },
190
- serverInfo: { name: "memory-pulse", version: "0.1.0" },
190
+ serverInfo: { name: "memory-pulse", version: "0.1.2" },
191
191
  });
192
192
  }
193
193
  if (method === "notifications/initialized" || method === "initialized") return;