@pyxmate/memory 0.31.3 → 0.31.4
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 +6 -4
- package/dist/cli/pyx-mem.mjs +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -14,7 +14,7 @@ This package ships:
|
|
|
14
14
|
## Install
|
|
15
15
|
|
|
16
16
|
```bash
|
|
17
|
-
npm install -g @pyxmate/memory
|
|
17
|
+
npm install -g @pyxmate/memory@latest
|
|
18
18
|
# or, in a project:
|
|
19
19
|
npm install @pyxmate/memory
|
|
20
20
|
```
|
|
@@ -32,9 +32,11 @@ pyx-mem login
|
|
|
32
32
|
pyx-mem mcp install claude-code --scope user
|
|
33
33
|
```
|
|
34
34
|
|
|
35
|
-
Restart Claude Code. The
|
|
36
|
-
`
|
|
37
|
-
`
|
|
35
|
+
Restart Claude Code. The MCP tools are auto-discovered via MCP Tool Search:
|
|
36
|
+
`search_memories`, `store_memory`, `get_memory`, `list_memories`,
|
|
37
|
+
`delete_memory`, `ingest_memory_file`, `summarize_memory_entity`, `status`,
|
|
38
|
+
`get_user_profile`, `upsert_user_profile`, `record_correction`, and
|
|
39
|
+
`fetch_applicable_corrections`.
|
|
38
40
|
|
|
39
41
|
**That's the whole setup** — no extra server-side LLM API keys. Graph is a
|
|
40
42
|
relational retrieval dimension, not a search-score boost. When content names
|
package/dist/cli/pyx-mem.mjs
CHANGED
|
@@ -1324,7 +1324,7 @@ var ALL_TOOL_NAMES = ALL_TOOLS.map((t) => t.name);
|
|
|
1324
1324
|
// src/mcp/server.ts
|
|
1325
1325
|
async function runMcpServer(opts) {
|
|
1326
1326
|
const fetchImpl = opts.fetchImpl ?? fetch;
|
|
1327
|
-
const version = opts.version ?? (true ? "0.31.
|
|
1327
|
+
const version = opts.version ?? (true ? "0.31.4" : "0.0.0-dev");
|
|
1328
1328
|
const server = new McpServer(
|
|
1329
1329
|
{ name: "pyx-memory", version },
|
|
1330
1330
|
{ instructions: PYX_MEMORY_INSTRUCTIONS, capabilities: { tools: {} } }
|