-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 800 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 800 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "mneme",
"version": "2.11.1",
"description": "Token-efficient persistent memory for AI agents — SQLite + FTS5 + sqlite-vec hybrid search + MCP on-demand recall. Save 80-90% memory-related token costs.",
"type": "module",
"main": "index.mjs",
"scripts": {
"start": "node mcp-server.mjs",
"stats": "node index.mjs --stats"
},
"keywords": [
"mcp",
"memory",
"token-efficient",
"ai-agent",
"sqlite",
"fts5",
"sqlite-vec",
"vector-search",
"hybrid-retrieval",
"rrf",
"claude-code",
"cursor",
"windsurf",
"llm",
"on-demand-recall",
"memory-transfer-learning"
],
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"better-sqlite3": "^12.0.0",
"zod": "^3.0.0"
}
}