-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.62 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "contextforge-mcp",
"version": "0.5.0",
"mcpName": "io.github.alfredoizdev/contextforge-mcp",
"description": "Persistent memory MCP server for Claude Code, Cursor, and GitHub Copilot. Give your AI assistants long-term memory via the Model Context Protocol.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"contextforge-mcp": "dist/index.js",
"contextforge-setup": "dist/setup.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src --ext .ts",
"clean": "rm -rf dist",
"mcpb": "node scripts/build-mcpb.mjs",
"prepublishOnly": "npm run clean && npm run build",
"prepack": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^22.10.5",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"memory",
"persistent-memory",
"context",
"ai",
"claude",
"claude-code",
"cursor",
"copilot",
"knowledge-management",
"ai-agent-memory"
],
"author": "Alfredo Izquierdo",
"license": "MIT",
"homepage": "https://contextforge.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/alfredoizdev/contextforge-mcp.git"
},
"bugs": {
"url": "https://github.com/alfredoizdev/contextforge-mcp/issues"
}
}