@memoryrelay/mcp-server 0.1.9 → 0.3.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/README.md +68 -134
- package/dist/chunk-P6TZEH6O.js +796 -0
- package/dist/chunk-P6TZEH6O.js.map +1 -0
- package/dist/cli/setup.d.ts +12 -0
- package/dist/cli/setup.js +243 -0
- package/dist/cli/setup.js.map +1 -0
- package/dist/cli/test.d.ts +10 -0
- package/dist/cli/test.js +80 -0
- package/dist/cli/test.js.map +1 -0
- package/dist/index.js +1439 -649
- package/dist/index.js.map +1 -1
- package/docs/OPENCLAW_GUIDE.md +264 -0
- package/docs/SECURITY.md +1 -1
- package/package.json +7 -4
package/docs/SECURITY.md
CHANGED
|
@@ -368,7 +368,7 @@ If you discover a security vulnerability:
|
|
|
368
368
|
Monitor for security updates:
|
|
369
369
|
|
|
370
370
|
- **GitHub Releases**: https://github.com/memoryrelay/mcp-server/releases
|
|
371
|
-
- **npm Security Advisories**: `npm audit` in the
|
|
371
|
+
- **npm Security Advisories**: `npm audit` in the `mcp/` directory
|
|
372
372
|
- **Dependencies**: Regularly run `npm update` and `npm audit fix`
|
|
373
373
|
|
|
374
374
|
### Known Limitations
|
package/package.json
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@memoryrelay/mcp-server",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "MCP server for MemoryRelay - persistent memory for AI agents",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"bin": {
|
|
9
|
-
"memoryrelay-mcp
|
|
10
|
-
"mcp-server": "dist/index.js"
|
|
9
|
+
"memoryrelay-mcp": "dist/index.js"
|
|
11
10
|
},
|
|
12
11
|
"files": [
|
|
13
12
|
"dist",
|
|
@@ -25,7 +24,8 @@
|
|
|
25
24
|
"test:all": "npm test && npm run test:integration",
|
|
26
25
|
"test:coverage": "vitest run --coverage",
|
|
27
26
|
"type-check": "tsc --noEmit",
|
|
28
|
-
"lint": "
|
|
27
|
+
"lint": "eslint src/",
|
|
28
|
+
"lint:fix": "eslint src/ --fix",
|
|
29
29
|
"prepublishOnly": "npm run build"
|
|
30
30
|
},
|
|
31
31
|
"keywords": [
|
|
@@ -59,9 +59,12 @@
|
|
|
59
59
|
"zod": "^3.25.0"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
|
+
"@eslint/js": "^10.0.1",
|
|
62
63
|
"@types/node": "^22.0.0",
|
|
64
|
+
"eslint": "^10.0.2",
|
|
63
65
|
"tsup": "^8.0.0",
|
|
64
66
|
"typescript": "^5.4.0",
|
|
67
|
+
"typescript-eslint": "^8.56.1",
|
|
65
68
|
"vitest": "^3.0.0"
|
|
66
69
|
},
|
|
67
70
|
"engines": {
|