midas-memory-mcp 0.0.4 → 0.1.1

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
@@ -61,5 +61,5 @@ Node **>= 22.5** (uses the built-in `node:sqlite`; you may see its experimental
61
61
  npm test # builds + runs the suite, including the Python-parity fixture
62
62
  ```
63
63
 
64
- MIT — same license, same repo, same [PRIVACY.md](../../PRIVACY.md) posture: everything stays on
65
- your machine.
64
+ Apache-2.0 — same license, same repo, same [PRIVACY.md](../../PRIVACY.md) posture: everything stays
65
+ on your machine.
package/dist/mcp.js CHANGED
@@ -69,7 +69,8 @@ function text(data) {
69
69
  return { content: [{ type: "text", text: data }] };
70
70
  }
71
71
  export function createServer() {
72
- const server = new McpServer({ name: "midas-memory", version: "0.0.3" }, { instructions: AGENT_MEMORY_INSTRUCTIONS });
72
+ const server = new McpServer({ name: "midas-memory", version: "0.0.4" }, // keep in sync with package.json on each release
73
+ { instructions: AGENT_MEMORY_INSTRUCTIONS });
73
74
  server.registerTool("remember", {
74
75
  title: "Remember",
75
76
  description: "Store a memory for later recall. kind: note | chat | fact | preference | constraint | mission. " +
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "midas-memory-mcp",
3
- "version": "0.0.4",
4
- "description": "Midas \u2014 local-first, source-traceable agent memory over MCP (TypeScript port, experimental). No LLM at ingest or query.",
5
- "license": "MIT",
3
+ "version": "0.1.1",
4
+ "description": "Midas local-first, source-traceable agent memory over MCP (TypeScript port, experimental). No LLM at ingest or query.",
5
+ "license": "Apache-2.0",
6
6
  "type": "module",
7
7
  "engines": {
8
8
  "node": ">=22.5"
@@ -40,4 +40,4 @@
40
40
  "typescript": "^5.5.0",
41
41
  "@types/node": "^22.0.0"
42
42
  }
43
- }
43
+ }