forked from iampantherr/SecureContext
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.1 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.1 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "zc-ctx",
"version": "0.5.0",
"description": "Secure memory & context optimization MCP plugin for Claude Code — drop-in replacement for context-mode with credential isolation, SSRF protection, and MemGPT-style persistent memory",
"keywords": [
"claude-code",
"claude-code-plugin",
"mcp",
"mcp-server",
"context-management",
"context-window",
"context-mode",
"context-mode-alternative",
"ai-agent-memory",
"llm-memory",
"memgpt",
"hybrid-search",
"bm25",
"knowledge-base",
"session-memory",
"persistent-memory",
"anthropic",
"claude",
"secure-mcp",
"ssrf-protection",
"credential-isolation",
"zeroclaw"
],
"license": "MIT",
"type": "module",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint src --ext .ts",
"test": "vitest run"
},
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0"
},
"devDependencies": {
"@types/node": "^22.13.0",
"typescript": "^5.3.3",
"vitest": "^4.1.0"
}
}