remnote-mcp-server 0.14.1 → 0.15.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.
Files changed (49) hide show
  1. package/CHANGELOG.md +56 -0
  2. package/README.md +82 -28
  3. package/dist/cli.d.ts +2 -1
  4. package/dist/cli.js +9 -2
  5. package/dist/cli.js.map +1 -1
  6. package/dist/config.d.ts +14 -2
  7. package/dist/config.js +210 -10
  8. package/dist/config.js.map +1 -1
  9. package/dist/daemon.d.ts +61 -0
  10. package/dist/daemon.js +735 -0
  11. package/dist/daemon.js.map +1 -0
  12. package/dist/index.js +6 -3
  13. package/dist/index.js.map +1 -1
  14. package/dist/remnote-cli/cli.js +4 -0
  15. package/dist/remnote-cli/cli.js.map +1 -1
  16. package/dist/remnote-cli/client/mcp-server-client.js +7 -1
  17. package/dist/remnote-cli/client/mcp-server-client.js.map +1 -1
  18. package/dist/remnote-cli/commands/content-input.d.ts +0 -12
  19. package/dist/remnote-cli/commands/content-input.js +0 -20
  20. package/dist/remnote-cli/commands/content-input.js.map +1 -1
  21. package/dist/remnote-cli/commands/create.js +3 -3
  22. package/dist/remnote-cli/commands/create.js.map +1 -1
  23. package/dist/remnote-cli/commands/journal.js +3 -0
  24. package/dist/remnote-cli/commands/journal.js.map +1 -1
  25. package/dist/remnote-cli/commands/read.js +20 -2
  26. package/dist/remnote-cli/commands/read.js.map +1 -1
  27. package/dist/remnote-cli/commands/search.js +24 -5
  28. package/dist/remnote-cli/commands/search.js.map +1 -1
  29. package/dist/remnote-cli/commands/update.js +5 -24
  30. package/dist/remnote-cli/commands/update.js.map +1 -1
  31. package/dist/remnote-cli/commands/write-actions.d.ts +4 -0
  32. package/dist/remnote-cli/commands/write-actions.js +123 -0
  33. package/dist/remnote-cli/commands/write-actions.js.map +1 -0
  34. package/dist/schemas/remnote-schemas.d.ts +33 -10
  35. package/dist/schemas/remnote-schemas.js +58 -16
  36. package/dist/schemas/remnote-schemas.js.map +1 -1
  37. package/dist/tools/index.d.ts +1264 -12
  38. package/dist/tools/index.js +157 -47
  39. package/dist/tools/index.js.map +1 -1
  40. package/dist/websocket-server.d.ts +5 -0
  41. package/dist/websocket-server.js +64 -10
  42. package/dist/websocket-server.js.map +1 -1
  43. package/mcpb/remnote-local/README.md +4 -3
  44. package/mcpb/remnote-local/manifest.json +30 -28
  45. package/mcpb/remnote-local/package.json +1 -1
  46. package/mcpb/remnote-local/remnote-local.mcpb +0 -0
  47. package/mcpb/remnote-local/server/fallback-tools.generated.js +323 -0
  48. package/mcpb/remnote-local/server/index.js +7 -122
  49. package/package.json +5 -3
@@ -19,7 +19,7 @@ export declare const CREATE_NOTE_TOOL: {
19
19
  type: string;
20
20
  description: string;
21
21
  };
