memoryai-mcp 0.2.1 → 0.4.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.
Files changed (2) hide show
  1. package/README.md +19 -10
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -1,8 +1,15 @@
1
1
  # memoryai-mcp
2
2
 
3
- MCP server for [MemoryAI](https://memoryai.dev) — persistent AI memory as a service.
3
+ MCP server for [MemoryAI](https://memoryai.dev) — a brain for your AI agent.
4
4
 
5
- Gives your IDE agent long-term memory that persists across sessions.
5
+ Gives your IDE agent long-term memory that persists across sessions. Memories are processed through 4 stages, just like the human brain:
6
+
7
+ - ⚡ **Instant Recall** — What's on the tip of your tongue. Always ready.
8
+ - 🔍 **Deep Search** — Scans memory by meaning, not just keywords.
9
+ - 🧠 **Reasoning** — Connects the dots across memories, synthesizes precise answers. *(Pro)*
10
+ - 📦 **Archive** — Compressed long-term storage. Nothing truly forgotten.
11
+
12
+ The more you recall a memory, the stronger it gets. Unused ones gently age — but can always be recovered.
6
13
 
7
14
  ## Install
8
15
 
@@ -120,18 +127,18 @@ mcp:
120
127
 
121
128
  | Tool | Description |
122
129
  |------|-------------|
123
- | `memory_bootstrap` | Load context block at session start |
130
+ | `memory_bootstrap` | Load context at session start — wake up with full memory |
124
131
  | `memory_store` | Store information in persistent memory |
125
132
  | `memory_recall` | Search memories by semantic query |
126
- | `memory_compact` | Compact text into memory chunks |
127
- | `memory_recover` | Recover session context after break |
128
- | `memory_health` | Check context window health |
129
- | `memory_explore` | Explore memory connections (neural graph) |
133
+ | `memory_compact` | Consolidate context into key memories (like brain during sleep) |
134
+ | `memory_recover` | Recover session context after a break |
135
+ | `memory_health` | Check how full your working memory is |
136
+ | `memory_explore` | Explore connections between memories |
130
137
  | `memory_clusters` | View topic clusters |
131
138
  | `learn` | Store action + result + lesson |
132
- | `entity_list` | List tracked entities |
133
- | `reasoning_store/recall` | Deep reasoning banks (Pro+) |
134
- | `snapshot_create/restore` | Backup and restore memory |
139
+ | `entity_list` | List tracked entities (files, people, packages) |
140
+ | `reasoning_store/recall` | Deep reasoning memory (Pro+) |
141
+ | `snapshot_create/restore` | Backup and restore memory state |
135
142
 
136
143
  ## Auto-Bootstrap
137
144
 
@@ -151,6 +158,8 @@ curl -X POST https://memoryai.dev/v1/admin/provision \
151
158
  -d '{"name": "my-agent", "tos_accepted": true}'
152
159
  ```
153
160
 
161
+ Or visit https://memoryai.dev to create one instantly.
162
+
154
163
  ## Links
155
164
 
156
165
  - Website: https://memoryai.dev
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "memoryai-mcp",
3
- "version": "0.2.1",
4
- "description": "MCP server for MemoryAI — persistent AI memory as a service",
3
+ "version": "0.4.1",
4
+ "description": "MCP server for MemoryAI — a brain for your AI agent",
5
5
  "homepage": "https://memoryai.dev",
6
6
  "repository": {
7
7
  "type": "git",
@@ -10,7 +10,7 @@
10
10
  "type": "module",
11
11
  "main": "dist/index.js",
12
12
  "bin": {
13
- "memoryai-mcp": "./dist/index.js"
13
+ "memoryai-mcp": "dist/index.js"
14
14
  },
15
15
  "scripts": {
16
16
  "build": "tsc",