@iwo-szapar/data-mcp 0.3.0 → 0.3.2

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 ADDED
@@ -0,0 +1,286 @@
1
+ # @iwo-szapar/data-mcp
2
+
3
+ Unified data MCP server for [Second Brain](https://iwoszapar.com/second-brain-ai). One MCP, two backends: PocketBase (local, free) or Supabase (cloud, multi-device).
4
+
5
+ 40 tools across knowledge, sessions, goals, tasks, contacts, CRM prospects, blog, email queue, and content calendar. Used in production by Second Brain v2 customers.
6
+
7
+ ---
8
+
9
+ ## Install
10
+
11
+ ```bash
12
+ npm install -g @iwo-szapar/data-mcp
13
+ # or run on demand
14
+ npx @iwo-szapar/data-mcp
15
+ ```
16
+
17
+ Requires Node.js `>=20`.
18
+
19
+ ---
20
+
21
+ ## Quick start — PocketBase (local)
22
+
23
+ PocketBase runs on your laptop. Good for single-device workflows. Stops when you close the terminal.
24
+
25
+ 1. **Install PocketBase** ([pocketbase.io](https://pocketbase.io)) and start it:
26
+
27
+ ```bash
28
+ ./pocketbase serve
29
+ # Admin UI: http://127.0.0.1:8090/_/
30
+ ```
31
+
32
+ 2. **Create an admin account** via the Admin UI on first run.
33
+
34
+ 3. **Apply the schema migrations** (required — the MCP does NOT apply them automatically):
35
+
36
+ Copy the files in `migrations/pocketbase/` (shipped with this package) into your PocketBase instance's `pb_migrations/` directory, then run:
37
+
38
+ ```bash
39
+ ./pocketbase migrate up
40
+ ```
41
+
42
+ This creates all 14 collections (`knowledge`, `decisions`, `sessions`, `goals`, `tasks`, `contacts`, `entity_aliases`, `settings`, `prospects`, `blog_posts`, `email_queue`, `content_calendar`, `newsletter_subscribers`, `affiliates`).
43
+
44
+ 4. **Configure your MCP client** (Claude Code, Claude Desktop, Cursor, etc.):
45
+
46
+ ```json
47
+ {
48
+ "mcpServers": {
49
+ "data-mcp": {
50
+ "command": "npx",
51
+ "args": ["-y", "@iwo-szapar/data-mcp"],
52
+ "env": {
53
+ "SB_BACKEND": "pocketbase",
54
+ "SB_POCKETBASE_URL": "http://127.0.0.1:8090",
55
+ "SB_POCKETBASE_ADMIN_EMAIL": "you@example.com",
56
+ "SB_POCKETBASE_ADMIN_PASSWORD": "your-admin-password"
57
+ }
58
+ }
59
+ }
60
+ }
61
+ ```
62
+
63
+ 5. **Verify**: in your MCP client, call the `setup_status` tool. It reports which collections exist and flags any missing ones.
64
+
65
+ ---
66
+
67
+ ## Quick start — Supabase (cloud, multi-device)
68
+
69
+ Supabase is a hosted Postgres. Runs 24/7, reachable from any device. Good for multi-device setups and phone-friendly workflows.
70
+
71
+ 1. **Create a Supabase project** at [supabase.com](https://supabase.com). Note the Project URL and `service_role` key (Settings → API).
72
+
73
+ 2. **Apply the SQL migrations** via the SQL editor or the Supabase CLI:
74
+
75
+ ```bash
76
+ # Using the Supabase CLI
77
+ for f in migrations/supabase/*.sql; do
78
+ psql "$SUPABASE_DB_URL" -f "$f"
79
+ done
80
+ ```
81
+
82
+ Apply them in order `001` through `010`. The MCP does NOT apply them automatically.
83
+
84
+ 3. **Configure your MCP client**:
85
+
86
+ ```json
87
+ {
88
+ "mcpServers": {
89
+ "data-mcp": {
90
+ "command": "npx",
91
+ "args": ["-y", "@iwo-szapar/data-mcp"],
92
+ "env": {
93
+ "SB_BACKEND": "supabase",
94
+ "SB_SUPABASE_URL": "https://YOUR_PROJECT.supabase.co",
95
+ "SB_SUPABASE_KEY": "your-service-role-key"
96
+ }
97
+ }
98
+ }
99
+ }
100
+ ```
101
+
102
+ Use the `service_role` key, not `anon`. The MCP needs full access.
103
+
104
+ 4. **Verify** with `setup_status`.
105
+
106
+ ---
107
+
108
+ ## Environment variables
109
+
110
+ | Variable | Required | Applies to | Description |
111
+ |---|---|---|---|
112
+ | `SB_BACKEND` | yes | both | `pocketbase` or `supabase` |
113
+ | `SB_POCKETBASE_URL` | yes (PB) | pocketbase | e.g. `http://127.0.0.1:8090` |
114
+ | `SB_POCKETBASE_ADMIN_EMAIL` | yes (PB) | pocketbase | PocketBase admin email |
115
+ | `SB_POCKETBASE_ADMIN_PASSWORD` | yes (PB) | pocketbase | PocketBase admin password |
116
+ | `SB_SUPABASE_URL` | yes (SB) | supabase | Project URL |
117
+ | `SB_SUPABASE_KEY` | yes (SB) | supabase | `service_role` key |
118
+ | `SB_SCHEMA_MAP` | no | both | JSON object mapping logical names to real table names (e.g. `{"prospects":"my_leads"}`) |
119
+ | `SB_RESEND_API_KEY` | no | both | Resend key for email tooling (optional) |
120
+
121
+ Missing any required var on startup → the server exits with `Missing required environment variable: SB_XXX`.
122
+
123
+ ---
124
+
125
+ ## Tool reference (40 tools)
126
+
127
+ All tools return JSON. Every tool uses *graceful degradation*: if the required table doesn't exist, the tool returns a clear error asking you to apply migrations instead of crashing.
128
+
129
+ ### Knowledge (8)
130
+
131
+ | Tool | Purpose |
132
+ |---|---|
133
+ | `knowledge_store` | Store a fact / pattern / insight / lesson / reference. Dedup by `(type, title)`. |
134
+ | `knowledge_recall` | Search knowledge by query, tags, or type. |
135
+ | `knowledge_learn` | Shortcut for storing a `lesson`. |
136
+ | `knowledge_decide` | Record a decision with context, options, chosen option, and rationale (writes to `decisions`). |
137
+ | `knowledge_validate` | Mark an item as freshly validated (resets `last_validated_at`). |
138
+ | `knowledge_update` | Update title / content / tags on an existing item. |
139
+ | `knowledge_delete` | Delete a knowledge item by ID. |
140
+ | `knowledge_list` | List or filter knowledge items. |
141
+
142
+ ### Sessions (2)
143
+
144
+ | Tool | Purpose |
145
+ |---|---|
146
+ | `session_log` | Log a completed work session with skills used, files changed, decisions made. |
147
+ | `session_list` | List recent sessions. |
148
+
149
+ ### Goals (3)
150
+
151
+ | Tool | Purpose |
152
+ |---|---|
153
+ | `goal_create` / `goal_update` / `goal_list` | Track goals with key results. |
154
+
155
+ ### Tasks (3)
156
+
157
+ | Tool | Purpose |
158
+ |---|---|
159
+ | `task_create` / `task_update` / `task_list` | Task management with status and priority. |
160
+
161
+ ### Contacts (4)
162
+
163
+ | Tool | Purpose |
164
+ |---|---|
165
+ | `contact_create` / `contact_update` / `contact_list` / `contact_search` | Contact records with relationship type and tags. |
166
+
167
+ ### Brain health (2)
168
+
169
+ | Tool | Purpose |
170
+ |---|---|
171
+ | `brain_stats` | Aggregate counts across collections and knowledge-type distribution. |
172
+ | `brain_decay` | Find stale knowledge items (not validated recently). |
173
+
174
+ ### Knowledge links (4)
175
+
176
+ | Tool | Purpose |
177
+ |---|---|
178
+ | `link_create` / `link_delete` / `link_related` / `link_suggest` | Graph-lite relationships between knowledge items. |
179
+
180
+ ### Setup (3)
181
+
182
+ | Tool | Purpose |
183
+ |---|---|
184
+ | `setup_status` | Report which collections exist. **Run this first** after installation. |
185
+ | `setup_migrate` | **Reports** missing collections and points to the migration files. Does **not** apply migrations automatically — you must run them via PocketBase CLI or `psql`. |
186
+ | `setup_seed` | Load seed data (e.g. `entity_aliases` for search). |
187
+
188
+ ### CRM prospects (4)
189
+
190
+ | Tool | Purpose |
191
+ |---|---|
192
+ | `prospect_create` / `prospect_update` / `prospect_list` / `prospect_search` | Sales pipeline. Stages: `new → contacted → responded → interested → ready_to_buy → proposal_sent → negotiating → closed_won / closed_lost / nurturing`. |
193
+
194
+ ### Blog (4)
195
+
196
+ | Tool | Purpose |
197
+ |---|---|
198
+ | `blog_create` / `blog_update` / `blog_list` / `blog_delete` | Blog post content management. |
199
+
200
+ ### Email + content queues (3)
201
+
202
+ | Tool | Purpose |
203
+ |---|---|
204
+ | `email_queue_add` | Queue an email (does NOT send — sending is done out-of-band). |
205
+ | `content_queue_add` / `content_queue_list` | Content calendar for scheduled posts. |
206
+
207
+ ---
208
+
209
+ ## Common failures (and how to recover)
210
+
211
+ ### "The 'X' table does not exist yet. Run setup_migrate to create the database schema."
212
+
213
+ **What it means:** The collection backing this tool hasn't been created.
214
+
215
+ **Fix:** `setup_migrate` only *reports* missing tables — it does not apply them. You need to run the actual migrations:
216
+
217
+ - **PocketBase:** `./pocketbase migrate up` (after copying the files in `migrations/pocketbase/` into your `pb_migrations/` directory).
218
+ - **Supabase:** run each file in `migrations/supabase/` in order via the SQL editor or `psql`.
219
+
220
+ Then call `setup_status` to confirm.
221
+
222
+ ### "Only knowledge tools work, everything else fails"
223
+
224
+ **Symptom:** `knowledge_store` and `knowledge_recall` succeed but `goal_create`, `task_create`, `contact_create` all return the "table does not exist" error.
225
+
226
+ **Cause:** You applied only the first migration (`001_core_schema`) which creates `knowledge`, `decisions`, and `sessions`. The rest of the collections come from migrations `002` through `010` (Supabase) or `002` through `008` (PocketBase).
227
+
228
+ **Fix:** Apply all migrations in order.
229
+
230
+ ### PocketBase disconnects between terminal sessions
231
+
232
+ **Cause:** `pocketbase serve` runs in the foreground. When you close the terminal, the server stops.
233
+
234
+ **Fix options:**
235
+ - Run PocketBase under a process manager (pm2, forever) or a launchd plist on macOS.
236
+ - Switch to the Supabase backend — it runs 24/7 in the cloud.
237
+
238
+ ### MCP server disconnected after Claude Code restart
239
+
240
+ **Cause:** Your MCP client is not reading the server config on startup, or the `npx -y` download got interrupted.
241
+
242
+ **Fix:** Install globally once (`npm install -g @iwo-szapar/data-mcp`) and point `command` at `data-mcp` instead of `npx`. Restart your MCP client.
243
+
244
+ ### "Database authentication failed"
245
+
246
+ **PocketBase:** check `SB_POCKETBASE_ADMIN_EMAIL` / `PASSWORD` match an admin account in the Admin UI.
247
+
248
+ **Supabase:** confirm you are using the `service_role` key, not `anon`. The anon key does not have write access to these tables.
249
+
250
+ ---
251
+
252
+ ## Schema mapping (optional)
253
+
254
+ If your real tables have different names, set `SB_SCHEMA_MAP` to a JSON object:
255
+
256
+ ```bash
257
+ SB_SCHEMA_MAP='{"prospects":"sales_leads","contacts":"people"}'
258
+ ```
259
+
260
+ Logical names used by the tools (`prospects`, `contacts`, etc.) are transparently rewritten to your real table names. Empty keys or missing keys pass through unchanged.
261
+
262
+ ---
263
+
264
+ ## File layout
265
+
266
+ ```
267
+ dist/ compiled JS (entry: dist/index.js)
268
+ migrations/
269
+ pocketbase/ *.js migration files (PocketBase migrate format)
270
+ supabase/ *.sql migration files (run in order)
271
+ seed/ seed data (entity_aliases.json, etc.)
272
+ ```
273
+
274
+ The published package ships `dist/`, `migrations/`, `seed/`.
275
+
276
+ ---
277
+
278
+ ## License
279
+
280
+ MIT
281
+
282
+ ---
283
+
284
+ ## Support
285
+
286
+ This package is maintained by [Iwo Szapar](https://iwoszapar.com) as part of the Second Brain ecosystem. For issues specific to Second Brain v2 customers, reply to your purchase confirmation email. For general bugs, open an issue against the package on npm.
package/dist/server.js CHANGED
@@ -29,8 +29,8 @@ const SERVER_INSTRUCTIONS = `You are the user's AI Second Brain data layer. This
29
29
  - Use setup_status to check database readiness`;
30
30
  export function createServer(adapter) {
31
31
  const server = new McpServer({
32
- name: '@second-brain/data-mcp',
33
- version: '0.1.0',
32
+ name: '@iwo-szapar/data-mcp',
33
+ version: '0.3.2',
34
34
  }, {
35
35
  instructions: SERVER_INSTRUCTIONS,
36
36
  });
@@ -2,24 +2,26 @@
2
2
  * PocketBase Migration 001: Core schema
3
3
  *
4
4
  * Creates knowledge, decisions, sessions collections.
5
+ * PocketBase v0.23+ field format.
5
6
  */
6
7
 
7
8
  /// <reference path="../pb_data/types.d.ts" />
8
9
 
9
10
  migrate((app) => {
10
- // knowledge collection
11
11
  const knowledge = new Collection({
12
12
  name: 'knowledge',
13
13
  type: 'base',
14
- schema: [
15
- { name: 'type', type: 'select', required: true, options: { values: ['fact', 'knowledge', 'pattern', 'insight', 'lesson', 'reference'] } },
16
- { name: 'title', type: 'text', required: true, options: { maxSize: 500 } },
17
- { name: 'content', type: 'editor', required: true, options: { maxSize: 50000 } },
18
- { name: 'summary', type: 'text', options: { maxSize: 2000 } },
14
+ fields: [
15
+ { name: 'type', type: 'select', required: true, maxSelect: 1, values: ['fact', 'knowledge', 'pattern', 'insight', 'lesson', 'reference'] },
16
+ { name: 'title', type: 'text', required: true, max: 500 },
17
+ { name: 'content', type: 'editor', required: true, maxSize: 50000 },
18
+ { name: 'summary', type: 'text', max: 2000 },
19
19
  { name: 'tags', type: 'json' },
20
- { name: 'source', type: 'text', options: { maxSize: 500 } },
21
- { name: 'confidence', type: 'number', options: { min: 0, max: 1 } },
20
+ { name: 'source', type: 'text', max: 500 },
21
+ { name: 'confidence', type: 'number', min: 0, max: 1 },
22
22
  { name: 'last_validated_at', type: 'date' },
23
+ { name: 'created', type: 'autodate', onCreate: true },
24
+ { name: 'updated', type: 'autodate', onCreate: true, onUpdate: true },
23
25
  ],
24
26
  indexes: [
25
27
  'CREATE INDEX idx_knowledge_type ON knowledge (type)',
@@ -28,45 +30,47 @@ migrate((app) => {
28
30
  });
29
31
  app.save(knowledge);
30
32
 
31
- // decisions collection
32
33
  const decisions = new Collection({
33
34
  name: 'decisions',
34
35
  type: 'base',
35
- schema: [
36
- { name: 'title', type: 'text', required: true, options: { maxSize: 500 } },
37
- { name: 'context', type: 'editor', options: { maxSize: 5000 } },
36
+ fields: [
37
+ { name: 'title', type: 'text', required: true, max: 500 },
38
+ { name: 'context', type: 'editor', maxSize: 5000 },
38
39
  { name: 'options_considered', type: 'json', required: true },
39
- { name: 'chosen_option', type: 'text', required: true, options: { maxSize: 500 } },
40
- { name: 'rationale', type: 'editor', options: { maxSize: 5000 } },
41
- { name: 'outcome', type: 'editor', options: { maxSize: 5000 } },
40
+ { name: 'chosen_option', type: 'text', required: true, max: 500 },
41
+ { name: 'rationale', type: 'editor', maxSize: 5000 },
42
+ { name: 'outcome', type: 'editor', maxSize: 5000 },
42
43
  { name: 'tags', type: 'json' },
44
+ { name: 'created', type: 'autodate', onCreate: true },
45
+ { name: 'updated', type: 'autodate', onCreate: true, onUpdate: true },
43
46
  ],
44
47
  });
45
48
  app.save(decisions);
46
49
 
47
- // sessions collection
48
50
  const sessions = new Collection({
49
51
  name: 'sessions',
50
52
  type: 'base',
51
- schema: [
52
- { name: 'title', type: 'text', required: true, options: { maxSize: 500 } },
53
- { name: 'summary', type: 'editor', required: true, options: { maxSize: 10000 } },
53
+ fields: [
54
+ { name: 'title', type: 'text', required: true, max: 500 },
55
+ { name: 'summary', type: 'editor', required: true, maxSize: 10000 },
54
56
  { name: 'session_date', type: 'date' },
55
57
  { name: 'skills_used', type: 'json' },
56
58
  { name: 'files_changed', type: 'json' },
57
59
  { name: 'decisions_made', type: 'json' },
58
60
  { name: 'duration_minutes', type: 'number' },
59
- { name: 'task_id', type: 'text', options: { maxSize: 100 } },
60
- { name: 'branch', type: 'text', options: { maxSize: 200 } },
61
+ { name: 'task_id', type: 'text', max: 100 },
62
+ { name: 'branch', type: 'text', max: 200 },
61
63
  { name: 'patterns_learned', type: 'json' },
62
64
  { name: 'knowledge_created', type: 'number' },
63
65
  { name: 'knowledge_updated', type: 'number' },
64
66
  { name: 'metadata', type: 'json' },
67
+ { name: 'created', type: 'autodate', onCreate: true },
68
+ { name: 'updated', type: 'autodate', onCreate: true, onUpdate: true },
65
69
  ],
66
70
  });
67
71
  app.save(sessions);
68
72
  }, (app) => {
69
- app.delete(app.findCollectionByNameOrId('sessions'));
70
- app.delete(app.findCollectionByNameOrId('decisions'));
71
- app.delete(app.findCollectionByNameOrId('knowledge'));
73
+ const c1 = app.findCollectionByNameOrId('sessions'); if (c1) app.delete(c1);
74
+ const c2 = app.findCollectionByNameOrId('decisions'); if (c2) app.delete(c2);
75
+ const c3 = app.findCollectionByNameOrId('knowledge'); if (c3) app.delete(c3);
72
76
  });
@@ -1,21 +1,23 @@
1
1
  /**
2
2
  * PocketBase Migration 002: Goals and tasks
3
+ * PocketBase v0.23+ field format.
3
4
  */
4
5
 
5
6
  /// <reference path="../pb_data/types.d.ts" />
6
7
 
7
8
  migrate((app) => {
8
- // goals collection
9
9
  const goals = new Collection({
10
10
  name: 'goals',
11
11
  type: 'base',
12
- schema: [
13
- { name: 'title', type: 'text', required: true, options: { maxSize: 500 } },
14
- { name: 'description', type: 'editor', options: { maxSize: 5000 } },
15
- { name: 'timeframe', type: 'select', required: true, options: { values: ['daily', 'weekly', 'monthly', 'quarterly', 'yearly'] } },
16
- { name: 'status', type: 'select', required: true, options: { values: ['active', 'completed', 'paused', 'abandoned'] } },
12
+ fields: [
13
+ { name: 'title', type: 'text', required: true, max: 500 },
14
+ { name: 'description', type: 'editor', maxSize: 5000 },
15
+ { name: 'timeframe', type: 'select', required: true, maxSelect: 1, values: ['daily', 'weekly', 'monthly', 'quarterly', 'yearly'] },
16
+ { name: 'status', type: 'select', required: true, maxSelect: 1, values: ['active', 'completed', 'paused', 'abandoned'] },
17
17
  { name: 'key_results', type: 'json' },
18
18
  { name: 'tags', type: 'json' },
19
+ { name: 'created', type: 'autodate', onCreate: true },
20
+ { name: 'updated', type: 'autodate', onCreate: true, onUpdate: true },
19
21
  ],
20
22
  indexes: [
21
23
  'CREATE INDEX idx_goals_status ON goals (status)',
@@ -24,18 +26,19 @@ migrate((app) => {
24
26
  });
25
27
  app.save(goals);
26
28
 
27
- // tasks collection
28
29
  const tasks = new Collection({
29
30
  name: 'tasks',
30
31
  type: 'base',
31
- schema: [
32
- { name: 'title', type: 'text', required: true, options: { maxSize: 500 } },
33
- { name: 'description', type: 'editor', options: { maxSize: 5000 } },
34
- { name: 'status', type: 'select', required: true, options: { values: ['todo', 'in_progress', 'done', 'cancelled'] } },
35
- { name: 'priority', type: 'select', required: true, options: { values: ['low', 'medium', 'high', 'urgent'] } },
32
+ fields: [
33
+ { name: 'title', type: 'text', required: true, max: 500 },
34
+ { name: 'description', type: 'editor', maxSize: 5000 },
35
+ { name: 'status', type: 'select', required: true, maxSelect: 1, values: ['todo', 'in_progress', 'done', 'cancelled'] },
36
+ { name: 'priority', type: 'select', required: true, maxSelect: 1, values: ['low', 'medium', 'high', 'urgent'] },
36
37
  { name: 'due_date', type: 'date' },
37
38
  { name: 'tags', type: 'json' },
38
- { name: 'goal_id', type: 'text', options: { maxSize: 100 } },
39
+ { name: 'goal_id', type: 'text', max: 100 },
40
+ { name: 'created', type: 'autodate', onCreate: true },
41
+ { name: 'updated', type: 'autodate', onCreate: true, onUpdate: true },
39
42
  ],
40
43
  indexes: [
41
44
  'CREATE INDEX idx_tasks_status ON tasks (status)',
@@ -44,6 +47,6 @@ migrate((app) => {
44
47
  });
45
48
  app.save(tasks);
46
49
  }, (app) => {
47
- app.delete(app.findCollectionByNameOrId('tasks'));
48
- app.delete(app.findCollectionByNameOrId('goals'));
50
+ const t = app.findCollectionByNameOrId('tasks'); if (t) app.delete(t);
51
+ const g = app.findCollectionByNameOrId('goals'); if (g) app.delete(g);
49
52
  });
@@ -1,5 +1,6 @@
1
1
  /**
2
2
  * PocketBase Migration 003: Contacts
3
+ * PocketBase v0.23+ field format.
3
4
  */
4
5
 
5
6
  /// <reference path="../pb_data/types.d.ts" />
@@ -8,16 +9,18 @@ migrate((app) => {
8
9
  const contacts = new Collection({
9
10
  name: 'contacts',
10
11
  type: 'base',
11
- schema: [
12
- { name: 'name', type: 'text', required: true, options: { maxSize: 200 } },
13
- { name: 'company', type: 'text', options: { maxSize: 200 } },
14
- { name: 'role', type: 'text', options: { maxSize: 200 } },
15
- { name: 'email', type: 'email', options: { maxSize: 200 } },
16
- { name: 'phone', type: 'text', options: { maxSize: 50 } },
17
- { name: 'relationship', type: 'select', options: { values: ['colleague', 'client', 'prospect', 'partner', 'other'] } },
18
- { name: 'notes', type: 'editor', options: { maxSize: 5000 } },
12
+ fields: [
13
+ { name: 'name', type: 'text', required: true, max: 200 },
14
+ { name: 'company', type: 'text', max: 200 },
15
+ { name: 'role', type: 'text', max: 200 },
16
+ { name: 'email', type: 'email' },
17
+ { name: 'phone', type: 'text', max: 50 },
18
+ { name: 'relationship', type: 'select', maxSelect: 1, values: ['colleague', 'client', 'prospect', 'partner', 'other'] },
19
+ { name: 'notes', type: 'editor', maxSize: 5000 },
19
20
  { name: 'tags', type: 'json' },
20
21
  { name: 'last_contact_date', type: 'date' },
22
+ { name: 'created', type: 'autodate', onCreate: true },
23
+ { name: 'updated', type: 'autodate', onCreate: true, onUpdate: true },
21
24
  ],
22
25
  indexes: [
23
26
  'CREATE INDEX idx_contacts_name ON contacts (name)',
@@ -25,5 +28,5 @@ migrate((app) => {
25
28
  });
26
29
  app.save(contacts);
27
30
  }, (app) => {
28
- app.delete(app.findCollectionByNameOrId('contacts'));
31
+ const c = app.findCollectionByNameOrId('contacts'); if (c) app.delete(c);
29
32
  });
@@ -1,17 +1,19 @@
1
1
  /**
2
2
  * PocketBase Migration 004: Entity aliases + settings
3
+ * PocketBase v0.23+ field format.
3
4
  */
4
5
 
5
6
  /// <reference path="../pb_data/types.d.ts" />
6
7
 
7
8
  migrate((app) => {
8
- // entity_aliases collection
9
9
  const aliases = new Collection({
10
10
  name: 'entity_aliases',
11
11
  type: 'base',
12
- schema: [
13
- { name: 'canonical', type: 'text', required: true, options: { maxSize: 100 } },
14
- { name: 'alias', type: 'text', required: true, options: { maxSize: 200 } },
12
+ fields: [
13
+ { name: 'canonical', type: 'text', required: true, max: 100 },
14
+ { name: 'alias', type: 'text', required: true, max: 200 },
15
+ { name: 'created', type: 'autodate', onCreate: true },
16
+ { name: 'updated', type: 'autodate', onCreate: true, onUpdate: true },
15
17
  ],
16
18
  indexes: [
17
19
  'CREATE UNIQUE INDEX idx_entity_aliases_unique ON entity_aliases (canonical, alias)',
@@ -21,13 +23,14 @@ migrate((app) => {
21
23
  });
22
24
  app.save(aliases);
23
25
 
24
- // settings collection
25
26
  const settings = new Collection({
26
27
  name: 'settings',
27
28
  type: 'base',
28
- schema: [
29
- { name: 'key', type: 'text', required: true, options: { maxSize: 100 } },
29
+ fields: [
30
+ { name: 'key', type: 'text', required: true, max: 100 },
30
31
  { name: 'value', type: 'editor' },
32
+ { name: 'created', type: 'autodate', onCreate: true },
33
+ { name: 'updated', type: 'autodate', onCreate: true, onUpdate: true },
31
34
  ],
32
35
  indexes: [
33
36
  'CREATE UNIQUE INDEX idx_settings_key ON settings (key)',
@@ -35,6 +38,6 @@ migrate((app) => {
35
38
  });
36
39
  app.save(settings);
37
40
  }, (app) => {
38
- app.delete(app.findCollectionByNameOrId('settings'));
39
- app.delete(app.findCollectionByNameOrId('entity_aliases'));
41
+ const s = app.findCollectionByNameOrId('settings'); if (s) app.delete(s);
42
+ const a = app.findCollectionByNameOrId('entity_aliases'); if (a) app.delete(a);
40
43
  });
@@ -1,5 +1,6 @@
1
1
  /**
2
2
  * PocketBase Migration 005: Prospects (CRM)
3
+ * PocketBase v0.23+ field format.
3
4
  */
4
5
 
5
6
  /// <reference path="../pb_data/types.d.ts" />
@@ -8,20 +9,22 @@ migrate((app) => {
8
9
  const prospects = new Collection({
9
10
  name: 'prospects',
10
11
  type: 'base',
11
- schema: [
12
- { name: 'name', type: 'text', required: true, options: { maxSize: 200 } },
13
- { name: 'email', type: 'email', options: { maxSize: 200 } },
14
- { name: 'company', type: 'text', options: { maxSize: 200 } },
15
- { name: 'role', type: 'text', options: { maxSize: 200 } },
16
- { name: 'stage', type: 'select', required: true, options: { values: ['new', 'contacted', 'responded', 'interested', 'ready_to_buy', 'proposal_sent', 'negotiating', 'closed_won', 'closed_lost', 'nurturing'] } },
17
- { name: 'source', type: 'text', options: { maxSize: 200 } },
12
+ fields: [
13
+ { name: 'name', type: 'text', required: true, max: 200 },
14
+ { name: 'email', type: 'email' },
15
+ { name: 'company', type: 'text', max: 200 },
16
+ { name: 'role', type: 'text', max: 200 },
17
+ { name: 'stage', type: 'select', required: true, maxSelect: 1, values: ['new', 'contacted', 'responded', 'interested', 'ready_to_buy', 'proposal_sent', 'negotiating', 'closed_won', 'closed_lost', 'nurturing'] },
18
+ { name: 'source', type: 'text', max: 200 },
18
19
  { name: 'estimated_value', type: 'number' },
19
- { name: 'next_action_type', type: 'text', options: { maxSize: 100 } },
20
+ { name: 'next_action_type', type: 'text', max: 100 },
20
21
  { name: 'next_followup_date', type: 'date' },
21
22
  { name: 'last_contact_date', type: 'date' },
22
- { name: 'notes', type: 'editor', options: { maxSize: 10000 } },
23
+ { name: 'notes', type: 'editor', maxSize: 10000 },
23
24
  { name: 'tags', type: 'json' },
24
- { name: 'linkedin_url', type: 'url', options: { maxSize: 500 } },
25
+ { name: 'linkedin_url', type: 'url' },
26
+ { name: 'created', type: 'autodate', onCreate: true },
27
+ { name: 'updated', type: 'autodate', onCreate: true, onUpdate: true },
25
28
  ],
26
29
  indexes: [
27
30
  'CREATE INDEX idx_prospects_stage ON prospects (stage)',
@@ -29,5 +32,5 @@ migrate((app) => {
29
32
  });
30
33
  app.save(prospects);
31
34
  }, (app) => {
32
- app.delete(app.findCollectionByNameOrId('prospects'));
35
+ const p = app.findCollectionByNameOrId('prospects'); if (p) app.delete(p);
33
36
  });
@@ -1,25 +1,27 @@
1
1
  /**
2
2
  * PocketBase Migration 006: Business collections (blog, email, content)
3
+ * PocketBase v0.23+ field format.
3
4
  */
4
5
 
5
6
  /// <reference path="../pb_data/types.d.ts" />
6
7
 
7
8
  migrate((app) => {
8
- // blog_posts collection
9
9
  const blogPosts = new Collection({
10
10
  name: 'blog_posts',
11
11
  type: 'base',
12
- schema: [
13
- { name: 'title', type: 'text', required: true, options: { maxSize: 500 } },
14
- { name: 'slug', type: 'text', required: true, options: { maxSize: 200 } },
12
+ fields: [
13
+ { name: 'title', type: 'text', required: true, max: 500 },
14
+ { name: 'slug', type: 'text', required: true, max: 200 },
15
15
  { name: 'content', type: 'editor', required: true },
16
- { name: 'excerpt', type: 'text', options: { maxSize: 500 } },
17
- { name: 'status', type: 'select', required: true, options: { values: ['draft', 'published', 'archived'] } },
16
+ { name: 'excerpt', type: 'text', max: 500 },
17
+ { name: 'status', type: 'select', required: true, maxSelect: 1, values: ['draft', 'published', 'archived'] },
18
18
  { name: 'published_at', type: 'date' },
19
19
  { name: 'tags', type: 'json' },
20
- { name: 'seo_title', type: 'text', options: { maxSize: 200 } },
21
- { name: 'seo_description', type: 'text', options: { maxSize: 300 } },
22
- { name: 'og_image_url', type: 'url', options: { maxSize: 500 } },
20
+ { name: 'seo_title', type: 'text', max: 200 },
21
+ { name: 'seo_description', type: 'text', max: 300 },
22
+ { name: 'og_image_url', type: 'url' },
23
+ { name: 'created', type: 'autodate', onCreate: true },
24
+ { name: 'updated', type: 'autodate', onCreate: true, onUpdate: true },
23
25
  ],
24
26
  indexes: [
25
27
  'CREATE UNIQUE INDEX idx_blog_posts_slug ON blog_posts (slug)',
@@ -28,24 +30,25 @@ migrate((app) => {
28
30
  });
29
31
  app.save(blogPosts);
30
32
 
31
- // email_queue collection
32
33
  const emailQueue = new Collection({
33
34
  name: 'email_queue',
34
35
  type: 'base',
35
- schema: [
36
- { name: 'to_email', type: 'email', required: true, options: { maxSize: 200 } },
37
- { name: 'to_name', type: 'text', options: { maxSize: 200 } },
38
- { name: 'subject', type: 'text', required: true, options: { maxSize: 500 } },
36
+ fields: [
37
+ { name: 'to_email', type: 'email', required: true },
38
+ { name: 'to_name', type: 'text', max: 200 },
39
+ { name: 'subject', type: 'text', required: true, max: 500 },
39
40
  { name: 'body_html', type: 'editor', required: true },
40
41
  { name: 'body_text', type: 'editor' },
41
- { name: 'status', type: 'select', required: true, options: { values: ['queued', 'sent', 'failed', 'bounced'] } },
42
- { name: 'sequence_id', type: 'text', options: { maxSize: 100 } },
42
+ { name: 'status', type: 'select', required: true, maxSelect: 1, values: ['queued', 'sent', 'failed', 'bounced'] },
43
+ { name: 'sequence_id', type: 'text', max: 100 },
43
44
  { name: 'sequence_step', type: 'number' },
44
- { name: 'prospect_id', type: 'text', options: { maxSize: 100 } },
45
+ { name: 'prospect_id', type: 'text', max: 100 },
45
46
  { name: 'scheduled_at', type: 'date' },
46
47
  { name: 'sent_at', type: 'date' },
47
48
  { name: 'error', type: 'editor' },
48
- { name: 'resend_id', type: 'text', options: { maxSize: 200 } },
49
+ { name: 'resend_id', type: 'text', max: 200 },
50
+ { name: 'created', type: 'autodate', onCreate: true },
51
+ { name: 'updated', type: 'autodate', onCreate: true, onUpdate: true },
49
52
  ],
50
53
  indexes: [
51
54
  'CREATE INDEX idx_email_queue_status ON email_queue (status)',
@@ -53,19 +56,20 @@ migrate((app) => {
53
56
  });
54
57
  app.save(emailQueue);
55
58
 
56
- // content_calendar collection
57
59
  const contentCalendar = new Collection({
58
60
  name: 'content_calendar',
59
61
  type: 'base',
60
- schema: [
61
- { name: 'title', type: 'text', required: true, options: { maxSize: 500 } },
62
+ fields: [
63
+ { name: 'title', type: 'text', required: true, max: 500 },
62
64
  { name: 'content', type: 'editor' },
63
- { name: 'platform', type: 'select', required: true, options: { values: ['linkedin', 'newsletter', 'blog', 'twitter', 'other'] } },
64
- { name: 'pillar', type: 'text', options: { maxSize: 100 } },
65
- { name: 'status', type: 'select', required: true, options: { values: ['idea', 'drafting', 'ready', 'published'] } },
65
+ { name: 'platform', type: 'select', required: true, maxSelect: 1, values: ['linkedin', 'newsletter', 'blog', 'twitter', 'other'] },
66
+ { name: 'pillar', type: 'text', max: 100 },
67
+ { name: 'status', type: 'select', required: true, maxSelect: 1, values: ['idea', 'drafting', 'ready', 'published'] },
66
68
  { name: 'scheduled_date', type: 'date' },
67
- { name: 'published_url', type: 'url', options: { maxSize: 500 } },
68
- { name: 'persona', type: 'text', options: { maxSize: 100 } },
69
+ { name: 'published_url', type: 'url' },
70
+ { name: 'persona', type: 'text', max: 100 },
71
+ { name: 'created', type: 'autodate', onCreate: true },
72
+ { name: 'updated', type: 'autodate', onCreate: true, onUpdate: true },
69
73
  ],
70
74
  indexes: [
71
75
  'CREATE INDEX idx_content_calendar_platform ON content_calendar (platform)',
@@ -74,7 +78,7 @@ migrate((app) => {
74
78
  });
75
79
  app.save(contentCalendar);
76
80
  }, (app) => {
77
- app.delete(app.findCollectionByNameOrId('content_calendar'));
78
- app.delete(app.findCollectionByNameOrId('email_queue'));
79
- app.delete(app.findCollectionByNameOrId('blog_posts'));
81
+ const cc = app.findCollectionByNameOrId('content_calendar'); if (cc) app.delete(cc);
82
+ const eq = app.findCollectionByNameOrId('email_queue'); if (eq) app.delete(eq);
83
+ const bp = app.findCollectionByNameOrId('blog_posts'); if (bp) app.delete(bp);
80
84
  });
@@ -1,22 +1,24 @@
1
1
  /**
2
2
  * PocketBase Migration 007: Newsletter subscribers and affiliates
3
+ * PocketBase v0.23+ field format.
3
4
  */
4
5
 
5
6
  /// <reference path="../pb_data/types.d.ts" />
6
7
 
7
8
  migrate((app) => {
8
- // newsletter_subscribers collection
9
9
  const subscribers = new Collection({
10
10
  name: 'newsletter_subscribers',
11
11
  type: 'base',
12
- schema: [
13
- { name: 'email', type: 'email', required: true, options: { maxSize: 200 } },
14
- { name: 'name', type: 'text', options: { maxSize: 200 } },
15
- { name: 'status', type: 'select', required: true, options: { values: ['active', 'unsubscribed', 'bounced'] } },
16
- { name: 'source', type: 'text', options: { maxSize: 200 } },
12
+ fields: [
13
+ { name: 'email', type: 'email', required: true },
14
+ { name: 'name', type: 'text', max: 200 },
15
+ { name: 'status', type: 'select', required: true, maxSelect: 1, values: ['active', 'unsubscribed', 'bounced'] },
16
+ { name: 'source', type: 'text', max: 200 },
17
17
  { name: 'tags', type: 'json' },
18
18
  { name: 'subscribed_at', type: 'date' },
19
19
  { name: 'unsubscribed_at', type: 'date' },
20
+ { name: 'created', type: 'autodate', onCreate: true },
21
+ { name: 'updated', type: 'autodate', onCreate: true, onUpdate: true },
20
22
  ],
21
23
  indexes: [
22
24
  'CREATE UNIQUE INDEX idx_newsletter_subscribers_email ON newsletter_subscribers (email)',
@@ -24,19 +26,20 @@ migrate((app) => {
24
26
  });
25
27
  app.save(subscribers);
26
28
 
27
- // affiliates collection
28
29
  const affiliates = new Collection({
29
30
  name: 'affiliates',
30
31
  type: 'base',
31
- schema: [
32
- { name: 'name', type: 'text', required: true, options: { maxSize: 200 } },
33
- { name: 'email', type: 'email', required: true, options: { maxSize: 200 } },
34
- { name: 'code', type: 'text', required: true, options: { maxSize: 100 } },
35
- { name: 'commission_rate', type: 'number', options: { min: 0, max: 1 } },
36
- { name: 'status', type: 'select', required: true, options: { values: ['pending', 'active', 'paused', 'terminated'] } },
32
+ fields: [
33
+ { name: 'name', type: 'text', required: true, max: 200 },
34
+ { name: 'email', type: 'email', required: true },
35
+ { name: 'code', type: 'text', required: true, max: 100 },
36
+ { name: 'commission_rate', type: 'number', min: 0, max: 1 },
37
+ { name: 'status', type: 'select', required: true, maxSelect: 1, values: ['pending', 'active', 'paused', 'terminated'] },
37
38
  { name: 'total_earned_cents', type: 'number' },
38
39
  { name: 'total_paid_cents', type: 'number' },
39
- { name: 'stripe_account_id', type: 'text', options: { maxSize: 200 } },
40
+ { name: 'stripe_account_id', type: 'text', max: 200 },
41
+ { name: 'created', type: 'autodate', onCreate: true },
42
+ { name: 'updated', type: 'autodate', onCreate: true, onUpdate: true },
40
43
  ],
41
44
  indexes: [
42
45
  'CREATE UNIQUE INDEX idx_affiliates_email ON affiliates (email)',
@@ -45,6 +48,6 @@ migrate((app) => {
45
48
  });
46
49
  app.save(affiliates);
47
50
  }, (app) => {
48
- app.delete(app.findCollectionByNameOrId('affiliates'));
49
- app.delete(app.findCollectionByNameOrId('newsletter_subscribers'));
51
+ const a = app.findCollectionByNameOrId('affiliates'); if (a) app.delete(a);
52
+ const s = app.findCollectionByNameOrId('newsletter_subscribers'); if (s) app.delete(s);
50
53
  });
@@ -1,38 +1,41 @@
1
1
  /**
2
- * PocketBase migration: knowledge_links collection
2
+ * PocketBase Migration 008: knowledge_links collection
3
3
  *
4
- * Creates the knowledge_links collection for typed relationships
5
- * between MemoryOS entities.
4
+ * Typed relationships between MemoryOS entities.
5
+ * PocketBase does not support pgvector — link suggestions use keyword-based
6
+ * text search fallback.
6
7
  *
7
- * Note: PocketBase does not support pgvector.
8
- * Link suggestions use keyword-based text search fallback.
8
+ * PocketBase v0.23+ field format + native migrate() form
9
+ * (was previously module.exports goja runtime panics on that).
9
10
  */
10
- module.exports = {
11
- async up(db) {
12
- const collection = new Collection({
13
- name: 'knowledge_links',
14
- type: 'base',
15
- schema: [
16
- { name: 'owner_id', type: 'text', required: true, options: { maxSize: 100 } },
17
- { name: 'source_type', type: 'text', required: true, options: { maxSize: 50 } },
18
- { name: 'source_id', type: 'text', required: true, options: { maxSize: 36 } },
19
- { name: 'target_type', type: 'text', required: true, options: { maxSize: 50 } },
20
- { name: 'target_id', type: 'text', required: true, options: { maxSize: 36 } },
21
- { name: 'relation_type', type: 'text', required: true, options: { maxSize: 50 } },
22
- { name: 'confidence', type: 'number', options: { min: 0, max: 1 } },
23
- { name: 'notes', type: 'text', options: { maxSize: 500 } },
24
- { name: 'auto_suggested', type: 'bool' },
25
- ],
26
- indexes: [
27
- 'CREATE INDEX idx_kl_source ON knowledge_links (owner_id, source_type, source_id)',
28
- 'CREATE INDEX idx_kl_target ON knowledge_links (owner_id, target_type, target_id)',
29
- 'CREATE UNIQUE INDEX idx_kl_unique ON knowledge_links (owner_id, source_type, source_id, target_type, target_id, relation_type)',
30
- ],
31
- });
32
- return db.save(collection);
33
- },
34
- async down(db) {
35
- const collection = await db.findCollectionByNameOrId('knowledge_links');
36
- return db.delete(collection);
37
- },
38
- };
11
+
12
+ /// <reference path="../pb_data/types.d.ts" />
13
+
14
+ migrate((app) => {
15
+ const links = new Collection({
16
+ name: 'knowledge_links',
17
+ type: 'base',
18
+ fields: [
19
+ { name: 'owner_id', type: 'text', max: 100 },
20
+ { name: 'source_type', type: 'text', required: true, max: 50 },
21
+ { name: 'source_id', type: 'text', required: true, max: 36 },
22
+ { name: 'target_type', type: 'text', required: true, max: 50 },
23
+ { name: 'target_id', type: 'text', required: true, max: 36 },
24
+ { name: 'relation_type', type: 'text', required: true, max: 50 },
25
+ { name: 'confidence', type: 'number', min: 0, max: 1 },
26
+ { name: 'notes', type: 'text', max: 500 },
27
+ { name: 'auto_suggested', type: 'bool' },
28
+ { name: 'created', type: 'autodate', onCreate: true },
29
+ { name: 'updated', type: 'autodate', onCreate: true, onUpdate: true },
30
+ ],
31
+ indexes: [
32
+ 'CREATE INDEX idx_kl_source ON knowledge_links (owner_id, source_type, source_id)',
33
+ 'CREATE INDEX idx_kl_target ON knowledge_links (owner_id, target_type, target_id)',
34
+ 'CREATE UNIQUE INDEX idx_kl_unique ON knowledge_links (owner_id, source_type, source_id, target_type, target_id, relation_type)',
35
+ ],
36
+ });
37
+ app.save(links);
38
+ }, (app) => {
39
+ const links = app.findCollectionByNameOrId('knowledge_links');
40
+ if (links) app.delete(links);
41
+ });
@@ -8,12 +8,14 @@
8
8
  -- 5. Add decisions-specific columns: rationale, outcome_rating, session_id
9
9
  -- 6. Make decisions.options_considered nullable (production data shows this)
10
10
  -- 7. Make goals.timeframe nullable (not always known at creation time)
11
+ --
12
+ -- Each `text[] -> jsonb` conversion must DROP DEFAULT first, change TYPE, then
13
+ -- SET a jsonb DEFAULT. Postgres cannot auto-cast the text[] default '{}' to jsonb.
11
14
 
12
15
  -- === KNOWLEDGE ===
13
- -- Convert tags from text[] to jsonb
16
+ ALTER TABLE knowledge ALTER COLUMN tags DROP DEFAULT;
14
17
  ALTER TABLE knowledge ALTER COLUMN tags TYPE jsonb USING to_jsonb(tags);
15
18
  ALTER TABLE knowledge ALTER COLUMN tags SET DEFAULT '[]'::jsonb;
16
- -- Add missing columns
17
19
  ALTER TABLE knowledge ADD COLUMN IF NOT EXISTS owner_id text NOT NULL DEFAULT 'default';
18
20
  ALTER TABLE knowledge ADD COLUMN IF NOT EXISTS metadata jsonb DEFAULT '{}'::jsonb;
19
21
  ALTER TABLE knowledge ADD COLUMN IF NOT EXISTS source_file text;
@@ -21,14 +23,13 @@ ALTER TABLE knowledge ADD COLUMN IF NOT EXISTS decay_score numeric;
21
23
  ALTER TABLE knowledge ADD COLUMN IF NOT EXISTS triggers jsonb;
22
24
 
23
25
  -- === DECISIONS ===
24
- -- Convert options_considered from text[] to jsonb
26
+ ALTER TABLE decisions ALTER COLUMN options_considered DROP DEFAULT;
25
27
  ALTER TABLE decisions ALTER COLUMN options_considered TYPE jsonb USING to_jsonb(options_considered);
26
28
  ALTER TABLE decisions ALTER COLUMN options_considered DROP NOT NULL;
27
29
  ALTER TABLE decisions ALTER COLUMN options_considered SET DEFAULT '[]'::jsonb;
28
- -- Convert tags from text[] to jsonb
30
+ ALTER TABLE decisions ALTER COLUMN tags DROP DEFAULT;
29
31
  ALTER TABLE decisions ALTER COLUMN tags TYPE jsonb USING to_jsonb(tags);
30
32
  ALTER TABLE decisions ALTER COLUMN tags SET DEFAULT '[]'::jsonb;
31
- -- Add missing columns
32
33
  ALTER TABLE decisions ADD COLUMN IF NOT EXISTS owner_id text NOT NULL DEFAULT 'default';
33
34
  ALTER TABLE decisions ADD COLUMN IF NOT EXISTS metadata jsonb DEFAULT '{}'::jsonb;
34
35
  ALTER TABLE decisions ADD COLUMN IF NOT EXISTS rationale text;
@@ -36,37 +37,33 @@ ALTER TABLE decisions ADD COLUMN IF NOT EXISTS outcome_rating text;
36
37
  ALTER TABLE decisions ADD COLUMN IF NOT EXISTS session_id uuid;
37
38
 
38
39
  -- === SESSIONS ===
39
- -- Convert skills_used, files_changed from text[] to jsonb
40
+ ALTER TABLE sessions ALTER COLUMN skills_used DROP DEFAULT;
40
41
  ALTER TABLE sessions ALTER COLUMN skills_used TYPE jsonb USING to_jsonb(skills_used);
41
42
  ALTER TABLE sessions ALTER COLUMN skills_used SET DEFAULT '[]'::jsonb;
43
+ ALTER TABLE sessions ALTER COLUMN files_changed DROP DEFAULT;
42
44
  ALTER TABLE sessions ALTER COLUMN files_changed TYPE jsonb USING to_jsonb(files_changed);
43
45
  ALTER TABLE sessions ALTER COLUMN files_changed SET DEFAULT '[]'::jsonb;
44
- -- Add missing columns
45
46
  ALTER TABLE sessions ADD COLUMN IF NOT EXISTS owner_id text NOT NULL DEFAULT 'default';
46
47
 
47
48
  -- === GOALS ===
48
- -- Convert tags from text[] to jsonb
49
+ ALTER TABLE goals ALTER COLUMN tags DROP DEFAULT;
49
50
  ALTER TABLE goals ALTER COLUMN tags TYPE jsonb USING to_jsonb(tags);
50
51
  ALTER TABLE goals ALTER COLUMN tags SET DEFAULT '[]'::jsonb;
51
- -- Make timeframe nullable (not always known)
52
52
  ALTER TABLE goals ALTER COLUMN timeframe DROP NOT NULL;
53
- -- Add missing columns
54
53
  ALTER TABLE goals ADD COLUMN IF NOT EXISTS owner_id text NOT NULL DEFAULT 'default';
55
54
  ALTER TABLE goals ADD COLUMN IF NOT EXISTS metadata jsonb DEFAULT '{}'::jsonb;
56
55
 
57
56
  -- === TASKS ===
58
- -- Convert tags from text[] to jsonb
57
+ ALTER TABLE tasks ALTER COLUMN tags DROP DEFAULT;
59
58
  ALTER TABLE tasks ALTER COLUMN tags TYPE jsonb USING to_jsonb(tags);
60
59
  ALTER TABLE tasks ALTER COLUMN tags SET DEFAULT '[]'::jsonb;
61
- -- Add missing columns
62
60
  ALTER TABLE tasks ADD COLUMN IF NOT EXISTS owner_id text NOT NULL DEFAULT 'default';
63
61
  ALTER TABLE tasks ADD COLUMN IF NOT EXISTS metadata jsonb DEFAULT '{}'::jsonb;
64
62
 
65
63
  -- === CONTACTS ===
66
- -- Convert tags from text[] to jsonb
64
+ ALTER TABLE contacts ALTER COLUMN tags DROP DEFAULT;
67
65
  ALTER TABLE contacts ALTER COLUMN tags TYPE jsonb USING to_jsonb(tags);
68
66
  ALTER TABLE contacts ALTER COLUMN tags SET DEFAULT '[]'::jsonb;
69
- -- Add missing columns
70
67
  ALTER TABLE contacts ADD COLUMN IF NOT EXISTS owner_id text NOT NULL DEFAULT 'default';
71
68
  ALTER TABLE contacts ADD COLUMN IF NOT EXISTS metadata jsonb DEFAULT '{}'::jsonb;
72
69
  ALTER TABLE contacts ADD COLUMN IF NOT EXISTS last_interaction_at timestamptz;
package/package.json CHANGED
@@ -1,7 +1,17 @@
1
1
  {
2
2
  "name": "@iwo-szapar/data-mcp",
3
- "version": "0.3.0",
4
- "description": "Unified data MCP server for Second Brain \u2014 PocketBase and Supabase adapters",
3
+ "version": "0.3.2",
4
+ "description": "Unified data MCP server for Second Brain PocketBase and Supabase adapters. 40 tools: knowledge, sessions, goals, tasks, contacts, CRM, blog, email, content calendar.",
5
+ "author": "Iwo Szapar <iwo.szapar@gmail.com> (https://iwoszapar.com)",
6
+ "homepage": "https://iwoszapar.com/second-brain-ai",
7
+ "bugs": {
8
+ "url": "https://iwoszapar.com/contact",
9
+ "email": "iwo.szapar@gmail.com"
10
+ },
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "https://iwoszapar.com/second-brain-ai"
14
+ },
5
15
  "type": "module",
6
16
  "bin": {
7
17
  "data-mcp": "./dist/index.js"
@@ -20,14 +30,19 @@
20
30
  "files": [
21
31
  "dist/",
22
32
  "migrations/",
23
- "seed/"
33
+ "seed/",
34
+ "README.md"
24
35
  ],
25
36
  "keywords": [
26
37
  "mcp",
38
+ "model-context-protocol",
27
39
  "second-brain",
28
40
  "pocketbase",
29
41
  "supabase",
30
- "knowledge-management"
42
+ "knowledge-management",
43
+ "claude-code",
44
+ "memory",
45
+ "crm"
31
46
  ],
32
47
  "publishConfig": {
33
48
  "access": "public"
@@ -48,4 +63,4 @@
48
63
  "vitest": "^3.1.1",
49
64
  "tsx": "^4.19.4"
50
65
  }
51
- }
66
+ }