@plures/superlocalmemory-mcp 0.2.0

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/package.json ADDED
@@ -0,0 +1,54 @@
1
+ {
2
+ "name": "@plures/superlocalmemory-mcp",
3
+ "version": "0.2.0",
4
+ "description": "MCP server for superlocalmemory — persistent vector memory for AI coding assistants",
5
+ "type": "module",
6
+ "license": "AGPL-3.0",
7
+ "author": "Plures <hello@plures.dev>",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/plures/superlocalmemory-mcp.git"
11
+ },
12
+ "keywords": [
13
+ "mcp",
14
+ "memory",
15
+ "vector-search",
16
+ "copilot",
17
+ "ai",
18
+ "local-first"
19
+ ],
20
+ "main": "./dist/index.js",
21
+ "types": "./dist/index.d.ts",
22
+ "bin": {
23
+ "superlocalmemory-mcp": "./dist/index.js"
24
+ },
25
+ "files": [
26
+ "dist",
27
+ "README.md",
28
+ "LICENSE"
29
+ ],
30
+ "scripts": {
31
+ "build": "tsc",
32
+ "start": "node dist/index.js",
33
+ "dev": "tsx src/index.ts",
34
+ "prepublishOnly": "npm run build"
35
+ },
36
+ "dependencies": {
37
+ "@modelcontextprotocol/sdk": "^1.26.0",
38
+ "zod": "^3.25.76",
39
+ "better-sqlite3": "^11.0.0",
40
+ "@huggingface/transformers": "^3.8.1"
41
+ },
42
+ "optionalDependencies": {
43
+ "openai": "^6.18.0"
44
+ },
45
+ "devDependencies": {
46
+ "typescript": "^5.7.0",
47
+ "tsx": "^4.0.0",
48
+ "@types/node": "^22.0.0",
49
+ "@types/better-sqlite3": "^7.0.0"
50
+ },
51
+ "engines": {
52
+ "node": ">=18"
53
+ }
54
+ }