memento-mcp-server 0.1.0 → 1.6.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 +7 -2
- package/package.json +4 -4
- package/scripts/auto-setup.js +1 -1
package/README.md
CHANGED
|
@@ -62,9 +62,14 @@ curl -sSL https://raw.githubusercontent.com/jee1/memento/main/install.sh | bash
|
|
|
62
62
|
# 즉시 실행 (설치 없이)
|
|
63
63
|
npx memento-mcp-server@latest dev
|
|
64
64
|
|
|
65
|
-
#
|
|
65
|
+
# MCP 서버 실행
|
|
66
|
+
npx memento-mcp-server@latest
|
|
67
|
+
|
|
68
|
+
# HTTP 서버 실행
|
|
69
|
+
npx memento-mcp-server@latest http
|
|
70
|
+
|
|
71
|
+
# 자동 설정
|
|
66
72
|
npx memento-mcp-server@latest setup
|
|
67
|
-
npx memento-mcp-server@latest start
|
|
68
73
|
```
|
|
69
74
|
|
|
70
75
|
### 🥉 **Docker 방식 (프로덕션용)**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "memento-mcp-server",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.6.0",
|
|
4
4
|
"description": "AI Agent 기억 보조 MCP 서버 - 사람의 기억 구조를 모사한 스토리지+검색+요약+망각 메커니즘",
|
|
5
5
|
"main": "dist/server.js",
|
|
6
6
|
"type": "module",
|
|
@@ -116,10 +116,10 @@
|
|
|
116
116
|
},
|
|
117
117
|
"repository": {
|
|
118
118
|
"type": "git",
|
|
119
|
-
"url": "https://github.com/
|
|
119
|
+
"url": "https://github.com/jee1/memento.git"
|
|
120
120
|
},
|
|
121
121
|
"bugs": {
|
|
122
|
-
"url": "https://github.com/
|
|
122
|
+
"url": "https://github.com/jee1/memento/issues"
|
|
123
123
|
},
|
|
124
|
-
"homepage": "https://github.com/
|
|
124
|
+
"homepage": "https://github.com/jee1/memento#readme"
|
|
125
125
|
}
|
package/scripts/auto-setup.js
CHANGED