donguri-journal 0.1.0 → 0.1.1
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.ja.md +79 -35
- package/README.md +80 -35
- package/dist/review/charts.d.ts +4 -2
- package/dist/review/charts.js +4 -2
- package/dist/review/charts.js.map +1 -1
- package/package.json +8 -2
package/README.ja.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
[English](README.md) | **日本語**
|
|
4
4
|
|
|
5
|
+
[](https://www.npmjs.com/package/donguri-journal)
|
|
6
|
+
|
|
5
7
|
> ローカルファースト・時間軸対応の「**記憶**」MCP サーバー(AI エージェント向け)。
|
|
6
8
|
|
|
7
9
|
リスは掘り返すよりずっと多くのドングリ(donguri)を埋めます——ためらわず、ひたすら
|
|
@@ -44,49 +46,84 @@
|
|
|
44
46
|
|
|
45
47
|
## セットアップ
|
|
46
48
|
|
|
47
|
-
###
|
|
49
|
+
### インストール(推奨)
|
|
50
|
+
|
|
51
|
+
一度だけグローバルにインストールし、MCP クライアントからはそのコマンドを指すだけ。
|
|
52
|
+
**インストールは一度きり**(起動のたびに走らない)なので、どのクライアント(Claude
|
|
53
|
+
Desktop / Claude Code / Codex / Cursor …)でも即起動する、いちばん確実な方法です:
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
npm install -g donguri-journal
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
**Claude Desktop**(`claude_desktop_config.json`):
|
|
60
|
+
|
|
61
|
+
```json
|
|
62
|
+
{
|
|
63
|
+
"mcpServers": {
|
|
64
|
+
"donguri-journal": {
|
|
65
|
+
"command": "donguri-journal"
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
**Claude Code:**
|
|
72
|
+
|
|
73
|
+
```bash
|
|
74
|
+
claude mcp add donguri-journal -- donguri-journal
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
MCP クライアントを再起動してください。初回利用時に埋め込みモデルが一度だけ
|
|
78
|
+
ダウンロード・キャッシュされます(ネットワーク必要)。以降はすべてローカルで動作します。
|
|
79
|
+
|
|
80
|
+
### お試し(npx・インストール不要)
|
|
48
81
|
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
82
|
+
何もインストールせず試すなら、`npx` がその場で取得して実行します:
|
|
83
|
+
|
|
84
|
+
```json
|
|
85
|
+
{
|
|
86
|
+
"mcpServers": {
|
|
87
|
+
"donguri-journal": {
|
|
88
|
+
"command": "npx",
|
|
89
|
+
"args": ["-y", "donguri-journal"]
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
注意: **初回**起動は依存ツリー全体をダウンロードするため重く、**Windows + Claude
|
|
96
|
+
Desktop** ではクライアントの起動待ちを超えて *「Server disconnected」* になることが
|
|
97
|
+
あります。その場合は上のグローバルインストールを使ってください。`npx` は macOS/Linux や
|
|
98
|
+
CLI エージェント(Claude Code / Codex)では概ね快適です。
|
|
99
|
+
|
|
100
|
+
### AI エージェントで導入
|
|
101
|
+
|
|
102
|
+
エージェントに任せたい場合は、シェルを実行できるエージェント(例: **Claude Code** や
|
|
103
|
+
**Codex**)に下を貼り付けてください:
|
|
54
104
|
|
|
55
105
|
```text
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
"command": "node"、"args": ["<絶対パス>/dist/index.js"]:
|
|
66
|
-
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
|
|
67
|
-
Windows: %APPDATA%\Claude\claude_desktop_config.json
|
|
68
|
-
クライアントがシェルの PATH を引き継がない場合(nvm で頻発)は、"node" の代わりに
|
|
69
|
-
node バイナリの絶対パスを使う。
|
|
70
|
-
- Claude Code — 実行: claude mcp add donguri-journal -- node <絶対パス>/dist/index.js
|
|
71
|
-
5. MCP クライアントを完全に再起動するよう私に伝える。そのあと、短いテストメモを capture
|
|
72
|
-
して recall し動作確認して。初回 capture 時に埋め込みモデル(約 90 MB)が一度だけ
|
|
73
|
-
ダウンロードされる(ネットワーク必要)。以降はすべてローカルで動く。
|
|
74
|
-
|
|
75
|
-
すべて私のマシン内で完結させて。デプロイやデータの外部送信はしないで。
|
|
106
|
+
「donguri-journal」MCP サーバーを入れて。まず実行: npm install -g donguri-journal
|
|
107
|
+
そのあと、既存のサーバー設定を保ったまま、command "donguri-journal"(引数なし)で
|
|
108
|
+
私の MCP クライアントに登録して:
|
|
109
|
+
- Claude Desktop — 設定 JSON の "mcpServers" の下に追加:
|
|
110
|
+
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
|
|
111
|
+
Windows: %APPDATA%\Claude\claude_desktop_config.json
|
|
112
|
+
- Claude Code — 実行: claude mcp add donguri-journal -- donguri-journal
|
|
113
|
+
そのあとクライアントを完全に再起動するよう私に伝えて、短いテストメモを capture して
|
|
114
|
+
recall し動作確認して。
|
|
76
115
|
```
|
|
77
116
|
|
|
78
|
-
###
|
|
117
|
+
### ソースから(開発向け)
|
|
79
118
|
|
|
80
|
-
|
|
119
|
+
コントリビュートや未リリース版の実行には、チェックアウトからビルドして、ビルド済みの
|
|
120
|
+
エントリをクライアントに指定します。
|
|
81
121
|
|
|
82
122
|
```bash
|
|
83
123
|
npm ci
|
|
84
124
|
npm run build
|
|
85
125
|
```
|
|
86
126
|
|
|
87
|
-
そのうえで MCP クライアントに登録します。例(Claude Desktop の
|
|
88
|
-
`claude_desktop_config.json`):
|
|
89
|
-
|
|
90
127
|
```jsonc
|
|
91
128
|
{
|
|
92
129
|
"mcpServers": {
|
|
@@ -98,10 +135,17 @@ npm run build
|
|
|
98
135
|
}
|
|
99
136
|
```
|
|
100
137
|
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
138
|
+
MCP クライアントがシェルの `PATH` を引き継がない場合(nvm でよく起きます)は、`node` を
|
|
139
|
+
絶対パスで指定してください。例: `/home/you/.nvm/versions/node/v22.x.y/bin/node`
|
|
140
|
+
|
|
141
|
+
### 任意: PNG チャート
|
|
142
|
+
|
|
143
|
+
`generate_review` と `surface_patterns` は [`sharp`](https://www.npmjs.com/package/sharp)
|
|
144
|
+
で描画した PNG チャートを添付できます。sharp は**任意(optional)依存**で、既定では
|
|
145
|
+
インストールされません(大きなネイティブバイナリが基本インストールを重く・不安定に
|
|
146
|
+
するため)。無くても両ツールは構造化データとヒントを通常どおり返し、画像だけが省かれます。
|
|
147
|
+
チャートを有効にするには、サーバーと同じスコープに sharp を入れてください——例えば
|
|
148
|
+
グローバルインストールなら `npm install -g sharp`、ソースからなら `npm install sharp`。
|
|
105
149
|
|
|
106
150
|
### 設定
|
|
107
151
|
|
package/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
**English** | [日本語](README.ja.md)
|
|
4
4
|
|
|
5
|
+
[](https://www.npmjs.com/package/donguri-journal)
|
|
6
|
+
|
|
5
7
|
> A local-first, time-aware journaling **memory** server for AI agents, over MCP.
|
|
6
8
|
|
|
7
9
|
A squirrel buries far more acorns (*donguri*) than it ever digs back up — it hoards
|
|
@@ -45,49 +47,84 @@ open-ended part, and that's what **plugins** extend.
|
|
|
45
47
|
|
|
46
48
|
## Setup
|
|
47
49
|
|
|
48
|
-
### Install
|
|
50
|
+
### Install (recommended)
|
|
51
|
+
|
|
52
|
+
Install once, globally, then point your MCP client at the installed command. This is the
|
|
53
|
+
most reliable path — because the install happens **once** (not on every launch), the
|
|
54
|
+
server starts instantly on every client (Claude Desktop, Claude Code, Codex, Cursor, …):
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
npm install -g donguri-journal
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
**Claude Desktop** (`claude_desktop_config.json`):
|
|
61
|
+
|
|
62
|
+
```json
|
|
63
|
+
{
|
|
64
|
+
"mcpServers": {
|
|
65
|
+
"donguri-journal": {
|
|
66
|
+
"command": "donguri-journal"
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
**Claude Code:**
|
|
73
|
+
|
|
74
|
+
```bash
|
|
75
|
+
claude mcp add donguri-journal -- donguri-journal
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
Restart your MCP client. On first use the embedding model is downloaded and cached once
|
|
79
|
+
(needs network); everything else runs locally.
|
|
80
|
+
|
|
81
|
+
### Quick try (npx, zero-install)
|
|
49
82
|
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
83
|
+
To try it without installing anything, `npx` fetches and runs it on demand:
|
|
84
|
+
|
|
85
|
+
```json
|
|
86
|
+
{
|
|
87
|
+
"mcpServers": {
|
|
88
|
+
"donguri-journal": {
|
|
89
|
+
"command": "npx",
|
|
90
|
+
"args": ["-y", "donguri-journal"]
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
Caveat: the **first** launch downloads the whole dependency tree and can be slow. On
|
|
97
|
+
**Windows + Claude Desktop** it may exceed the client's startup window and show *"Server
|
|
98
|
+
disconnected"* — use the global install above there. `npx` is smooth on macOS/Linux and
|
|
99
|
+
for CLI agents (Claude Code, Codex).
|
|
100
|
+
|
|
101
|
+
### Install with an AI agent
|
|
102
|
+
|
|
103
|
+
Prefer to let an agent do it? Paste this to any agent that can run a shell on your machine
|
|
104
|
+
(e.g. **Claude Code** or **Codex**):
|
|
55
105
|
|
|
56
106
|
```text
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
"mcpServers" with "command": "node" and "args": ["<ABS_PATH>/dist/index.js"]:
|
|
67
|
-
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
|
|
68
|
-
Windows: %APPDATA%\Claude\claude_desktop_config.json
|
|
69
|
-
If the client doesn't inherit my shell PATH (common with nvm), use the absolute
|
|
70
|
-
path to the node binary instead of "node".
|
|
71
|
-
- Claude Code — run: claude mcp add donguri-journal -- node <ABS_PATH>/dist/index.js
|
|
72
|
-
5. Tell me to fully restart the MCP client. Then verify by capturing a short test note
|
|
73
|
-
and recalling it — the first capture downloads a ~90 MB embedding model once
|
|
74
|
-
(needs network), after which everything runs locally.
|
|
75
|
-
|
|
76
|
-
Keep everything on my machine: don't deploy anything or send my data anywhere.
|
|
107
|
+
Install the "donguri-journal" MCP server for me. Run: npm install -g donguri-journal
|
|
108
|
+
Then register it with my MCP client, preserving any servers already configured, as
|
|
109
|
+
command "donguri-journal" (no args):
|
|
110
|
+
- Claude Desktop — under "mcpServers" in the config JSON:
|
|
111
|
+
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
|
|
112
|
+
Windows: %APPDATA%\Claude\claude_desktop_config.json
|
|
113
|
+
- Claude Code — run: claude mcp add donguri-journal -- donguri-journal
|
|
114
|
+
Then tell me to fully restart the client, and verify by capturing a short test note and
|
|
115
|
+
recalling it.
|
|
77
116
|
```
|
|
78
117
|
|
|
79
|
-
###
|
|
118
|
+
### From source (development)
|
|
80
119
|
|
|
81
|
-
|
|
120
|
+
For contributing or running an unreleased build, build from a checkout and point your
|
|
121
|
+
client at the built entry:
|
|
82
122
|
|
|
83
123
|
```bash
|
|
84
124
|
npm ci
|
|
85
125
|
npm run build
|
|
86
126
|
```
|
|
87
127
|
|
|
88
|
-
Then register it with your MCP client. Example (Claude Desktop,
|
|
89
|
-
`claude_desktop_config.json`):
|
|
90
|
-
|
|
91
128
|
```jsonc
|
|
92
129
|
{
|
|
93
130
|
"mcpServers": {
|
|
@@ -99,10 +136,18 @@ Then register it with your MCP client. Example (Claude Desktop,
|
|
|
99
136
|
}
|
|
100
137
|
```
|
|
101
138
|
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
139
|
+
If your MCP client does not inherit your shell `PATH` (common with nvm), use an absolute
|
|
140
|
+
path to `node`, e.g. `/home/you/.nvm/versions/node/v22.x.y/bin/node`.
|
|
141
|
+
|
|
142
|
+
### Optional: PNG charts
|
|
143
|
+
|
|
144
|
+
`generate_review` and `surface_patterns` can attach a PNG chart, rendered with
|
|
145
|
+
[`sharp`](https://www.npmjs.com/package/sharp). sharp is an **optional** dependency — it
|
|
146
|
+
is not installed by default (its large native binaries would make the base install heavier
|
|
147
|
+
and less reliable). Without it, those tools return their structured data and hints as
|
|
148
|
+
usual, just no image. To enable charts, install sharp in the same scope as the server —
|
|
149
|
+
e.g. `npm install -g sharp` for a global install, or `npm install sharp` from a source
|
|
150
|
+
checkout.
|
|
106
151
|
|
|
107
152
|
### Configuration
|
|
108
153
|
|
package/dist/review/charts.d.ts
CHANGED
|
@@ -3,8 +3,10 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Reviews return rendered PNG charts (plus structured data and presentation
|
|
5
5
|
* hints) so the front-end LLM can present richly — markdown alone is not enough.
|
|
6
|
-
* sharp is
|
|
7
|
-
*
|
|
6
|
+
* sharp is an OPTIONAL peer dependency (not installed by default, to keep the
|
|
7
|
+
* base install light and reliable). It is imported lazily, so the server starts
|
|
8
|
+
* fine without it; callers fall back to data-only output if the import or render
|
|
9
|
+
* throws. Install `sharp` alongside the server to enable PNG charts.
|
|
8
10
|
*/
|
|
9
11
|
export interface BarDatum {
|
|
10
12
|
label: string;
|
package/dist/review/charts.js
CHANGED
|
@@ -3,8 +3,10 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Reviews return rendered PNG charts (plus structured data and presentation
|
|
5
5
|
* hints) so the front-end LLM can present richly — markdown alone is not enough.
|
|
6
|
-
* sharp is
|
|
7
|
-
*
|
|
6
|
+
* sharp is an OPTIONAL peer dependency (not installed by default, to keep the
|
|
7
|
+
* base install light and reliable). It is imported lazily, so the server starts
|
|
8
|
+
* fine without it; callers fall back to data-only output if the import or render
|
|
9
|
+
* throws. Install `sharp` alongside the server to enable PNG charts.
|
|
8
10
|
*/
|
|
9
11
|
const COLORS = {
|
|
10
12
|
bg: "#ffffff",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"charts.js","sourceRoot":"","sources":["../../src/review/charts.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"charts.js","sourceRoot":"","sources":["../../src/review/charts.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "donguri-journal",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Local-first, time-aware journaling memory server over MCP",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Nemutame",
|
|
@@ -49,13 +49,19 @@
|
|
|
49
49
|
"sqlite-vec": "^0.1.9",
|
|
50
50
|
"zod": "^3.23.8"
|
|
51
51
|
},
|
|
52
|
-
"
|
|
52
|
+
"peerDependencies": {
|
|
53
53
|
"sharp": "^0.32.6"
|
|
54
54
|
},
|
|
55
|
+
"peerDependenciesMeta": {
|
|
56
|
+
"sharp": {
|
|
57
|
+
"optional": true
|
|
58
|
+
}
|
|
59
|
+
},
|
|
55
60
|
"devDependencies": {
|
|
56
61
|
"@biomejs/biome": "^1.9.4",
|
|
57
62
|
"@types/better-sqlite3": "^7.6.13",
|
|
58
63
|
"@types/node": "^22.10.0",
|
|
64
|
+
"sharp": "^0.32.6",
|
|
59
65
|
"tsx": "^4.22.4",
|
|
60
66
|
"typescript": "^5.7.2"
|
|
61
67
|
}
|