22
- tags: {
22
+ tagRemIds: {
23
23
  type: string;
24
24
  items: {
25
25
  type: string;
@@ -28,6 +28,7 @@ export declare const CREATE_NOTE_TOOL: {
28
28
  };
29
29
  };
30
30
  required: never[];
31
+ additionalProperties: boolean;
31
32
  };
32
33
  outputSchema: {
33
34
  type: "object";
@@ -123,7 +124,19 @@ export declare const SEARCH_TOOL: {
123
124
  tags: {
124
125
  type: string;
125
126
  items: {
126
- type: string;
127
+ type: "object";
128
+ properties: {
129
+ tagRemId: {
130
+ type: string;
131
+ description: string;
132
+ };
133
+ name: {
134
+ type: string;
135
+ description: string;
136
+ };
137
+ };
138
+ required: string[];
139
+ additionalProperties: boolean;
127
140
  };
128
141
  description: string;
129
142
  };
@@ -167,7 +180,19 @@ export declare const SEARCH_TOOL: {
167
180
  tags: {
168
181
  type: string;
169
182
  items: {
170
- type: string;
183
+ type: "object";
184
+ properties: {
185
+ tagRemId: {
186
+ type: string;
187
+ description: string;
188
+ };
189
+ name: {
190
+ type: string;
191
+ description: string;
192
+ };
193
+ };
194
+ required: string[];
195
+ additionalProperties: boolean;
171
196
  };
172
197
  description: string;
173
198
  };
@@ -220,7 +245,7 @@ export declare const SEARCH_BY_TAG_TOOL: {
220
245
  inputSchema: {
221
246
  type: "object";
222
247
  properties: {
223
- tag: {
248
+ tagRemId: {
224
249
  type: string;
225
250
  description: string;
226
251
  };
@@ -287,7 +312,19 @@ export declare const SEARCH_BY_TAG_TOOL: {
287
312
  tags: {
288
313
  type: string;
289
314
  items: {
290
- type: string;
315
+ type: "object";
316
+ properties: {
317
+ tagRemId: {
318
+ type: string;
319
+ description: string;
320
+ };
321
+ name: {
322
+ type: string;
323
+ description: string;
324
+ };
325
+ };
326
+ required: string[];
327
+ additionalProperties: boolean;
291
328
  };
292
329
  description: string;
293
330
  };
@@ -331,7 +368,19 @@ export declare const SEARCH_BY_TAG_TOOL: {
331
368
  tags: {
332
369
  type: string;
333
370
  items: {
334
- type: string;
371
+ type: "object";
372
+ properties: {
373
+ tagRemId: {
374
+ type: string;
375
+ description: string;
376
+ };
377
+ name: {
378
+ type: string;
379
+ description: string;
380
+ };
381
+ };
382
+ required: string[];
383
+ additionalProperties: boolean;
335
384
  };
336
385
  description: string;
337
386
  };
@@ -441,7 +490,19 @@ export declare const READ_NOTE_TOOL: {
441
490
  tags: {
442
491
  type: string;
443
492
  items: {
444
- type: string;
493
+ type: "object";
494
+ properties: {
495
+ tagRemId: {
496
+ type: string;
497
+ description: string;
498
+ };
499
+ name: {
500
+ type: string;
501
+ description: string;
502
+ };
503
+ };
504
+ required: string[];
505
+ additionalProperties: boolean;
445
506
  };
446
507
  description: string;
447
508
  };
@@ -485,7 +546,19 @@ export declare const READ_NOTE_TOOL: {
485
546
  tags: {
486
547
  type: string;
487
548
  items: {
488
- type: string;
549
+ type: "object";
550
+ properties: {
551
+ tagRemId: {
552
+ type: string;
553
+ description: string;
554
+ };
555
+ name: {
556
+ type: string;
557
+ description: string;
558
+ };
559
+ };
560
+ required: string[];
561
+ additionalProperties: boolean;
489
562
  };
490
563
  description: string;
491
564
  };
@@ -543,30 +616,147 @@ export declare const UPDATE_NOTE_TOOL: {
543
616
  type: string;
544
617
  description: string;
545
618
  };
546
- appendContent: {
619
+ };
620
+ required: string[];
621
+ additionalProperties: boolean;
622
+ };
623
+ outputSchema: {
624
+ type: "object";
625
+ properties: {
626
+ remIds: {
627
+ type: string;
628
+ items: {
629
+ type: string;
630
+ };
631
+ description: string;
632
+ };
633
+ titles: {
634
+ type: string;
635
+ items: {
636
+ type: string;
637
+ };
638
+ description: string;
639
+ };
640
+ };
641
+ required: string[];
642
+ };
643
+ };
644
+ export declare const INSERT_CHILDREN_TOOL: {
645
+ name: string;
646
+ description: string;
647
+ inputSchema: {
648
+ type: "object";
649
+ properties: {
650
+ parentRemId: {
651
+ type: string;
652
+ description: string;
653
+ };
654
+ content: {
655
+ type: string;
656
+ description: string;
657
+ };
658
+ position: {
659
+ type: string;
660
+ enum: string[];
661
+ description: string;
662
+ };
663
+ siblingRemId: {
664
+ type: string;
665
+ description: string;
666
+ };
667
+ };
668
+ required: string[];
669
+ additionalProperties: boolean;
670
+ };
671
+ outputSchema: {
672
+ type: "object";
673
+ properties: {
674
+ remIds: {
675
+ type: string;
676
+ items: {
677
+ type: string;
678
+ };
679
+ description: string;
680
+ };
681
+ titles: {
682
+ type: string;
683
+ items: {
684
+ type: string;
685
+ };
686
+ description: string;
687
+ };
688
+ };
689
+ required: string[];
690
+ };
691
+ };
692
+ export declare const REPLACE_CHILDREN_TOOL: {
693
+ name: string;
694
+ description: string;
695
+ inputSchema: {
696
+ type: "object";
697
+ properties: {
698
+ parentRemId: {
699
+ type: string;
700
+ description: string;
701
+ };
702
+ content: {
703
+ type: string;
704
+ description: string;
705
+ };
706
+ };
707
+ required: string[];
708
+ additionalProperties: boolean;
709
+ };
710
+ outputSchema: {
711
+ type: "object";
712
+ properties: {
713
+ remIds: {
714
+ type: string;
715
+ items: {
716
+ type: string;
717
+ };
718
+ description: string;
719
+ };
720
+ titles: {
547
721
  type: string;
722
+ items: {
723
+ type: string;
724
+ };
548
725
  description: string;
549
726
  };
550
- replaceContent: {
727
+ };
728
+ required: string[];
729
+ };
730
+ };
731
+ export declare const UPDATE_TAGS_TOOL: {
732
+ name: string;
733
+ description: string;
734
+ inputSchema: {
735
+ type: "object";
736
+ properties: {
737
+ remId: {
551
738
  type: string;
552
739
  description: string;
553
740
  };
554
- addTags: {
741
+ addTagRemIds: {
555
742
  type: string;
556
743
  items: {
557
744
  type: string;
558
745
  };
746
+ minItems: number;
559
747
  description: string;
560
748
  };
561
- removeTags: {
749
+ removeTagRemIds: {
562
750
  type: string;
563
751
  items: {
564
752
  type: string;
565
753
  };
754
+ minItems: number;
566
755
  description: string;
567
756
  };
568
757
  };
569
758
  required: string[];
759
+ additionalProperties: boolean;
570
760
  };
571
761
  outputSchema: {
572
762
  type: "object";
@@ -603,8 +793,16 @@ export declare const APPEND_JOURNAL_TOOL: {
603
793
  type: string;
604
794
  description: string;
605
795
  };
796
+ tagRemIds: {
797
+ type: string;
798
+ items: {
799
+ type: string;
800
+ };
801
+ description: string;
802
+ };
606
803
  };
607
804
  required: string[];
805
+ additionalProperties: boolean;
608
806
  };
609
807
  outputSchema: {
610
808
  type: "object";
@@ -868,4 +1066,1058 @@ export declare const PLAYBOOK_TOOL: {
868
1066
  required: string[];
869
1067
  };
870
1068
  };
1069
+ export declare const ALL_TOOLS: readonly [{
1070
+ name: string;
1071
+ description: string;
1072
+ inputSchema: {
1073
+ type: "object";
1074
+ properties: {
1075
+ title: {
1076
+ type: string;
1077
+ description: string;
1078
+ };
1079
+ content: {
1080
+ type: string;
1081
+ description: string;
1082
+ };
1083
+ parentId: {
1084
+ type: string;
1085
+ description: string;
1086
+ };
1087
+ tagRemIds: {
1088
+ type: string;
1089
+ items: {
1090
+ type: string;
1091
+ };
1092
+ description: string;
1093
+ };
1094
+ };
1095
+ required: never[];
1096
+ additionalProperties: boolean;
1097
+ };
1098
+ outputSchema: {
1099
+ type: "object";
1100
+ properties: {
1101
+ remIds: {
1102
+ type: string;
1103
+ items: {
1104
+ type: string;
1105
+ };
1106
+ description: string;
1107
+ };
1108
+ titles: {
1109
+ type: string;
1110
+ items: {
1111
+ type: string;
1112
+ };
1113
+ description: string;
1114
+ };
1115
+ };
1116
+ required: string[];
1117
+ };
1118
+ }, {
1119
+ name: string;
1120
+ description: string;
1121
+ inputSchema: {
1122
+ type: "object";
1123
+ properties: {
1124
+ query: {
1125
+ type: string;
1126
+ description: string;
1127
+ };
1128
+ limit: {
1129
+ type: string;
1130
+ description: string;
1131
+ };
1132
+ includeContent: {
1133
+ type: string;
1134
+ enum: string[];
1135
+ description: string;
1136
+ };
1137
+ depth: {
1138
+ type: string;
1139
+ description: string;
1140
+ };
1141
+ childLimit: {
1142
+ type: string;
1143
+ description: string;
1144
+ };
1145
+ maxContentLength: {
1146
+ type: string;
1147
+ description: string;
1148
+ };
1149
+ };
1150
+ required: string[];
1151
+ };
1152
+ outputSchema: {
1153
+ type: "object";
1154
+ properties: {
1155
+ results: {
1156
+ type: string;
1157
+ description: string;
1158
+ items: {
1159
+ type: string;
1160
+ properties: {
1161
+ remId: {
1162
+ type: string;
1163
+ description: string;
1164
+ };
1165
+ title: {
1166
+ type: string;
1167
+ description: string;
1168
+ };
1169
+ headline: {
1170
+ type: string;
1171
+ description: string;
1172
+ };
1173
+ parentRemId: {
1174
+ type: string;
1175
+ description: string;
1176
+ };
1177
+ parentTitle: {
1178
+ type: string;
1179
+ description: string;
1180
+ };
1181
+ aliases: {
1182
+ type: string;
1183
+ items: {
1184
+ type: string;
1185
+ };
1186
+ description: string;
1187
+ };
1188
+ tags: {
1189
+ type: string;
1190
+ items: {
1191
+ type: "object";
1192
+ properties: {
1193
+ tagRemId: {
1194
+ type: string;
1195
+ description: string;
1196
+ };
1197
+ name: {
1198
+ type: string;
1199
+ description: string;
1200
+ };
1201
+ };
1202
+ required: string[];
1203
+ additionalProperties: boolean;
1204
+ };
1205
+ description: string;
1206
+ };
1207
+ remType: {
1208
+ type: string;
1209
+ description: string;
1210
+ };
1211
+ cardDirection: {
1212
+ type: string;
1213
+ description: string;
1214
+ };
1215
+ content: {
1216
+ type: string;
1217
+ description: string;
1218
+ };
1219
+ contentStructured: {
1220
+ type: string;
1221
+ description: string;
1222
+ items: {
1223
+ type: string;
1224
+ properties: {
1225
+ remId: {
1226
+ type: string;
1227
+ description: string;
1228
+ };
1229
+ title: {
1230
+ type: string;
1231
+ description: string;
1232
+ };
1233
+ headline: {
1234
+ type: string;
1235
+ description: string;
1236
+ };
1237
+ aliases: {
1238
+ type: string;
1239
+ items: {
1240
+ type: string;
1241
+ };
1242
+ description: string;
1243
+ };
1244
+ tags: {
1245
+ type: string;
1246
+ items: {
1247
+ type: "object";
1248
+ properties: {
1249
+ tagRemId: {
1250
+ type: string;
1251
+ description: string;
1252
+ };
1253
+ name: {
1254
+ type: string;
1255
+ description: string;
1256
+ };
1257
+ };
1258
+ required: string[];
1259
+ additionalProperties: boolean;
1260
+ };
1261
+ description: string;
1262
+ };
1263
+ remType: {
1264
+ type: string;
1265
+ description: string;
1266
+ };
1267
+ cardDirection: {
1268
+ type: string;
1269
+ description: string;
1270
+ };
1271
+ children: {
1272
+ type: string;
1273
+ description: string;
1274
+ items: {
1275
+ type: string;
1276
+ };
1277
+ };
1278
+ };
1279
+ required: string[];
1280
+ };
1281
+ };
1282
+ contentProperties: {
1283
+ type: string;
1284
+ description: string;
1285
+ properties: {
1286
+ childrenRendered: {
1287
+ type: string;
1288
+ description: string;
1289
+ };
1290
+ childrenTotal: {
1291
+ type: string;
1292
+ description: string;
1293
+ };
1294
+ contentTruncated: {
1295
+ type: string;
1296
+ description: string;
1297
+ };
1298
+ };
1299
+ };
1300
+ };
1301
+ };
1302
+ };
1303
+ };
1304
+ };
1305
+ }, {
1306
+ name: string;
1307
+ description: string;
1308
+ inputSchema: {
1309
+ type: "object";
1310
+ properties: {
1311
+ tagRemId: {
1312
+ type: string;
1313
+ description: string;
1314
+ };
1315
+ limit: {
1316
+ type: string;
1317
+ description: string;
1318
+ };
1319
+ includeContent: {
1320
+ type: string;
1321
+ enum: string[];
1322
+ description: string;
1323
+ };
1324
+ depth: {
1325
+ type: string;
1326
+ description: string;
1327
+ };
1328
+ childLimit: {
1329
+ type: string;
1330
+ description: string;
1331
+ };
1332
+ maxContentLength: {
1333
+ type: string;
1334
+ description: string;
1335
+ };
1336
+ };
1337
+ required: string[];
1338
+ };
1339
+ outputSchema: {
1340
+ type: "object";
1341
+ properties: {
1342
+ results: {
1343
+ type: string;
1344
+ description: string;
1345
+ items: {
1346
+ type: string;
1347
+ properties: {
1348
+ remId: {
1349
+ type: string;
1350
+ description: string;
1351
+ };
1352
+ title: {
1353
+ type: string;
1354
+ description: string;
1355
+ };
1356
+ headline: {
1357
+ type: string;
1358
+ description: string;
1359
+ };
1360
+ parentRemId: {
1361
+ type: string;
1362
+ description: string;
1363
+ };
1364
+ parentTitle: {
1365
+ type: string;
1366
+ description: string;
1367
+ };
1368
+ aliases: {
1369
+ type: string;
1370
+ items: {
1371
+ type: string;
1372
+ };
1373
+ description: string;
1374
+ };
1375
+ tags: {
1376
+ type: string;
1377
+ items: {
1378
+ type: "object";
1379
+ properties: {
1380
+ tagRemId: {
1381
+ type: string;
1382
+ description: string;
1383
+ };
1384
+ name: {
1385
+ type: string;
1386
+ description: string;
1387
+ };
1388
+ };
1389
+ required: string[];
1390
+ additionalProperties: boolean;
1391
+ };
1392
+ description: string;
1393
+ };
1394
+ remType: {
1395
+ type: string;
1396
+ description: string;
1397
+ };
1398
+ cardDirection: {
1399
+ type: string;
1400
+ description: string;
1401
+ };
1402
+ content: {
1403
+ type: string;
1404
+ description: string;
1405
+ };
1406
+ contentStructured: {
1407
+ type: string;
1408
+ description: string;
1409
+ items: {
1410
+ type: string;
1411
+ properties: {
1412
+ remId: {
1413
+ type: string;
1414
+ description: string;
1415
+ };
1416
+ title: {
1417
+ type: string;
1418
+ description: string;
1419
+ };
1420
+ headline: {
1421
+ type: string;
1422
+ description: string;
1423
+ };
1424
+ aliases: {
1425
+ type: string;
1426
+ items: {
1427
+ type: string;
1428
+ };
1429
+ description: string;
1430
+ };
1431
+ tags: {
1432
+ type: string;
1433
+ items: {
1434
+ type: "object";
1435
+ properties: {
1436
+ tagRemId: {
1437
+ type: string;
1438
+ description: string;
1439
+ };
1440
+ name: {
1441
+ type: string;
1442
+ description: string;
1443
+ };
1444
+ };
1445
+ required: string[];
1446
+ additionalProperties: boolean;
1447
+ };
1448
+ description: string;
1449
+ };
1450
+ remType: {
1451
+ type: string;
1452
+ description: string;
1453
+ };
1454
+ cardDirection: {
1455
+ type: string;
1456
+ description: string;
1457
+ };
1458
+ children: {
1459
+ type: string;
1460
+ description: string;
1461
+ items: {
1462
+ type: string;
1463
+ };
1464
+ };
1465
+ };
1466
+ required: string[];
1467
+ };
1468
+ };
1469
+ contentProperties: {
1470
+ type: string;
1471
+ description: string;
1472
+ properties: {
1473
+ childrenRendered: {
1474
+ type: string;
1475
+ description: string;
1476
+ };
1477
+ childrenTotal: {
1478
+ type: string;
1479
+ description: string;
1480
+ };
1481
+ contentTruncated: {
1482
+ type: string;
1483
+ description: string;
1484
+ };
1485
+ };
1486
+ };
1487
+ };
1488
+ };
1489
+ };
1490
+ };
1491
+ };
1492
+ }, {
1493
+ name: string;
1494
+ description: string;
1495
+ inputSchema: {
1496
+ type: "object";
1497
+ properties: {
1498
+ remId: {
1499
+ type: string;
1500
+ description: string;
1501
+ };
1502
+ depth: {
1503
+ type: string;
1504
+ description: string;
1505
+ };
1506
+ includeContent: {
1507
+ type: string;
1508
+ enum: string[];
1509
+ description: string;
1510
+ };
1511
+ childLimit: {
1512
+ type: string;
1513
+ description: string;
1514
+ };
1515
+ maxContentLength: {
1516
+ type: string;
1517
+ description: string;
1518
+ };
1519
+ };
1520
+ required: string[];
1521
+ };
1522
+ outputSchema: {
1523
+ type: "object";
1524
+ properties: {
1525
+ remId: {
1526
+ type: string;
1527
+ description: string;
1528
+ };
1529
+ title: {
1530
+ type: string;
1531
+ description: string;
1532
+ };
1533
+ headline: {
1534
+ type: string;
1535
+ description: string;
1536
+ };
1537
+ parentRemId: {
1538
+ type: string;
1539
+ description: string;
1540
+ };
1541
+ parentTitle: {
1542
+ type: string;
1543
+ description: string;
1544
+ };
1545
+ aliases: {
1546
+ type: string;
1547
+ items: {
1548
+ type: string;
1549
+ };
1550
+ description: string;
1551
+ };
1552
+ tags: {
1553
+ type: string;
1554
+ items: {
1555
+ type: "object";
1556
+ properties: {
1557
+ tagRemId: {
1558
+ type: string;
1559
+ description: string;
1560
+ };
1561
+ name: {
1562
+ type: string;
1563
+ description: string;
1564
+ };
1565
+ };
1566
+ required: string[];
1567
+ additionalProperties: boolean;
1568
+ };
1569
+ description: string;
1570
+ };
1571
+ remType: {
1572
+ type: string;
1573
+ description: string;
1574
+ };
1575
+ cardDirection: {
1576
+ type: string;
1577
+ description: string;
1578
+ };
1579
+ content: {
1580
+ type: string;
1581
+ description: string;
1582
+ };
1583
+ contentStructured: {
1584
+ type: string;
1585
+ description: string;
1586
+ items: {
1587
+ type: string;
1588
+ properties: {
1589
+ remId: {
1590
+ type: string;
1591
+ description: string;
1592
+ };
1593
+ title: {
1594
+ type: string;
1595
+ description: string;
1596
+ };
1597
+ headline: {
1598
+ type: string;
1599
+ description: string;
1600
+ };
1601
+ aliases: {
1602
+ type: string;
1603
+ items: {
1604
+ type: string;
1605
+ };
1606
+ description: string;
1607
+ };
1608
+ tags: {
1609
+ type: string;
1610
+ items: {
1611
+ type: "object";
1612
+ properties: {
1613
+ tagRemId: {
1614
+ type: string;
1615
+ description: string;
1616
+ };
1617
+ name: {
1618
+ type: string;
1619
+ description: string;
1620
+ };
1621
+ };
1622
+ required: string[];
1623
+ additionalProperties: boolean;
1624
+ };
1625
+ description: string;
1626
+ };
1627
+ remType: {
1628
+ type: string;
1629
+ description: string;
1630
+ };
1631
+ cardDirection: {
1632
+ type: string;
1633
+ description: string;
1634
+ };
1635
+ children: {
1636
+ type: string;
1637
+ description: string;
1638
+ items: {
1639
+ type: string;
1640
+ };
1641
+ };
1642
+ };
1643
+ required: string[];
1644
+ };
1645
+ };
1646
+ contentProperties: {
1647
+ type: string;
1648
+ description: string;
1649
+ properties: {
1650
+ childrenRendered: {
1651
+ type: string;
1652
+ description: string;
1653
+ };
1654
+ childrenTotal: {
1655
+ type: string;
1656
+ description: string;
1657
+ };
1658
+ contentTruncated: {
1659
+ type: string;
1660
+ description: string;
1661
+ };
1662
+ };
1663
+ };
1664
+ };
1665
+ };
1666
+ }, {
1667
+ name: string;
1668
+ description: string;
1669
+ inputSchema: {
1670
+ type: "object";
1671
+ properties: {
1672
+ remId: {
1673
+ type: string;
1674
+ description: string;
1675
+ };
1676
+ title: {
1677
+ type: string;
1678
+ description: string;
1679
+ };
1680
+ };
1681
+ required: string[];
1682
+ additionalProperties: boolean;
1683
+ };
1684
+ outputSchema: {
1685
+ type: "object";
1686
+ properties: {
1687
+ remIds: {
1688
+ type: string;
1689
+ items: {
1690
+ type: string;
1691
+ };
1692
+ description: string;
1693
+ };
1694
+ titles: {
1695
+ type: string;
1696
+ items: {
1697
+ type: string;
1698
+ };
1699
+ description: string;
1700
+ };
1701
+ };
1702
+ required: string[];
1703
+ };
1704
+ }, {
1705
+ name: string;
1706
+ description: string;
1707
+ inputSchema: {
1708
+ type: "object";
1709
+ properties: {
1710
+ parentRemId: {
1711
+ type: string;
1712
+ description: string;
1713
+ };
1714
+ content: {
1715
+ type: string;
1716
+ description: string;
1717
+ };
1718
+ position: {
1719
+ type: string;
1720
+ enum: string[];
1721
+ description: string;
1722
+ };
1723
+ siblingRemId: {
1724
+ type: string;
1725
+ description: string;
1726
+ };
1727
+ };
1728
+ required: string[];
1729
+ additionalProperties: boolean;
1730
+ };
1731
+ outputSchema: {
1732
+ type: "object";
1733
+ properties: {
1734
+ remIds: {
1735
+ type: string;
1736
+ items: {
1737
+ type: string;
1738
+ };
1739
+ description: string;
1740
+ };
1741
+ titles: {
1742
+ type: string;
1743
+ items: {
1744
+ type: string;
1745
+ };
1746
+ description: string;
1747
+ };
1748
+ };
1749
+ required: string[];
1750
+ };
1751
+ }, {
1752
+ name: string;
1753
+ description: string;
1754
+ inputSchema: {
1755
+ type: "object";
1756
+ properties: {
1757
+ parentRemId: {
1758
+ type: string;
1759
+ description: string;
1760
+ };
1761
+ content: {
1762
+ type: string;
1763
+ description: string;
1764
+ };
1765
+ };
1766
+ required: string[];
1767
+ additionalProperties: boolean;
1768
+ };
1769
+ outputSchema: {
1770
+ type: "object";
1771
+ properties: {
1772
+ remIds: {
1773
+ type: string;
1774
+ items: {
1775
+ type: string;
1776
+ };
1777
+ description: string;
1778
+ };
1779
+ titles: {
1780
+ type: string;
1781
+ items: {
1782
+ type: string;
1783
+ };
1784
+ description: string;
1785
+ };
1786
+ };
1787
+ required: string[];
1788
+ };
1789
+ }, {
1790
+ name: string;
1791
+ description: string;
1792
+ inputSchema: {
1793
+ type: "object";
1794
+ properties: {
1795
+ remId: {
1796
+ type: string;
1797
+ description: string;
1798
+ };
1799
+ addTagRemIds: {
1800
+ type: string;
1801
+ items: {
1802
+ type: string;
1803
+ };
1804
+ minItems: number;
1805
+ description: string;
1806
+ };
1807
+ removeTagRemIds: {
1808
+ type: string;
1809
+ items: {
1810
+ type: string;
1811
+ };
1812
+ minItems: number;
1813
+ description: string;
1814
+ };
1815
+ };
1816
+ required: string[];
1817
+ additionalProperties: boolean;
1818
+ };
1819
+ outputSchema: {
1820
+ type: "object";
1821
+ properties: {
1822
+ remIds: {
1823
+ type: string;
1824
+ items: {
1825
+ type: string;
1826
+ };
1827
+ description: string;
1828
+ };
1829
+ titles: {
1830
+ type: string;
1831
+ items: {
1832
+ type: string;
1833
+ };
1834
+ description: string;
1835
+ };
1836
+ };
1837
+ required: string[];
1838
+ };
1839
+ }, {
1840
+ name: string;
1841
+ description: string;
1842
+ inputSchema: {
1843
+ type: "object";
1844
+ properties: {
1845
+ content: {
1846
+ type: string;
1847
+ description: string;
1848
+ };
1849
+ timestamp: {
1850
+ type: string;
1851
+ description: string;
1852
+ };
1853
+ tagRemIds: {
1854
+ type: string;
1855
+ items: {
1856
+ type: string;
1857
+ };
1858
+ description: string;
1859
+ };
1860
+ };
1861
+ required: string[];
1862
+ additionalProperties: boolean;
1863
+ };
1864
+ outputSchema: {
1865
+ type: "object";
1866
+ properties: {
1867
+ remIds: {
1868
+ type: string;
1869
+ items: {
1870
+ type: string;
1871
+ };
1872
+ description: string;
1873
+ };
1874
+ titles: {
1875
+ type: string;
1876
+ items: {
1877
+ type: string;
1878
+ };
1879
+ description: string;
1880
+ };
1881
+ };
1882
+ required: string[];
1883
+ };
1884
+ }, {
1885
+ name: string;
1886
+ description: string;
1887
+ inputSchema: {
1888
+ type: "object";
1889
+ properties: {};
1890
+ };
1891
+ outputSchema: {
1892
+ type: "object";
1893
+ properties: {
1894
+ playbookVersion: {
1895
+ type: string;
1896
+ };
1897
+ summary: {
1898
+ type: string;
1899
+ };
1900
+ recommendedStatusCheck: {
1901
+ type: string;
1902
+ properties: {
1903
+ tool: {
1904
+ type: string;
1905
+ };
1906
+ cadence: {
1907
+ type: string;
1908
+ };
1909
+ rationale: {
1910
+ type: string;
1911
+ };
1912
+ };
1913
+ };
1914
+ decisionTree: {
1915
+ type: string;
1916
+ items: {
1917
+ type: string;
1918
+ };
1919
+ };
1920
+ navigationPresets: {
1921
+ type: string;
1922
+ properties: {
1923
+ orientation: {
1924
+ type: string;
1925
+ properties: {
1926
+ includeContent: {
1927
+ type: string;
1928
+ };
1929
+ depth: {
1930
+ type: string;
1931
+ };
1932
+ childLimit: {
1933
+ type: string;
1934
+ };
1935
+ };
1936
+ };
1937
+ };
1938
+ };
1939
+ contentModes: {
1940
+ type: string;
1941
+ properties: {
1942
+ structured: {
1943
+ type: string;
1944
+ };
1945
+ markdown: {
1946
+ type: string;
1947
+ };
1948
+ none: {
1949
+ type: string;
1950
+ };
1951
+ };
1952
+ };
1953
+ writePolicy: {
1954
+ type: string;
1955
+ properties: {
1956
+ statusTool: {
1957
+ type: string;
1958
+ };
1959
+ requiredFields: {
1960
+ type: string;
1961
+ items: {
1962
+ type: string;
1963
+ };
1964
+ };
1965
+ guidance: {
1966
+ type: string;
1967
+ items: {
1968
+ type: string;
1969
+ };
1970
+ };
1971
+ };
1972
+ };
1973
+ currentStatus: {
1974
+ type: string;
1975
+ description: string;
1976
+ };
1977
+ };
1978
+ required: string[];
1979
+ };
1980
+ }, {
1981
+ name: string;
1982
+ description: string;
1983
+ inputSchema: {
1984
+ type: "object";
1985
+ properties: {};
1986
+ };
1987
+ outputSchema: {
1988
+ type: "object";
1989
+ properties: {
1990
+ connected: {
1991
+ type: string;
1992
+ description: string;
1993
+ };
1994
+ serverVersion: {
1995
+ type: string;
1996
+ description: string;
1997
+ };
1998
+ pluginVersion: {
1999
+ type: string;
2000
+ description: string;
2001
+ };
2002
+ version_warning: {
2003
+ type: string;
2004
+ description: string;
2005
+ };
2006
+ acceptWriteOperations: {
2007
+ type: string;
2008
+ description: string;
2009
+ };
2010
+ acceptReplaceOperation: {
2011
+ type: string;
2012
+ description: string;
2013
+ };
2014
+ message: {
2015
+ type: string;
2016
+ description: string;
2017
+ };
2018
+ };
2019
+ required: string[];
2020
+ };
2021
+ }, {
2022
+ name: string;
2023
+ description: string;
2024
+ inputSchema: {
2025
+ type: "object";
2026
+ properties: {
2027
+ tableRemId: {
2028
+ type: string;
2029
+ description: string;
2030
+ };
2031
+ tableTitle: {
2032
+ type: string;
2033
+ description: string;
2034
+ };
2035
+ limit: {
2036
+ type: string;
2037
+ description: string;
2038
+ };
2039
+ offset: {
2040
+ type: string;
2041
+ description: string;
2042
+ };
2043
+ propertyFilter: {
2044
+ type: string;
2045
+ items: {
2046
+ type: string;
2047
+ };
2048
+ description: string;
2049
+ };
2050
+ };
2051
+ description: string;
2052
+ };
2053
+ outputSchema: {
2054
+ type: "object";
2055
+ properties: {
2056
+ tableId: {
2057
+ type: string;
2058
+ description: string;
2059
+ };
2060
+ tableName: {
2061
+ type: string;
2062
+ description: string;
2063
+ };
2064
+ columns: {
2065
+ type: string;
2066
+ description: string;
2067
+ items: {
2068
+ type: string;
2069
+ properties: {
2070
+ propertyId: {
2071
+ type: string;
2072
+ description: string;
2073
+ };
2074
+ name: {
2075
+ type: string;
2076
+ description: string;
2077
+ };
2078
+ type: {
2079
+ type: string;
2080
+ description: string;
2081
+ };
2082
+ };
2083
+ required: string[];
2084
+ };
2085
+ };
2086
+ rows: {
2087
+ type: string;
2088
+ description: string;
2089
+ items: {
2090
+ type: string;
2091
+ properties: {
2092
+ remId: {
2093
+ type: string;
2094
+ description: string;
2095
+ };
2096
+ name: {
2097
+ type: string;
2098
+ description: string;
2099
+ };
2100
+ values: {
2101
+ type: string;
2102
+ description: string;
2103
+ additionalProperties: {
2104
+ type: string;
2105
+ };
2106
+ };
2107
+ };
2108
+ required: string[];
2109
+ };
2110
+ };
2111
+ totalRows: {
2112
+ type: string;
2113
+ description: string;
2114
+ };
2115
+ rowsReturned: {
2116
+ type: string;
2117
+ description: string;
2118
+ };
2119
+ };
2120
+ required: string[];
2121
+ };
2122
+ }];
871
2123
  export declare function registerAllTools(server: Server, wsServer: WebSocketServer, logger: Logger): void;