remnote-mcp-server 0.15.0 → 0.16.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 (37) hide show
  1. package/CHANGELOG.md +34 -0
  2. package/README.md +11 -9
  3. package/dist/index.js +2 -7
  4. package/dist/index.js.map +1 -1
  5. package/dist/remnote-cli/cli.js +5 -2
  6. package/dist/remnote-cli/cli.js.map +1 -1
  7. package/dist/remnote-cli/client/mcp-server-client.d.ts +1 -0
  8. package/dist/remnote-cli/client/mcp-server-client.js +7 -4
  9. package/dist/remnote-cli/client/mcp-server-client.js.map +1 -1
  10. package/dist/remnote-cli/commands/create.js +3 -0
  11. package/dist/remnote-cli/commands/create.js.map +1 -1
  12. package/dist/remnote-cli/commands/read.js +17 -3
  13. package/dist/remnote-cli/commands/read.js.map +1 -1
  14. package/dist/remnote-cli/commands/search.d.ts +1 -0
  15. package/dist/remnote-cli/commands/search.js +88 -7
  16. package/dist/remnote-cli/commands/search.js.map +1 -1
  17. package/dist/remnote-cli/commands/write-actions.d.ts +2 -0
  18. package/dist/remnote-cli/commands/write-actions.js +106 -0
  19. package/dist/remnote-cli/commands/write-actions.js.map +1 -1
  20. package/dist/schemas/remnote-schemas.d.ts +73 -9
  21. package/dist/schemas/remnote-schemas.js +125 -48
  22. package/dist/schemas/remnote-schemas.js.map +1 -1
  23. package/dist/shutdown.d.ts +15 -0
  24. package/dist/shutdown.js +59 -0
  25. package/dist/shutdown.js.map +1 -0
  26. package/dist/tools/index.d.ts +2915 -618
  27. package/dist/tools/index.js +442 -23
  28. package/dist/tools/index.js.map +1 -1
  29. package/dist/websocket-server.d.ts +2 -1
  30. package/dist/websocket-server.js +6 -2
  31. package/dist/websocket-server.js.map +1 -1
  32. package/mcpb/remnote-local/manifest.json +16 -4
  33. package/mcpb/remnote-local/package.json +1 -1
  34. package/mcpb/remnote-local/remnote-local.mcpb +0 -0
  35. package/mcpb/remnote-local/server/fallback-tools.generated.js +160 -6
  36. package/mcpb/remnote-local/server/index.js +4 -2
  37. package/package.json +1 -1
@@ -26,6 +26,10 @@ export declare const CREATE_NOTE_TOOL: {
26
26
  };
27
27
  description: string;
28
28
  };
29
+ asDocument: {
30
+ type: string;
31
+ description: string;
32
+ };
29
33
  };
30
34
  required: never[];
31
35
  additionalProperties: boolean;
@@ -65,11 +69,24 @@ export declare const SEARCH_TOOL: {
65
69
  type: string;
66
70
  description: string;
67
71
  };
68
- includeContent: {
72
+ cursor: {
73
+ type: string;
74
+ description: string;
75
+ };
76
+ contentMode: {
77
+ type: string;
78
+ enum: string[];
79
+ description: string;
80
+ };
81
+ view: {
69
82
  type: string;
70
83
  enum: string[];
71
84
  description: string;
72
85
  };
86
+ ancestorDepth: {
87
+ type: string;
88
+ description: string;
89
+ };
73
90
  depth: {
74
91
  type: string;
75
92
  description: string;
@@ -106,6 +123,30 @@ export declare const SEARCH_TOOL: {
106
123
  type: string;
107
124
  description: string;
108
125
  };
126
+ inlineRefs: {
127
+ type: string;
128
+ items: {
129
+ type: "object";
130
+ properties: {
131
+ text: {
132
+ type: string;
133
+ description: string;
134
+ };
135
+ targetRemId: {
136
+ type: string;
137
+ description: string;
138
+ };
139
+ kind: {
140
+ type: string;
141
+ enum: string[];
142
+ description: string;
143
+ };
144
+ };
145
+ required: string[];
146
+ additionalProperties: boolean;
147
+ };
148
+ description: string;
149
+ };
109
150
  parentRemId: {
110
151
  type: string;
111
152
  description: string;
@@ -114,6 +155,33 @@ export declare const SEARCH_TOOL: {
114
155
  type: string;
115
156
  description: string;
116
157
  };
158
+ ancestors: {
159
+ type: string;
160
+ items: {
161
+ type: "object";
162
+ properties: {
163
+ remId: {
164
+ type: string;
165
+ description: string;
166
+ };
167
+ title: {
168
+ type: string;
169
+ description: string;
170
+ };
171
+ remType: {
172
+ type: string;
173
+ description: string;
174
+ };
175
+ };
176
+ required: string[];
177
+ additionalProperties: boolean;
178
+ };
179
+ description: string;
180
+ };
181
+ ancestorsTruncated: {
182
+ type: string;
183
+ description: string;
184
+ };
117
185
  aliases: {
118
186
  type: string;
119
187
  items: {
@@ -144,6 +212,124 @@ export declare const SEARCH_TOOL: {
144
212
  type: string;
145
213
  description: string;
146
214
  };
215
+ matchedRems: {
216
+ type: string;
217
+ items: {
218
+ type: "object";
219
+ properties: {
220
+ remId: {
221
+ type: string;
222
+ description: string;
223
+ };
224
+ title: {
225
+ type: string;
226
+ description: string;
227
+ };
228
+ headline: {
229
+ type: string;
230
+ description: string;
231
+ };
232
+ inlineRefs: {
233
+ type: string;
234
+ items: {
235
+ type: "object";
236
+ properties: {
237
+ text: {
238
+ type: string;
239
+ description: string;
240
+ };
241
+ targetRemId: {
242
+ type: string;
243
+ description: string;
244
+ };
245
+ kind: {
246
+ type: string;
247
+ enum: string[];
248
+ description: string;
249
+ };
250
+ };
251
+ required: string[];
252
+ additionalProperties: boolean;
253
+ };
254
+ description: string;
255
+ };
256
+ remType: {
257
+ type: string;
258
+ description: string;
259
+ };
260
+ parentRemId: {
261
+ type: string;
262
+ description: string;
263
+ };
264
+ parentTitle: {
265
+ type: string;
266
+ description: string;
267
+ };
268
+ ancestors: {
269
+ type: string;
270
+ items: {
271
+ type: "object";
272
+ properties: {
273
+ remId: {
274
+ type: string;
275
+ description: string;
276
+ };
277
+ title: {
278
+ type: string;
279
+ description: string;
280
+ };
281
+ remType: {
282
+ type: string;
283
+ description: string;
284
+ };
285
+ };
286
+ required: string[];
287
+ additionalProperties: boolean;
288
+ };
289
+ description: string;
290
+ };
291
+ ancestorsTruncated: {
292
+ type: string;
293
+ description: string;
294
+ };
295
+ tags: {
296
+ type: string;
297
+ items: {
298
+ type: "object";
299
+ properties: {
300
+ tagRemId: {
301
+ type: string;
302
+ description: string;
303
+ };
304
+ name: {
305
+ type: string;
306
+ description: string;
307
+ };
308
+ };
309
+ required: string[];
310
+ additionalProperties: boolean;
311
+ };
312
+ description: string;
313
+ };
314
+ };
315
+ required: string[];
316
+ additionalProperties: boolean;
317
+ };
318
+ description: string;
319
+ };
320
+ contextRemId: {
321
+ type: string;
322
+ description: string;
323
+ };
324
+ contextTitle: {
325
+ type: string;
326
+ description: string;
327
+ };
328
+ contextReason: {
329
+ type: string;
330
+ enum: string[];
331
+ description: string;
332
+ };
147
333
  cardDirection: {
148
334
  type: string;
149
335
  description: string;
@@ -170,6 +356,30 @@ export declare const SEARCH_TOOL: {
170
356
  type: string;
171
357
  description: string;
172
358
  };
359
+ inlineRefs: {
360
+ type: string;
361
+ items: {
362
+ type: "object";
363
+ properties: {
364
+ text: {
365
+ type: string;
366
+ description: string;
367
+ };
368
+ targetRemId: {
369
+ type: string;
370
+ description: string;
371
+ };
372
+ kind: {
373
+ type: string;
374
+ enum: string[];
375
+ description: string;
376
+ };
377
+ };
378
+ required: string[];
379
+ additionalProperties: boolean;
380
+ };
381
+ description: string;
382
+ };
173
383
  aliases: {
174
384
  type: string;
175
385
  items: {
@@ -236,6 +446,23 @@ export declare const SEARCH_TOOL: {
236
446
  };
237
447
  };
238
448
  };
449
+ hasMore: {
450
+ type: string;
451
+ description: string;
452
+ };
453
+ nextCursor: {
454
+ type: string;
455
+ description: string;
456
+ };
457
+ truncated: {
458
+ type: string;
459
+ description: string;
460
+ };
461
+ truncationReason: {
462
+ type: string;
463
+ enum: string[];
464
+ description: string;
465
+ };
239
466
  };
240
467
  };
241
468
  };
@@ -249,15 +476,29 @@ export declare const SEARCH_BY_TAG_TOOL: {
249
476
  type: string;
250
477
  description: string;
251
478
  };
479
+ resultMode: {
480
+ type: string;
481
+ enum: string[];
482
+ description: string;
483
+ };
252
484
  limit: {
253
485
  type: string;
254
486
  description: string;
255
487
  };
256
- includeContent: {
488
+ contentMode: {
489
+ type: string;
490
+ enum: string[];
491
+ description: string;
492
+ };
493
+ view: {
257
494
  type: string;
258
495
  enum: string[];
259
496
  description: string;
260
497
  };
498
+ ancestorDepth: {
499
+ type: string;
500
+ description: string;
501
+ };
261
502
  depth: {
262
503
  type: string;
263
504
  description: string;
@@ -270,6 +511,14 @@ export declare const SEARCH_BY_TAG_TOOL: {
270
511
  type: string;
271
512
  description: string;
272
513
  };
514
+ cursor: {
515
+ type: string;
516
+ description: string;
517
+ };
518
+ timeoutMs: {
519
+ type: string;
520
+ description: string;
521
+ };
273
522
  };
274
523
  required: string[];
275
524
  };
@@ -294,6 +543,30 @@ export declare const SEARCH_BY_TAG_TOOL: {
294
543
  type: string;
295
544
  description: string;
296
545
  };
546
+ inlineRefs: {
547
+ type: string;
548
+ items: {
549
+ type: "object";
550
+ properties: {
551
+ text: {
552
+ type: string;
553
+ description: string;
554
+ };
555
+ targetRemId: {
556
+ type: string;
557
+ description: string;
558
+ };
559
+ kind: {
560
+ type: string;
561
+ enum: string[];
562
+ description: string;
563
+ };
564
+ };
565
+ required: string[];
566
+ additionalProperties: boolean;
567
+ };
568
+ description: string;
569
+ };
297
570
  parentRemId: {
298
571
  type: string;
299
572
  description: string;
@@ -302,6 +575,33 @@ export declare const SEARCH_BY_TAG_TOOL: {
302
575
  type: string;
303
576
  description: string;
304
577
  };
578
+ ancestors: {
579
+ type: string;
580
+ items: {
581
+ type: "object";
582
+ properties: {
583
+ remId: {
584
+ type: string;
585
+ description: string;
586
+ };
587
+ title: {
588
+ type: string;
589
+ description: string;
590
+ };
591
+ remType: {
592
+ type: string;
593
+ description: string;
594
+ };
595
+ };
596
+ required: string[];
597
+ additionalProperties: boolean;
598
+ };
599
+ description: string;
600
+ };
601
+ ancestorsTruncated: {
602
+ type: string;
603
+ description: string;
604
+ };
305
605
  aliases: {
306
606
  type: string;
307
607
  items: {
@@ -332,11 +632,129 @@ export declare const SEARCH_BY_TAG_TOOL: {
332
632
  type: string;
333
633
  description: string;
334
634
  };
335
- cardDirection: {
336
- type: string;
337
- description: string;
338
- };
339
- content: {
635
+ matchedRems: {
636
+ type: string;
637
+ items: {
638
+ type: "object";
639
+ properties: {
640
+ remId: {
641
+ type: string;
642
+ description: string;
643
+ };
644
+ title: {
645
+ type: string;
646
+ description: string;
647
+ };
648
+ headline: {
649
+ type: string;
650
+ description: string;
651
+ };
652
+ inlineRefs: {
653
+ type: string;
654
+ items: {
655
+ type: "object";
656
+ properties: {
657
+ text: {
658
+ type: string;
659
+ description: string;
660
+ };
661
+ targetRemId: {
662
+ type: string;
663
+ description: string;
664
+ };
665
+ kind: {
666
+ type: string;
667
+ enum: string[];
668
+ description: string;
669
+ };
670
+ };
671
+ required: string[];
672
+ additionalProperties: boolean;
673
+ };
674
+ description: string;
675
+ };
676
+ remType: {
677
+ type: string;
678
+ description: string;
679
+ };
680
+ parentRemId: {
681
+ type: string;
682
+ description: string;
683
+ };
684
+ parentTitle: {
685
+ type: string;
686
+ description: string;
687
+ };
688
+ ancestors: {
689
+ type: string;
690
+ items: {
691
+ type: "object";
692
+ properties: {
693
+ remId: {
694
+ type: string;
695
+ description: string;
696
+ };
697
+ title: {
698
+ type: string;
699
+ description: string;
700
+ };
701
+ remType: {
702
+ type: string;
703
+ description: string;
704
+ };
705
+ };
706
+ required: string[];
707
+ additionalProperties: boolean;
708
+ };
709
+ description: string;
710
+ };
711
+ ancestorsTruncated: {
712
+ type: string;
713
+ description: string;
714
+ };
715
+ tags: {
716
+ type: string;
717
+ items: {
718
+ type: "object";
719
+ properties: {
720
+ tagRemId: {
721
+ type: string;
722
+ description: string;
723
+ };
724
+ name: {
725
+ type: string;
726
+ description: string;
727
+ };
728
+ };
729
+ required: string[];
730
+ additionalProperties: boolean;
731
+ };
732
+ description: string;
733
+ };
734
+ };
735
+ required: string[];
736
+ additionalProperties: boolean;
737
+ };
738
+ description: string;
739
+ };
740
+ contextRemId: {
741
+ type: string;
742
+ description: string;
743
+ };
744
+ contextTitle: {
745
+ type: string;
746
+ description: string;
747
+ };
748
+ contextReason: {
749
+ type: string;
750
+ enum: string[];
751
+ description: string;
752
+ };
753
+ cardDirection: {
754
+ type: string;
755
+ description: string;
756
+ };
757
+ content: {
340
758
  type: string;
341
759
  description: string;
342
760
  };
@@ -358,6 +776,30 @@ export declare const SEARCH_BY_TAG_TOOL: {
358
776
  type: string;
359
777
  description: string;
360
778
  };
779
+ inlineRefs: {
780
+ type: string;
781
+ items: {
782
+ type: "object";
783
+ properties: {
784
+ text: {
785
+ type: string;
786
+ description: string;
787
+ };
788
+ targetRemId: {
789
+ type: string;
790
+ description: string;
791
+ };
792
+ kind: {
793
+ type: string;
794
+ enum: string[];
795
+ description: string;
796
+ };
797
+ };
798
+ required: string[];
799
+ additionalProperties: boolean;
800
+ };
801
+ description: string;
802
+ };
361
803
  aliases: {
362
804
  type: string;
363
805
  items: {
@@ -424,6 +866,23 @@ export declare const SEARCH_BY_TAG_TOOL: {
424
866
  };
425
867
  };
426
868
  };
869
+ hasMore: {
870
+ type: string;
871
+ description: string;
872
+ };
873
+ nextCursor: {
874
+ type: string;
875
+ description: string;
876
+ };
877
+ truncated: {
878
+ type: string;
879
+ description: string;
880
+ };
881
+ truncationReason: {
882
+ type: string;
883
+ enum: string[];
884
+ description: string;
885
+ };
427
886
  };
428
887
  };
429
888
  };
@@ -441,11 +900,20 @@ export declare const READ_NOTE_TOOL: {
441
900
  type: string;
442
901
  description: string;
443
902
  };
444
- includeContent: {
903
+ contentMode: {
904
+ type: string;
905
+ enum: string[];
906
+ description: string;
907
+ };
908
+ view: {
445
909
  type: string;
446
910
  enum: string[];
447
911
  description: string;
448
912
  };
913
+ ancestorDepth: {
914
+ type: string;
915
+ description: string;
916
+ };
449
917
  childLimit: {
450
918
  type: string;
451
919
  description: string;
@@ -472,6 +940,30 @@ export declare const READ_NOTE_TOOL: {
472
940
  type: string;
473
941
  description: string;
474
942
  };
943
+ inlineRefs: {
944
+ type: string;
945
+ items: {
946
+ type: "object";
947
+ properties: {
948
+ text: {
949
+ type: string;
950
+ description: string;
951
+ };
952
+ targetRemId: {
953
+ type: string;
954
+ description: string;
955
+ };
956
+ kind: {
957
+ type: string;
958
+ enum: string[];
959
+ description: string;
960
+ };
961
+ };
962
+ required: string[];
963
+ additionalProperties: boolean;
964
+ };
965
+ description: string;
966
+ };
475
967
  parentRemId: {
476
968
  type: string;
477
969
  description: string;
@@ -480,6 +972,33 @@ export declare const READ_NOTE_TOOL: {
480
972
  type: string;
481
973
  description: string;
482
974
  };
975
+ ancestors: {
976
+ type: string;
977
+ items: {
978
+ type: "object";
979
+ properties: {
980
+ remId: {
981
+ type: string;
982
+ description: string;
983
+ };
984
+ title: {
985
+ type: string;
986
+ description: string;
987
+ };
988
+ remType: {
989
+ type: string;
990
+ description: string;
991
+ };
992
+ };
993
+ required: string[];
994
+ additionalProperties: boolean;
995
+ };
996
+ description: string;
997
+ };
998
+ ancestorsTruncated: {
999
+ type: string;
1000
+ description: string;
1001
+ };
483
1002
  aliases: {
484
1003
  type: string;
485
1004
  items: {
@@ -536,6 +1055,30 @@ export declare const READ_NOTE_TOOL: {
536
1055
  type: string;
537
1056
  description: string;
538
1057
  };
1058
+ inlineRefs: {
1059
+ type: string;
1060
+ items: {
1061
+ type: "object";
1062
+ properties: {
1063
+ text: {
1064
+ type: string;
1065
+ description: string;
1066
+ };
1067
+ targetRemId: {
1068
+ type: string;
1069
+ description: string;
1070
+ };
1071
+ kind: {
1072
+ type: string;
1073
+ enum: string[];
1074
+ description: string;
1075
+ };
1076
+ };
1077
+ required: string[];
1078
+ additionalProperties: boolean;
1079
+ };
1080
+ description: string;
1081
+ };
539
1082
  aliases: {
540
1083
  type: string;
541
1084
  items: {
@@ -602,133 +1145,1960 @@ export declare const READ_NOTE_TOOL: {
602
1145
  };
603
1146
  };
604
1147
  };
605
- export declare const UPDATE_NOTE_TOOL: {
1148
+ export declare const LIST_CHILDREN_TOOL: {
606
1149
  name: string;
607
1150
  description: string;
608
1151
  inputSchema: {
609
1152
  type: "object";
610
1153
  properties: {
611
- remId: {
612
- type: string;
613
- description: string;
614
- };
615
- title: {
616
- type: string;
617
- description: string;
618
- };
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: {
1154
+ parentRemId: {
634
1155
  type: string;
635
- items: {
636
- type: string;
637
- };
638
1156
  description: string;
639
1157
  };
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: {
1158
+ limit: {
651
1159
  type: string;
652
1160
  description: string;
653
1161
  };
654
- content: {
1162
+ cursor: {
655
1163
  type: string;
656
1164
  description: string;
657
1165
  };
658
- position: {
1166
+ view: {
659
1167
  type: string;
660
1168
  enum: string[];
661
1169
  description: string;
662
1170
  };
663
- siblingRemId: {
1171
+ ancestorDepth: {
664
1172
  type: string;
665
1173
  description: string;
666
1174
  };
667
1175
  };
668
1176
  required: string[];
669
- additionalProperties: boolean;
670
1177
  };
671
1178
  outputSchema: {
672
1179
  type: "object";
673
1180
  properties: {
674
- remIds: {
1181
+ children: {
675
1182
  type: string;
676
1183
  items: {
677
1184
  type: string;
678
- };
679
- description: string;
680
- };
1185
+ properties: {
1186
+ remId: {
1187
+ type: string;
1188
+ description: string;
1189
+ };
1190
+ title: {
1191
+ type: string;
1192
+ description: string;
1193
+ };
1194
+ headline: {
1195
+ type: string;
1196
+ description: string;
1197
+ };
1198
+ inlineRefs: {
1199
+ type: string;
1200
+ items: {
1201
+ type: "object";
1202
+ properties: {
1203
+ text: {
1204
+ type: string;
1205
+ description: string;
1206
+ };
1207
+ targetRemId: {
1208
+ type: string;
1209
+ description: string;
1210
+ };
1211
+ kind: {
1212
+ type: string;
1213
+ enum: string[];
1214
+ description: string;
1215
+ };
1216
+ };
1217
+ required: string[];
1218
+ additionalProperties: boolean;
1219
+ };
1220
+ description: string;
1221
+ };
1222
+ parentRemId: {
1223
+ type: string;
1224
+ description: string;
1225
+ };
1226
+ parentTitle: {
1227
+ type: string;
1228
+ description: string;
1229
+ };
1230
+ ancestors: {
1231
+ type: string;
1232
+ items: {
1233
+ type: "object";
1234
+ properties: {
1235
+ remId: {
1236
+ type: string;
1237
+ description: string;
1238
+ };
1239
+ title: {
1240
+ type: string;
1241
+ description: string;
1242
+ };
1243
+ remType: {
1244
+ type: string;
1245
+ description: string;
1246
+ };
1247
+ };
1248
+ required: string[];
1249
+ additionalProperties: boolean;
1250
+ };
1251
+ description: string;
1252
+ };
1253
+ ancestorsTruncated: {
1254
+ type: string;
1255
+ description: string;
1256
+ };
1257
+ aliases: {
1258
+ type: string;
1259
+ items: {
1260
+ type: string;
1261
+ };
1262
+ description: string;
1263
+ };
1264
+ tags: {
1265
+ type: string;
1266
+ items: {
1267
+ type: "object";
1268
+ properties: {
1269
+ tagRemId: {
1270
+ type: string;
1271
+ description: string;
1272
+ };
1273
+ name: {
1274
+ type: string;
1275
+ description: string;
1276
+ };
1277
+ };
1278
+ required: string[];
1279
+ additionalProperties: boolean;
1280
+ };
1281
+ description: string;
1282
+ };
1283
+ remType: {
1284
+ type: string;
1285
+ description: string;
1286
+ };
1287
+ matchedRems: {
1288
+ type: string;
1289
+ items: {
1290
+ type: "object";
1291
+ properties: {
1292
+ remId: {
1293
+ type: string;
1294
+ description: string;
1295
+ };
1296
+ title: {
1297
+ type: string;
1298
+ description: string;
1299
+ };
1300
+ headline: {
1301
+ type: string;
1302
+ description: string;
1303
+ };
1304
+ inlineRefs: {
1305
+ type: string;
1306
+ items: {
1307
+ type: "object";
1308
+ properties: {
1309
+ text: {
1310
+ type: string;
1311
+ description: string;
1312
+ };
1313
+ targetRemId: {
1314
+ type: string;
1315
+ description: string;
1316
+ };
1317
+ kind: {
1318
+ type: string;
1319
+ enum: string[];
1320
+ description: string;
1321
+ };
1322
+ };
1323
+ required: string[];
1324
+ additionalProperties: boolean;
1325
+ };
1326
+ description: string;
1327
+ };
1328
+ remType: {
1329
+ type: string;
1330
+ description: string;
1331
+ };
1332
+ parentRemId: {
1333
+ type: string;
1334
+ description: string;
1335
+ };
1336
+ parentTitle: {
1337
+ type: string;
1338
+ description: string;
1339
+ };
1340
+ ancestors: {
1341
+ type: string;
1342
+ items: {
1343
+ type: "object";
1344
+ properties: {
1345
+ remId: {
1346
+ type: string;
1347
+ description: string;
1348
+ };
1349
+ title: {
1350
+ type: string;
1351
+ description: string;
1352
+ };
1353
+ remType: {
1354
+ type: string;
1355
+ description: string;
1356
+ };
1357
+ };
1358
+ required: string[];
1359
+ additionalProperties: boolean;
1360
+ };
1361
+ description: string;
1362
+ };
1363
+ ancestorsTruncated: {
1364
+ type: string;
1365
+ description: string;
1366
+ };
1367
+ tags: {
1368
+ type: string;
1369
+ items: {
1370
+ type: "object";
1371
+ properties: {
1372
+ tagRemId: {
1373
+ type: string;
1374
+ description: string;
1375
+ };
1376
+ name: {
1377
+ type: string;
1378
+ description: string;
1379
+ };
1380
+ };
1381
+ required: string[];
1382
+ additionalProperties: boolean;
1383
+ };
1384
+ description: string;
1385
+ };
1386
+ };
1387
+ required: string[];
1388
+ additionalProperties: boolean;
1389
+ };
1390
+ description: string;
1391
+ };
1392
+ contextRemId: {
1393
+ type: string;
1394
+ description: string;
1395
+ };
1396
+ contextTitle: {
1397
+ type: string;
1398
+ description: string;
1399
+ };
1400
+ contextReason: {
1401
+ type: string;
1402
+ enum: string[];
1403
+ description: string;
1404
+ };
1405
+ cardDirection: {
1406
+ type: string;
1407
+ description: string;
1408
+ };
1409
+ content: {
1410
+ type: string;
1411
+ description: string;
1412
+ };
1413
+ contentStructured: {
1414
+ type: string;
1415
+ description: string;
1416
+ items: {
1417
+ type: string;
1418
+ properties: {
1419
+ remId: {
1420
+ type: string;
1421
+ description: string;
1422
+ };
1423
+ title: {
1424
+ type: string;
1425
+ description: string;
1426
+ };
1427
+ headline: {
1428
+ type: string;
1429
+ description: string;
1430
+ };
1431
+ inlineRefs: {
1432
+ type: string;
1433
+ items: {
1434
+ type: "object";
1435
+ properties: {
1436
+ text: {
1437
+ type: string;
1438
+ description: string;
1439
+ };
1440
+ targetRemId: {
1441
+ type: string;
1442
+ description: string;
1443
+ };
1444
+ kind: {
1445
+ type: string;
1446
+ enum: string[];
1447
+ description: string;
1448
+ };
1449
+ };
1450
+ required: string[];
1451
+ additionalProperties: boolean;
1452
+ };
1453
+ description: string;
1454
+ };
1455
+ aliases: {
1456
+ type: string;
1457
+ items: {
1458
+ type: string;
1459
+ };
1460
+ description: string;
1461
+ };
1462
+ tags: {
1463
+ type: string;
1464
+ items: {
1465
+ type: "object";
1466
+ properties: {
1467
+ tagRemId: {
1468
+ type: string;
1469
+ description: string;
1470
+ };
1471
+ name: {
1472
+ type: string;
1473
+ description: string;
1474
+ };
1475
+ };
1476
+ required: string[];
1477
+ additionalProperties: boolean;
1478
+ };
1479
+ description: string;
1480
+ };
1481
+ remType: {
1482
+ type: string;
1483
+ description: string;
1484
+ };
1485
+ cardDirection: {
1486
+ type: string;
1487
+ description: string;
1488
+ };
1489
+ children: {
1490
+ type: string;
1491
+ description: string;
1492
+ items: {
1493
+ type: string;
1494
+ };
1495
+ };
1496
+ };
1497
+ required: string[];
1498
+ };
1499
+ };
1500
+ contentProperties: {
1501
+ type: string;
1502
+ description: string;
1503
+ properties: {
1504
+ childrenRendered: {
1505
+ type: string;
1506
+ description: string;
1507
+ };
1508
+ childrenTotal: {
1509
+ type: string;
1510
+ description: string;
1511
+ };
1512
+ contentTruncated: {
1513
+ type: string;
1514
+ description: string;
1515
+ };
1516
+ };
1517
+ };
1518
+ };
1519
+ };
1520
+ };
1521
+ hasMore: {
1522
+ type: string;
1523
+ description: string;
1524
+ };
1525
+ nextCursor: {
1526
+ type: string;
1527
+ description: string;
1528
+ };
1529
+ totalChildren: {
1530
+ type: string;
1531
+ description: string;
1532
+ };
1533
+ };
1534
+ };
1535
+ };
1536
+ export declare const MOVE_NOTE_TOOL: {
1537
+ name: string;
1538
+ description: string;
1539
+ inputSchema: {
1540
+ type: "object";
1541
+ properties: {
1542
+ remId: {
1543
+ type: string;
1544
+ description: string;
1545
+ };
1546
+ newParentRemId: {
1547
+ type: string;
1548
+ description: string;
1549
+ };
1550
+ position: {
1551
+ type: string;
1552
+ enum: string[];
1553
+ description: string;
1554
+ };
1555
+ siblingRemId: {
1556
+ type: string;
1557
+ description: string;
1558
+ };
1559
+ dryRun: {
1560
+ type: string;
1561
+ description: string;
1562
+ };
1563
+ expectedOldParentRemId: {
1564
+ type: string;
1565
+ description: string;
1566
+ };
1567
+ ancestorDepth: {
1568
+ type: string;
1569
+ description: string;
1570
+ };
1571
+ };
1572
+ required: string[];
1573
+ };
1574
+ outputSchema: {
1575
+ type: "object";
1576
+ properties: {
1577
+ remId: {
1578
+ type: string;
1579
+ };
1580
+ title: {
1581
+ type: string;
1582
+ };
1583
+ dryRun: {
1584
+ type: string;
1585
+ };
1586
+ oldParentRemId: {
1587
+ type: string;
1588
+ };
1589
+ oldParentTitle: {
1590
+ type: string;
1591
+ };
1592
+ newParentRemId: {
1593
+ type: string;
1594
+ };
1595
+ newParentTitle: {
1596
+ type: string;
1597
+ };
1598
+ position: {
1599
+ type: string;
1600
+ enum: string[];
1601
+ };
1602
+ siblingRemId: {
1603
+ type: string;
1604
+ };
1605
+ ancestorsBefore: {
1606
+ type: string;
1607
+ items: {
1608
+ type: "object";
1609
+ properties: {
1610
+ remId: {
1611
+ type: string;
1612
+ description: string;
1613
+ };
1614
+ title: {
1615
+ type: string;
1616
+ description: string;
1617
+ };
1618
+ remType: {
1619
+ type: string;
1620
+ description: string;
1621
+ };
1622
+ };
1623
+ required: string[];
1624
+ additionalProperties: boolean;
1625
+ };
1626
+ };
1627
+ ancestorsBeforeTruncated: {
1628
+ type: string;
1629
+ };
1630
+ ancestorsAfter: {
1631
+ type: string;
1632
+ items: {
1633
+ type: "object";
1634
+ properties: {
1635
+ remId: {
1636
+ type: string;
1637
+ description: string;
1638
+ };
1639
+ title: {
1640
+ type: string;
1641
+ description: string;
1642
+ };
1643
+ remType: {
1644
+ type: string;
1645
+ description: string;
1646
+ };
1647
+ };
1648
+ required: string[];
1649
+ additionalProperties: boolean;
1650
+ };
1651
+ };
1652
+ ancestorsAfterTruncated: {
1653
+ type: string;
1654
+ };
1655
+ };
1656
+ required: string[];
1657
+ };
1658
+ };
1659
+ export declare const UPDATE_NOTE_TOOL: {
1660
+ name: string;
1661
+ description: string;
1662
+ inputSchema: {
1663
+ type: "object";
1664
+ properties: {
1665
+ remId: {
1666
+ type: string;
1667
+ description: string;
1668
+ };
1669
+ title: {
1670
+ type: string;
1671
+ description: string;
1672
+ };
1673
+ };
1674
+ required: string[];
1675
+ additionalProperties: boolean;
1676
+ };
1677
+ outputSchema: {
1678
+ type: "object";
1679
+ properties: {
1680
+ remIds: {
1681
+ type: string;
1682
+ items: {
1683
+ type: string;
1684
+ };
1685
+ description: string;
1686
+ };
1687
+ titles: {
1688
+ type: string;
1689
+ items: {
1690
+ type: string;
1691
+ };
1692
+ description: string;
1693
+ };
1694
+ };
1695
+ required: string[];
1696
+ };
1697
+ };
1698
+ export declare const SET_DOCUMENT_STATUS_TOOL: {
1699
+ name: string;
1700
+ description: string;
1701
+ inputSchema: {
1702
+ type: "object";
1703
+ properties: {
1704
+ remId: {
1705
+ type: string;
1706
+ description: string;
1707
+ };
1708
+ isDocument: {
1709
+ type: string;
1710
+ description: string;
1711
+ };
1712
+ dryRun: {
1713
+ type: string;
1714
+ description: string;
1715
+ };
1716
+ expectedOldRemType: {
1717
+ type: string;
1718
+ enum: string[];
1719
+ description: string;
1720
+ };
1721
+ };
1722
+ required: string[];
1723
+ additionalProperties: boolean;
1724
+ };
1725
+ outputSchema: {
1726
+ type: "object";
1727
+ properties: {
1728
+ remId: {
1729
+ type: string;
1730
+ description: string;
1731
+ };
1732
+ title: {
1733
+ type: string;
1734
+ description: string;
1735
+ };
1736
+ oldRemType: {
1737
+ type: string;
1738
+ description: string;
1739
+ };
1740
+ newRemType: {
1741
+ type: string;
1742
+ description: string;
1743
+ };
1744
+ oldIsDocument: {
1745
+ type: string;
1746
+ description: string;
1747
+ };
1748
+ newIsDocument: {
1749
+ type: string;
1750
+ description: string;
1751
+ };
1752
+ requestedIsDocument: {
1753
+ type: string;
1754
+ description: string;
1755
+ };
1756
+ dryRun: {
1757
+ type: string;
1758
+ description: string;
1759
+ };
1760
+ changed: {
1761
+ type: string;
1762
+ description: string;
1763
+ };
1764
+ wouldChange: {
1765
+ type: string;
1766
+ description: string;
1767
+ };
1768
+ sdkSupportsDocumentStatus: {
1769
+ type: string;
1770
+ description: string;
1771
+ };
1772
+ warnings: {
1773
+ type: string;
1774
+ items: {
1775
+ type: string;
1776
+ };
1777
+ description: string;
1778
+ };
1779
+ cardDirectionBefore: {
1780
+ type: string;
1781
+ description: string;
1782
+ };
1783
+ cardDirectionAfter: {
1784
+ type: string;
1785
+ description: string;
1786
+ };
1787
+ };
1788
+ required: string[];
1789
+ };
1790
+ };
1791
+ export declare const INSERT_CHILDREN_TOOL: {
1792
+ name: string;
1793
+ description: string;
1794
+ inputSchema: {
1795
+ type: "object";
1796
+ properties: {
1797
+ parentRemId: {
1798
+ type: string;
1799
+ description: string;
1800
+ };
1801
+ content: {
1802
+ type: string;
1803
+ description: string;
1804
+ };
1805
+ position: {
1806
+ type: string;
1807
+ enum: string[];
1808
+ description: string;
1809
+ };
1810
+ siblingRemId: {
1811
+ type: string;
1812
+ description: string;
1813
+ };
1814
+ };
1815
+ required: string[];
1816
+ additionalProperties: boolean;
1817
+ };
1818
+ outputSchema: {
1819
+ type: "object";
1820
+ properties: {
1821
+ remIds: {
1822
+ type: string;
1823
+ items: {
1824
+ type: string;
1825
+ };
1826
+ description: string;
1827
+ };
1828
+ titles: {
1829
+ type: string;
1830
+ items: {
1831
+ type: string;
1832
+ };
1833
+ description: string;
1834
+ };
1835
+ };
1836
+ required: string[];
1837
+ };
1838
+ };
1839
+ export declare const REPLACE_CHILDREN_TOOL: {
1840
+ name: string;
1841
+ description: string;
1842
+ inputSchema: {
1843
+ type: "object";
1844
+ properties: {
1845
+ parentRemId: {
1846
+ type: string;
1847
+ description: string;
1848
+ };
1849
+ content: {
1850
+ type: string;
1851
+ description: string;
1852
+ };
1853
+ };
1854
+ required: string[];
1855
+ additionalProperties: boolean;
1856
+ };
1857
+ outputSchema: {
1858
+ type: "object";
1859
+ properties: {
1860
+ remIds: {
1861
+ type: string;
1862
+ items: {
1863
+ type: string;
1864
+ };
1865
+ description: string;
1866
+ };
1867
+ titles: {
1868
+ type: string;
1869
+ items: {
1870
+ type: string;
1871
+ };
1872
+ description: string;
1873
+ };
1874
+ };
1875
+ required: string[];
1876
+ };
1877
+ };
1878
+ export declare const UPDATE_TAGS_TOOL: {
1879
+ name: string;
1880
+ description: string;
1881
+ inputSchema: {
1882
+ type: "object";
1883
+ properties: {
1884
+ remId: {
1885
+ type: string;
1886
+ description: string;
1887
+ };
1888
+ addTagRemIds: {
1889
+ type: string;
1890
+ items: {
1891
+ type: string;
1892
+ };
1893
+ minItems: number;
1894
+ description: string;
1895
+ };
1896
+ removeTagRemIds: {
1897
+ type: string;
1898
+ items: {
1899
+ type: string;
1900
+ };
1901
+ minItems: number;
1902
+ description: string;
1903
+ };
1904
+ };
1905
+ required: string[];
1906
+ additionalProperties: boolean;
1907
+ };
1908
+ outputSchema: {
1909
+ type: "object";
1910
+ properties: {
1911
+ remIds: {
1912
+ type: string;
1913
+ items: {
1914
+ type: string;
1915
+ };
1916
+ description: string;
1917
+ };
1918
+ titles: {
1919
+ type: string;
1920
+ items: {
1921
+ type: string;
1922
+ };
1923
+ description: string;
1924
+ };
1925
+ };
1926
+ required: string[];
1927
+ };
1928
+ };
1929
+ export declare const APPEND_JOURNAL_TOOL: {
1930
+ name: string;
1931
+ description: string;
1932
+ inputSchema: {
1933
+ type: "object";
1934
+ properties: {
1935
+ content: {
1936
+ type: string;
1937
+ description: string;
1938
+ };
1939
+ timestamp: {
1940
+ type: string;
1941
+ description: string;
1942
+ };
1943
+ tagRemIds: {
1944
+ type: string;
1945
+ items: {
1946
+ type: string;
1947
+ };
1948
+ description: string;
1949
+ };
1950
+ };
1951
+ required: string[];
1952
+ additionalProperties: boolean;
1953
+ };
1954
+ outputSchema: {
1955
+ type: "object";
1956
+ properties: {
1957
+ remIds: {
1958
+ type: string;
1959
+ items: {
1960
+ type: string;
1961
+ };
1962
+ description: string;
1963
+ };
1964
+ titles: {
1965
+ type: string;
1966
+ items: {
1967
+ type: string;
1968
+ };
1969
+ description: string;
1970
+ };
1971
+ };
1972
+ required: string[];
1973
+ };
1974
+ };
1975
+ export declare const STATUS_TOOL: {
1976
+ name: string;
1977
+ description: string;
1978
+ inputSchema: {
1979
+ type: "object";
1980
+ properties: {};
1981
+ };
1982
+ outputSchema: {
1983
+ type: "object";
1984
+ properties: {
1985
+ connected: {
1986
+ type: string;
1987
+ description: string;
1988
+ };
1989
+ serverVersion: {
1990
+ type: string;
1991
+ description: string;
1992
+ };
1993
+ pluginVersion: {
1994
+ type: string;
1995
+ description: string;
1996
+ };
1997
+ version_warning: {
1998
+ type: string;
1999
+ description: string;
2000
+ };
2001
+ acceptWriteOperations: {
2002
+ type: string;
2003
+ description: string;
2004
+ };
2005
+ acceptReplaceOperation: {
2006
+ type: string;
2007
+ description: string;
2008
+ };
2009
+ message: {
2010
+ type: string;
2011
+ description: string;
2012
+ };
2013
+ };
2014
+ required: string[];
2015
+ };
2016
+ };
2017
+ export declare const READ_TABLE_TOOL: {
2018
+ name: string;
2019
+ description: string;
2020
+ inputSchema: {
2021
+ type: "object";
2022
+ properties: {
2023
+ tableRemId: {
2024
+ type: string;
2025
+ description: string;
2026
+ };
2027
+ tableTitle: {
2028
+ type: string;
2029
+ description: string;
2030
+ };
2031
+ limit: {
2032
+ type: string;
2033
+ description: string;
2034
+ };
2035
+ offset: {
2036
+ type: string;
2037
+ description: string;
2038
+ };
2039
+ propertyFilter: {
2040
+ type: string;
2041
+ items: {
2042
+ type: string;
2043
+ };
2044
+ description: string;
2045
+ };
2046
+ };
2047
+ description: string;
2048
+ };
2049
+ outputSchema: {
2050
+ type: "object";
2051
+ properties: {
2052
+ tableId: {
2053
+ type: string;
2054
+ description: string;
2055
+ };
2056
+ tableName: {
2057
+ type: string;
2058
+ description: string;
2059
+ };
2060
+ columns: {
2061
+ type: string;
2062
+ description: string;
2063
+ items: {
2064
+ type: string;
2065
+ properties: {
2066
+ propertyId: {
2067
+ type: string;
2068
+ description: string;
2069
+ };
2070
+ name: {
2071
+ type: string;
2072
+ description: string;
2073
+ };
2074
+ type: {
2075
+ type: string;
2076
+ description: string;
2077
+ };
2078
+ };
2079
+ required: string[];
2080
+ };
2081
+ };
2082
+ rows: {
2083
+ type: string;
2084
+ description: string;
2085
+ items: {
2086
+ type: string;
2087
+ properties: {
2088
+ remId: {
2089
+ type: string;
2090
+ description: string;
2091
+ };
2092
+ name: {
2093
+ type: string;
2094
+ description: string;
2095
+ };
2096
+ values: {
2097
+ type: string;
2098
+ description: string;
2099
+ additionalProperties: {
2100
+ type: string;
2101
+ };
2102
+ };
2103
+ };
2104
+ required: string[];
2105
+ };
2106
+ };
2107
+ totalRows: {
2108
+ type: string;
2109
+ description: string;
2110
+ };
2111
+ rowsReturned: {
2112
+ type: string;
2113
+ description: string;
2114
+ };
2115
+ };
2116
+ required: string[];
2117
+ };
2118
+ };
2119
+ export declare const PLAYBOOK_TOOL: {
2120
+ name: string;
2121
+ description: string;
2122
+ inputSchema: {
2123
+ type: "object";
2124
+ properties: {};
2125
+ };
2126
+ outputSchema: {
2127
+ type: "object";
2128
+ properties: {
2129
+ playbookVersion: {
2130
+ type: string;
2131
+ };
2132
+ summary: {
2133
+ type: string;
2134
+ };
2135
+ recommendedStatusCheck: {
2136
+ type: string;
2137
+ properties: {
2138
+ tool: {
2139
+ type: string;
2140
+ };
2141
+ cadence: {
2142
+ type: string;
2143
+ };
2144
+ rationale: {
2145
+ type: string;
2146
+ };
2147
+ };
2148
+ };
2149
+ decisionTree: {
2150
+ type: string;
2151
+ items: {
2152
+ type: string;
2153
+ };
2154
+ };
2155
+ navigationPresets: {
2156
+ type: string;
2157
+ properties: {
2158
+ orientation: {
2159
+ type: string;
2160
+ properties: {
2161
+ contentMode: {
2162
+ type: string;
2163
+ };
2164
+ view: {
2165
+ type: string;
2166
+ };
2167
+ depth: {
2168
+ type: string;
2169
+ };
2170
+ childLimit: {
2171
+ type: string;
2172
+ };
2173
+ };
2174
+ };
2175
+ };
2176
+ };
2177
+ contentModes: {
2178
+ type: string;
2179
+ properties: {
2180
+ structured: {
2181
+ type: string;
2182
+ };
2183
+ markdown: {
2184
+ type: string;
2185
+ };
2186
+ none: {
2187
+ type: string;
2188
+ };
2189
+ };
2190
+ };
2191
+ writePolicy: {
2192
+ type: string;
2193
+ properties: {
2194
+ statusTool: {
2195
+ type: string;
2196
+ };
2197
+ requiredFields: {
2198
+ type: string;
2199
+ items: {
2200
+ type: string;
2201
+ };
2202
+ };
2203
+ guidance: {
2204
+ type: string;
2205
+ items: {
2206
+ type: string;
2207
+ };
2208
+ };
2209
+ };
2210
+ };
2211
+ currentStatus: {
2212
+ type: string;
2213
+ description: string;
2214
+ };
2215
+ };
2216
+ required: string[];
2217
+ };
2218
+ };
2219
+ export declare const ALL_TOOLS: readonly [{
2220
+ name: string;
2221
+ description: string;
2222
+ inputSchema: {
2223
+ type: "object";
2224
+ properties: {
2225
+ title: {
2226
+ type: string;
2227
+ description: string;
2228
+ };
2229
+ content: {
2230
+ type: string;
2231
+ description: string;
2232
+ };
2233
+ parentId: {
2234
+ type: string;
2235
+ description: string;
2236
+ };
2237
+ tagRemIds: {
2238
+ type: string;
2239
+ items: {
2240
+ type: string;
2241
+ };
2242
+ description: string;
2243
+ };
2244
+ asDocument: {
2245
+ type: string;
2246
+ description: string;
2247
+ };
2248
+ };
2249
+ required: never[];
2250
+ additionalProperties: boolean;
2251
+ };
2252
+ outputSchema: {
2253
+ type: "object";
2254
+ properties: {
2255
+ remIds: {
2256
+ type: string;
2257
+ items: {
2258
+ type: string;
2259
+ };
2260
+ description: string;
2261
+ };
681
2262
  titles: {
682
2263
  type: string;
683
2264
  items: {
684
2265
  type: string;
685
2266
  };
686
- description: string;
2267
+ description: string;
2268
+ };
2269
+ };
2270
+ required: string[];
2271
+ };
2272
+ }, {
2273
+ name: string;
2274
+ description: string;
2275
+ inputSchema: {
2276
+ type: "object";
2277
+ properties: {
2278
+ query: {
2279
+ type: string;
2280
+ description: string;
2281
+ };
2282
+ limit: {
2283
+ type: string;
2284
+ description: string;
2285
+ };
2286
+ cursor: {
2287
+ type: string;
2288
+ description: string;
2289
+ };
2290
+ contentMode: {
2291
+ type: string;
2292
+ enum: string[];
2293
+ description: string;
2294
+ };
2295
+ view: {
2296
+ type: string;
2297
+ enum: string[];
2298
+ description: string;
2299
+ };
2300
+ ancestorDepth: {
2301
+ type: string;
2302
+ description: string;
2303
+ };
2304
+ depth: {
2305
+ type: string;
2306
+ description: string;
2307
+ };
2308
+ childLimit: {
2309
+ type: string;
2310
+ description: string;
2311
+ };
2312
+ maxContentLength: {
2313
+ type: string;
2314
+ description: string;
2315
+ };
2316
+ };
2317
+ required: string[];
2318
+ };
2319
+ outputSchema: {
2320
+ type: "object";
2321
+ properties: {
2322
+ results: {
2323
+ type: string;
2324
+ description: string;
2325
+ items: {
2326
+ type: string;
2327
+ properties: {
2328
+ remId: {
2329
+ type: string;
2330
+ description: string;
2331
+ };
2332
+ title: {
2333
+ type: string;
2334
+ description: string;
2335
+ };
2336
+ headline: {
2337
+ type: string;
2338
+ description: string;
2339
+ };
2340
+ inlineRefs: {
2341
+ type: string;
2342
+ items: {
2343
+ type: "object";
2344
+ properties: {
2345
+ text: {
2346
+ type: string;
2347
+ description: string;
2348
+ };
2349
+ targetRemId: {
2350
+ type: string;
2351
+ description: string;
2352
+ };
2353
+ kind: {
2354
+ type: string;
2355
+ enum: string[];
2356
+ description: string;
2357
+ };
2358
+ };
2359
+ required: string[];
2360
+ additionalProperties: boolean;
2361
+ };
2362
+ description: string;
2363
+ };
2364
+ parentRemId: {
2365
+ type: string;
2366
+ description: string;
2367
+ };
2368
+ parentTitle: {
2369
+ type: string;
2370
+ description: string;
2371
+ };
2372
+ ancestors: {
2373
+ type: string;
2374
+ items: {
2375
+ type: "object";
2376
+ properties: {
2377
+ remId: {
2378
+ type: string;
2379
+ description: string;
2380
+ };
2381
+ title: {
2382
+ type: string;
2383
+ description: string;
2384
+ };
2385
+ remType: {
2386
+ type: string;
2387
+ description: string;
2388
+ };
2389
+ };
2390
+ required: string[];
2391
+ additionalProperties: boolean;
2392
+ };
2393
+ description: string;
2394
+ };
2395
+ ancestorsTruncated: {
2396
+ type: string;
2397
+ description: string;
2398
+ };
2399
+ aliases: {
2400
+ type: string;
2401
+ items: {
2402
+ type: string;
2403
+ };
2404
+ description: string;
2405
+ };
2406
+ tags: {
2407
+ type: string;
2408
+ items: {
2409
+ type: "object";
2410
+ properties: {
2411
+ tagRemId: {
2412
+ type: string;
2413
+ description: string;
2414
+ };
2415
+ name: {
2416
+ type: string;
2417
+ description: string;
2418
+ };
2419
+ };
2420
+ required: string[];
2421
+ additionalProperties: boolean;
2422
+ };
2423
+ description: string;
2424
+ };
2425
+ remType: {
2426
+ type: string;
2427
+ description: string;
2428
+ };
2429
+ matchedRems: {
2430
+ type: string;
2431
+ items: {
2432
+ type: "object";
2433
+ properties: {
2434
+ remId: {
2435
+ type: string;
2436
+ description: string;
2437
+ };
2438
+ title: {
2439
+ type: string;
2440
+ description: string;
2441
+ };
2442
+ headline: {
2443
+ type: string;
2444
+ description: string;
2445
+ };
2446
+ inlineRefs: {
2447
+ type: string;
2448
+ items: {
2449
+ type: "object";
2450
+ properties: {
2451
+ text: {
2452
+ type: string;
2453
+ description: string;
2454
+ };
2455
+ targetRemId: {
2456
+ type: string;
2457
+ description: string;
2458
+ };
2459
+ kind: {
2460
+ type: string;
2461
+ enum: string[];
2462
+ description: string;
2463
+ };
2464
+ };
2465
+ required: string[];
2466
+ additionalProperties: boolean;
2467
+ };
2468
+ description: string;
2469
+ };
2470
+ remType: {
2471
+ type: string;
2472
+ description: string;
2473
+ };
2474
+ parentRemId: {
2475
+ type: string;
2476
+ description: string;
2477
+ };
2478
+ parentTitle: {
2479
+ type: string;
2480
+ description: string;
2481
+ };
2482
+ ancestors: {
2483
+ type: string;
2484
+ items: {
2485
+ type: "object";
2486
+ properties: {
2487
+ remId: {
2488
+ type: string;
2489
+ description: string;
2490
+ };
2491
+ title: {
2492
+ type: string;
2493
+ description: string;
2494
+ };
2495
+ remType: {
2496
+ type: string;
2497
+ description: string;
2498
+ };
2499
+ };
2500
+ required: string[];
2501
+ additionalProperties: boolean;
2502
+ };
2503
+ description: string;
2504
+ };
2505
+ ancestorsTruncated: {
2506
+ type: string;
2507
+ description: string;
2508
+ };
2509
+ tags: {
2510
+ type: string;
2511
+ items: {
2512
+ type: "object";
2513
+ properties: {
2514
+ tagRemId: {
2515
+ type: string;
2516
+ description: string;
2517
+ };
2518
+ name: {
2519
+ type: string;
2520
+ description: string;
2521
+ };
2522
+ };
2523
+ required: string[];
2524
+ additionalProperties: boolean;
2525
+ };
2526
+ description: string;
2527
+ };
2528
+ };
2529
+ required: string[];
2530
+ additionalProperties: boolean;
2531
+ };
2532
+ description: string;
2533
+ };
2534
+ contextRemId: {
2535
+ type: string;
2536
+ description: string;
2537
+ };
2538
+ contextTitle: {
2539
+ type: string;
2540
+ description: string;
2541
+ };
2542
+ contextReason: {
2543
+ type: string;
2544
+ enum: string[];
2545
+ description: string;
2546
+ };
2547
+ cardDirection: {
2548
+ type: string;
2549
+ description: string;
2550
+ };
2551
+ content: {
2552
+ type: string;
2553
+ description: string;
2554
+ };
2555
+ contentStructured: {
2556
+ type: string;
2557
+ description: string;
2558
+ items: {
2559
+ type: string;
2560
+ properties: {
2561
+ remId: {
2562
+ type: string;
2563
+ description: string;
2564
+ };
2565
+ title: {
2566
+ type: string;
2567
+ description: string;
2568
+ };
2569
+ headline: {
2570
+ type: string;
2571
+ description: string;
2572
+ };
2573
+ inlineRefs: {
2574
+ type: string;
2575
+ items: {
2576
+ type: "object";
2577
+ properties: {
2578
+ text: {
2579
+ type: string;
2580
+ description: string;
2581
+ };
2582
+ targetRemId: {
2583
+ type: string;
2584
+ description: string;
2585
+ };
2586
+ kind: {
2587
+ type: string;
2588
+ enum: string[];
2589
+ description: string;
2590
+ };
2591
+ };
2592
+ required: string[];
2593
+ additionalProperties: boolean;
2594
+ };
2595
+ description: string;
2596
+ };
2597
+ aliases: {
2598
+ type: string;
2599
+ items: {
2600
+ type: string;
2601
+ };
2602
+ description: string;
2603
+ };
2604
+ tags: {
2605
+ type: string;
2606
+ items: {
2607
+ type: "object";
2608
+ properties: {
2609
+ tagRemId: {
2610
+ type: string;
2611
+ description: string;
2612
+ };
2613
+ name: {
2614
+ type: string;
2615
+ description: string;
2616
+ };
2617
+ };
2618
+ required: string[];
2619
+ additionalProperties: boolean;
2620
+ };
2621
+ description: string;
2622
+ };
2623
+ remType: {
2624
+ type: string;
2625
+ description: string;
2626
+ };
2627
+ cardDirection: {
2628
+ type: string;
2629
+ description: string;
2630
+ };
2631
+ children: {
2632
+ type: string;
2633
+ description: string;
2634
+ items: {
2635
+ type: string;
2636
+ };
2637
+ };
2638
+ };
2639
+ required: string[];
2640
+ };
2641
+ };
2642
+ contentProperties: {
2643
+ type: string;
2644
+ description: string;
2645
+ properties: {
2646
+ childrenRendered: {
2647
+ type: string;
2648
+ description: string;
2649
+ };
2650
+ childrenTotal: {
2651
+ type: string;
2652
+ description: string;
2653
+ };
2654
+ contentTruncated: {
2655
+ type: string;
2656
+ description: string;
2657
+ };
2658
+ };
2659
+ };
2660
+ };
2661
+ };
2662
+ };
2663
+ hasMore: {
2664
+ type: string;
2665
+ description: string;
2666
+ };
2667
+ nextCursor: {
2668
+ type: string;
2669
+ description: string;
2670
+ };
2671
+ truncated: {
2672
+ type: string;
2673
+ description: string;
2674
+ };
2675
+ truncationReason: {
2676
+ type: string;
2677
+ enum: string[];
2678
+ description: string;
2679
+ };
2680
+ };
2681
+ };
2682
+ }, {
2683
+ name: string;
2684
+ description: string;
2685
+ inputSchema: {
2686
+ type: "object";
2687
+ properties: {
2688
+ tagRemId: {
2689
+ type: string;
2690
+ description: string;
2691
+ };
2692
+ resultMode: {
2693
+ type: string;
2694
+ enum: string[];
2695
+ description: string;
2696
+ };
2697
+ limit: {
2698
+ type: string;
2699
+ description: string;
2700
+ };
2701
+ contentMode: {
2702
+ type: string;
2703
+ enum: string[];
2704
+ description: string;
2705
+ };
2706
+ view: {
2707
+ type: string;
2708
+ enum: string[];
2709
+ description: string;
2710
+ };
2711
+ ancestorDepth: {
2712
+ type: string;
2713
+ description: string;
2714
+ };
2715
+ depth: {
2716
+ type: string;
2717
+ description: string;
2718
+ };
2719
+ childLimit: {
2720
+ type: string;
2721
+ description: string;
2722
+ };
2723
+ maxContentLength: {
2724
+ type: string;
2725
+ description: string;
2726
+ };
2727
+ cursor: {
2728
+ type: string;
2729
+ description: string;
2730
+ };
2731
+ timeoutMs: {
2732
+ type: string;
2733
+ description: string;
2734
+ };
2735
+ };
2736
+ required: string[];
2737
+ };
2738
+ outputSchema: {
2739
+ type: "object";
2740
+ properties: {
2741
+ results: {
2742
+ type: string;
2743
+ description: string;
2744
+ items: {
2745
+ type: string;
2746
+ properties: {
2747
+ remId: {
2748
+ type: string;
2749
+ description: string;
2750
+ };
2751
+ title: {
2752
+ type: string;
2753
+ description: string;
2754
+ };
2755
+ headline: {
2756
+ type: string;
2757
+ description: string;
2758
+ };
2759
+ inlineRefs: {
2760
+ type: string;
2761
+ items: {
2762
+ type: "object";
2763
+ properties: {
2764
+ text: {
2765
+ type: string;
2766
+ description: string;
2767
+ };
2768
+ targetRemId: {
2769
+ type: string;
2770
+ description: string;
2771
+ };
2772
+ kind: {
2773
+ type: string;
2774
+ enum: string[];
2775
+ description: string;
2776
+ };
2777
+ };
2778
+ required: string[];
2779
+ additionalProperties: boolean;
2780
+ };
2781
+ description: string;
2782
+ };
2783
+ parentRemId: {
2784
+ type: string;
2785
+ description: string;
2786
+ };
2787
+ parentTitle: {
2788
+ type: string;
2789
+ description: string;
2790
+ };
2791
+ ancestors: {
2792
+ type: string;
2793
+ items: {
2794
+ type: "object";
2795
+ properties: {
2796
+ remId: {
2797
+ type: string;
2798
+ description: string;
2799
+ };
2800
+ title: {
2801
+ type: string;
2802
+ description: string;
2803
+ };
2804
+ remType: {
2805
+ type: string;
2806
+ description: string;
2807
+ };
2808
+ };
2809
+ required: string[];
2810
+ additionalProperties: boolean;
2811
+ };
2812
+ description: string;
2813
+ };
2814
+ ancestorsTruncated: {
2815
+ type: string;
2816
+ description: string;
2817
+ };
2818
+ aliases: {
2819
+ type: string;
2820
+ items: {
2821
+ type: string;
2822
+ };
2823
+ description: string;
2824
+ };
2825
+ tags: {
2826
+ type: string;
2827
+ items: {
2828
+ type: "object";
2829
+ properties: {
2830
+ tagRemId: {
2831
+ type: string;
2832
+ description: string;
2833
+ };
2834
+ name: {
2835
+ type: string;
2836
+ description: string;
2837
+ };
2838
+ };
2839
+ required: string[];
2840
+ additionalProperties: boolean;
2841
+ };
2842
+ description: string;
2843
+ };
2844
+ remType: {
2845
+ type: string;
2846
+ description: string;
2847
+ };
2848
+ matchedRems: {
2849
+ type: string;
2850
+ items: {
2851
+ type: "object";
2852
+ properties: {
2853
+ remId: {
2854
+ type: string;
2855
+ description: string;
2856
+ };
2857
+ title: {
2858
+ type: string;
2859
+ description: string;
2860
+ };
2861
+ headline: {
2862
+ type: string;
2863
+ description: string;
2864
+ };
2865
+ inlineRefs: {
2866
+ type: string;
2867
+ items: {
2868
+ type: "object";
2869
+ properties: {
2870
+ text: {
2871
+ type: string;
2872
+ description: string;
2873
+ };
2874
+ targetRemId: {
2875
+ type: string;
2876
+ description: string;
2877
+ };
2878
+ kind: {
2879
+ type: string;
2880
+ enum: string[];
2881
+ description: string;
2882
+ };
2883
+ };
2884
+ required: string[];
2885
+ additionalProperties: boolean;
2886
+ };
2887
+ description: string;
2888
+ };
2889
+ remType: {
2890
+ type: string;
2891
+ description: string;
2892
+ };
2893
+ parentRemId: {
2894
+ type: string;
2895
+ description: string;
2896
+ };
2897
+ parentTitle: {
2898
+ type: string;
2899
+ description: string;
2900
+ };
2901
+ ancestors: {
2902
+ type: string;
2903
+ items: {
2904
+ type: "object";
2905
+ properties: {
2906
+ remId: {
2907
+ type: string;
2908
+ description: string;
2909
+ };
2910
+ title: {
2911
+ type: string;
2912
+ description: string;
2913
+ };
2914
+ remType: {
2915
+ type: string;
2916
+ description: string;
2917
+ };
2918
+ };
2919
+ required: string[];
2920
+ additionalProperties: boolean;
2921
+ };
2922
+ description: string;
2923
+ };
2924
+ ancestorsTruncated: {
2925
+ type: string;
2926
+ description: string;
2927
+ };
2928
+ tags: {
2929
+ type: string;
2930
+ items: {
2931
+ type: "object";
2932
+ properties: {
2933
+ tagRemId: {
2934
+ type: string;
2935
+ description: string;
2936
+ };
2937
+ name: {
2938
+ type: string;
2939
+ description: string;
2940
+ };
2941
+ };
2942
+ required: string[];
2943
+ additionalProperties: boolean;
2944
+ };
2945
+ description: string;
2946
+ };
2947
+ };
2948
+ required: string[];
2949
+ additionalProperties: boolean;
2950
+ };
2951
+ description: string;
2952
+ };
2953
+ contextRemId: {
2954
+ type: string;
2955
+ description: string;
2956
+ };
2957
+ contextTitle: {
2958
+ type: string;
2959
+ description: string;
2960
+ };
2961
+ contextReason: {
2962
+ type: string;
2963
+ enum: string[];
2964
+ description: string;
2965
+ };
2966
+ cardDirection: {
2967
+ type: string;
2968
+ description: string;
2969
+ };
2970
+ content: {
2971
+ type: string;
2972
+ description: string;
2973
+ };
2974
+ contentStructured: {
2975
+ type: string;
2976
+ description: string;
2977
+ items: {
2978
+ type: string;
2979
+ properties: {
2980
+ remId: {
2981
+ type: string;
2982
+ description: string;
2983
+ };
2984
+ title: {
2985
+ type: string;
2986
+ description: string;
2987
+ };
2988
+ headline: {
2989
+ type: string;
2990
+ description: string;
2991
+ };
2992
+ inlineRefs: {
2993
+ type: string;
2994
+ items: {
2995
+ type: "object";
2996
+ properties: {
2997
+ text: {
2998
+ type: string;
2999
+ description: string;
3000
+ };
3001
+ targetRemId: {
3002
+ type: string;
3003
+ description: string;
3004
+ };
3005
+ kind: {
3006
+ type: string;
3007
+ enum: string[];
3008
+ description: string;
3009
+ };
3010
+ };
3011
+ required: string[];
3012
+ additionalProperties: boolean;
3013
+ };
3014
+ description: string;
3015
+ };
3016
+ aliases: {
3017
+ type: string;
3018
+ items: {
3019
+ type: string;
3020
+ };
3021
+ description: string;
3022
+ };
3023
+ tags: {
3024
+ type: string;
3025
+ items: {
3026
+ type: "object";
3027
+ properties: {
3028
+ tagRemId: {
3029
+ type: string;
3030
+ description: string;
3031
+ };
3032
+ name: {
3033
+ type: string;
3034
+ description: string;
3035
+ };
3036
+ };
3037
+ required: string[];
3038
+ additionalProperties: boolean;
3039
+ };
3040
+ description: string;
3041
+ };
3042
+ remType: {
3043
+ type: string;
3044
+ description: string;
3045
+ };
3046
+ cardDirection: {
3047
+ type: string;
3048
+ description: string;
3049
+ };
3050
+ children: {
3051
+ type: string;
3052
+ description: string;
3053
+ items: {
3054
+ type: string;
3055
+ };
3056
+ };
3057
+ };
3058
+ required: string[];
3059
+ };
3060
+ };
3061
+ contentProperties: {
3062
+ type: string;
3063
+ description: string;
3064
+ properties: {
3065
+ childrenRendered: {
3066
+ type: string;
3067
+ description: string;
3068
+ };
3069
+ childrenTotal: {
3070
+ type: string;
3071
+ description: string;
3072
+ };
3073
+ contentTruncated: {
3074
+ type: string;
3075
+ description: string;
3076
+ };
3077
+ };
3078
+ };
3079
+ };
3080
+ };
687
3081
  };
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: {
3082
+ hasMore: {
699
3083
  type: string;
700
3084
  description: string;
701
3085
  };
702
- content: {
3086
+ nextCursor: {
703
3087
  type: string;
704
3088
  description: string;
705
3089
  };
706
- };
707
- required: string[];
708
- additionalProperties: boolean;
709
- };
710
- outputSchema: {
711
- type: "object";
712
- properties: {
713
- remIds: {
3090
+ truncated: {
714
3091
  type: string;
715
- items: {
716
- type: string;
717
- };
718
3092
  description: string;
719
3093
  };
720
- titles: {
3094
+ truncationReason: {
721
3095
  type: string;
722
- items: {
723
- type: string;
724
- };
3096
+ enum: string[];
725
3097
  description: string;
726
3098
  };
727
3099
  };
728
- required: string[];
729
3100
  };
730
- };
731
- export declare const UPDATE_TAGS_TOOL: {
3101
+ }, {
732
3102
  name: string;
733
3103
  description: string;
734
3104
  inputSchema: {
@@ -738,382 +3108,253 @@ export declare const UPDATE_TAGS_TOOL: {
738
3108
  type: string;
739
3109
  description: string;
740
3110
  };
741
- addTagRemIds: {
742
- type: string;
743
- items: {
744
- type: string;
745
- };
746
- minItems: number;
747
- description: string;
748
- };
749
- removeTagRemIds: {
750
- type: string;
751
- items: {
752
- type: string;
753
- };
754
- minItems: number;
755
- description: string;
756
- };
757
- };
758
- required: string[];
759
- additionalProperties: boolean;
760
- };
761
- outputSchema: {
762
- type: "object";
763
- properties: {
764
- remIds: {
765
- type: string;
766
- items: {
767
- type: string;
768
- };
769
- description: string;
770
- };
771
- titles: {
772
- type: string;
773
- items: {
774
- type: string;
775
- };
776
- description: string;
777
- };
778
- };
779
- required: string[];
780
- };
781
- };
782
- export declare const APPEND_JOURNAL_TOOL: {
783
- name: string;
784
- description: string;
785
- inputSchema: {
786
- type: "object";
787
- properties: {
788
- content: {
789
- type: string;
790
- description: string;
791
- };
792
- timestamp: {
793
- type: string;
794
- description: string;
795
- };
796
- tagRemIds: {
797
- type: string;
798
- items: {
799
- type: string;
800
- };
801
- description: string;
802
- };
803
- };
804
- required: string[];
805
- additionalProperties: boolean;
806
- };
807
- outputSchema: {
808
- type: "object";
809
- properties: {
810
- remIds: {
811
- type: string;
812
- items: {
813
- type: string;
814
- };
815
- description: string;
816
- };
817
- titles: {
818
- type: string;
819
- items: {
820
- type: string;
821
- };
822
- description: string;
823
- };
824
- };
825
- required: string[];
826
- };
827
- };
828
- export declare const STATUS_TOOL: {
829
- name: string;
830
- description: string;
831
- inputSchema: {
832
- type: "object";
833
- properties: {};
834
- };
835
- outputSchema: {
836
- type: "object";
837
- properties: {
838
- connected: {
839
- type: string;
840
- description: string;
841
- };
842
- serverVersion: {
843
- type: string;
844
- description: string;
845
- };
846
- pluginVersion: {
847
- type: string;
848
- description: string;
849
- };
850
- version_warning: {
851
- type: string;
852
- description: string;
853
- };
854
- acceptWriteOperations: {
855
- type: string;
856
- description: string;
857
- };
858
- acceptReplaceOperation: {
859
- type: string;
860
- description: string;
861
- };
862
- message: {
863
- type: string;
864
- description: string;
865
- };
866
- };
867
- required: string[];
868
- };
869
- };
870
- export declare const READ_TABLE_TOOL: {
871
- name: string;
872
- description: string;
873
- inputSchema: {
874
- type: "object";
875
- properties: {
876
- tableRemId: {
877
- type: string;
878
- description: string;
879
- };
880
- tableTitle: {
3111
+ depth: {
881
3112
  type: string;
882
3113
  description: string;
883
3114
  };
884
- limit: {
3115
+ contentMode: {
885
3116
  type: string;
3117
+ enum: string[];
886
3118
  description: string;
887
3119
  };
888
- offset: {
3120
+ view: {
889
3121
  type: string;
3122
+ enum: string[];
890
3123
  description: string;
891
3124
  };
892
- propertyFilter: {
3125
+ ancestorDepth: {
3126
+ type: string;
3127
+ description: string;
3128
+ };
3129
+ childLimit: {
3130
+ type: string;
3131
+ description: string;
3132
+ };
3133
+ maxContentLength: {
893
3134
  type: string;
894
- items: {
895
- type: string;
896
- };
897
3135
  description: string;
898
3136
  };
899
3137
  };
900
- description: string;
3138
+ required: string[];
901
3139
  };
902
3140
  outputSchema: {
903
3141
  type: "object";
904
3142
  properties: {
905
- tableId: {
3143
+ remId: {
906
3144
  type: string;
907
3145
  description: string;
908
3146
  };
909
- tableName: {
3147
+ title: {
910
3148
  type: string;
911
3149
  description: string;
912
3150
  };
913
- columns: {
3151
+ headline: {
914
3152
  type: string;
915
3153
  description: string;
3154
+ };
3155
+ inlineRefs: {
3156
+ type: string;
916
3157
  items: {
917
- type: string;
3158
+ type: "object";
918
3159
  properties: {
919
- propertyId: {
3160
+ text: {
920
3161
  type: string;
921
3162
  description: string;
922
3163
  };
923
- name: {
3164
+ targetRemId: {
924
3165
  type: string;
925
3166
  description: string;
926
3167
  };
927
- type: {
3168
+ kind: {
928
3169
  type: string;
3170
+ enum: string[];
929
3171
  description: string;
930
3172
  };
931
3173
  };
932
3174
  required: string[];
3175
+ additionalProperties: boolean;
933
3176
  };
3177
+ description: string;
934
3178
  };
935
- rows: {
3179
+ parentRemId: {
3180
+ type: string;
3181
+ description: string;
3182
+ };
3183
+ parentTitle: {
936
3184
  type: string;
937
3185
  description: string;
3186
+ };
3187
+ ancestors: {
3188
+ type: string;
938
3189
  items: {
939
- type: string;
3190
+ type: "object";
940
3191
  properties: {
941
3192
  remId: {
942
3193
  type: string;
943
3194
  description: string;
944
3195
  };
945
- name: {
3196
+ title: {
946
3197
  type: string;
947
3198
  description: string;
948
3199
  };
949
- values: {
3200
+ remType: {
950
3201
  type: string;
951
3202
  description: string;
952
- additionalProperties: {
953
- type: string;
954
- };
955
3203
  };
956
3204
  };
957
3205
  required: string[];
3206
+ additionalProperties: boolean;
958
3207
  };
959
- };
960
- totalRows: {
961
- type: string;
962
3208
  description: string;
963
3209
  };
964
- rowsReturned: {
3210
+ ancestorsTruncated: {
965
3211
  type: string;
966
3212
  description: string;
967
3213
  };
968
- };
969
- required: string[];
970
- };
971
- };
972
- export declare const PLAYBOOK_TOOL: {
973
- name: string;
974
- description: string;
975
- inputSchema: {
976
- type: "object";
977
- properties: {};
978
- };
979
- outputSchema: {
980
- type: "object";
981
- properties: {
982
- playbookVersion: {
983
- type: string;
984
- };
985
- summary: {
986
- type: string;
987
- };
988
- recommendedStatusCheck: {
989
- type: string;
990
- properties: {
991
- tool: {
992
- type: string;
993
- };
994
- cadence: {
995
- type: string;
996
- };
997
- rationale: {
998
- type: string;
999
- };
1000
- };
1001
- };
1002
- decisionTree: {
3214
+ aliases: {
1003
3215
  type: string;
1004
3216
  items: {
1005
3217
  type: string;
1006
3218
  };
3219
+ description: string;
1007
3220
  };
1008
- navigationPresets: {
1009
- type: string;
1010
- properties: {
1011
- orientation: {
1012
- type: string;
1013
- properties: {
1014
- includeContent: {
1015
- type: string;
1016
- };
1017
- depth: {
1018
- type: string;
1019
- };
1020
- childLimit: {
1021
- type: string;
1022
- };
1023
- };
1024
- };
1025
- };
1026
- };
1027
- contentModes: {
1028
- type: string;
1029
- properties: {
1030
- structured: {
1031
- type: string;
1032
- };
1033
- markdown: {
1034
- type: string;
1035
- };
1036
- none: {
1037
- type: string;
1038
- };
1039
- };
1040
- };
1041
- writePolicy: {
3221
+ tags: {
1042
3222
  type: string;
1043
- properties: {
1044
- statusTool: {
1045
- type: string;
1046
- };
1047
- requiredFields: {
1048
- type: string;
1049
- items: {
3223
+ items: {
3224
+ type: "object";
3225
+ properties: {
3226
+ tagRemId: {
1050
3227
  type: string;
3228
+ description: string;
1051
3229
  };
1052
- };
1053
- guidance: {
1054
- type: string;
1055
- items: {
3230
+ name: {
1056
3231
  type: string;
3232
+ description: string;
1057
3233
  };
1058
3234
  };
3235
+ required: string[];
3236
+ additionalProperties: boolean;
1059
3237
  };
1060
- };
1061
- currentStatus: {
1062
- type: string;
1063
3238
  description: string;
1064
3239
  };
1065
- };
1066
- required: string[];
1067
- };
1068
- };
1069
- export declare const ALL_TOOLS: readonly [{
1070
- name: string;
1071
- description: string;
1072
- inputSchema: {
1073
- type: "object";
1074
- properties: {
1075
- title: {
3240
+ remType: {
1076
3241
  type: string;
1077
3242
  description: string;
1078
3243
  };
1079
- content: {
3244
+ cardDirection: {
1080
3245
  type: string;
1081
3246
  description: string;
1082
3247
  };
1083
- parentId: {
3248
+ content: {
1084
3249
  type: string;
1085
3250
  description: string;
1086
3251
  };
1087
- tagRemIds: {
3252
+ contentStructured: {
1088
3253
  type: string;
1089
- items: {
1090
- type: string;
1091
- };
1092
3254
  description: string;
1093
- };
1094
- };
1095
- required: never[];
1096
- additionalProperties: boolean;
1097
- };
1098
- outputSchema: {
1099
- type: "object";
1100
- properties: {
1101
- remIds: {
1102
- type: string;
1103
3255
  items: {
1104
3256
  type: string;
3257
+ properties: {
3258
+ remId: {
3259
+ type: string;
3260
+ description: string;
3261
+ };
3262
+ title: {
3263
+ type: string;
3264
+ description: string;
3265
+ };
3266
+ headline: {
3267
+ type: string;
3268
+ description: string;
3269
+ };
3270
+ inlineRefs: {
3271
+ type: string;
3272
+ items: {
3273
+ type: "object";
3274
+ properties: {
3275
+ text: {
3276
+ type: string;
3277
+ description: string;
3278
+ };
3279
+ targetRemId: {
3280
+ type: string;
3281
+ description: string;
3282
+ };
3283
+ kind: {
3284
+ type: string;
3285
+ enum: string[];
3286
+ description: string;
3287
+ };
3288
+ };
3289
+ required: string[];
3290
+ additionalProperties: boolean;
3291
+ };
3292
+ description: string;
3293
+ };
3294
+ aliases: {
3295
+ type: string;
3296
+ items: {
3297
+ type: string;
3298
+ };
3299
+ description: string;
3300
+ };
3301
+ tags: {
3302
+ type: string;
3303
+ items: {
3304
+ type: "object";
3305
+ properties: {
3306
+ tagRemId: {
3307
+ type: string;
3308
+ description: string;
3309
+ };
3310
+ name: {
3311
+ type: string;
3312
+ description: string;
3313
+ };
3314
+ };
3315
+ required: string[];
3316
+ additionalProperties: boolean;
3317
+ };
3318
+ description: string;
3319
+ };
3320
+ remType: {
3321
+ type: string;
3322
+ description: string;
3323
+ };
3324
+ cardDirection: {
3325
+ type: string;
3326
+ description: string;
3327
+ };
3328
+ children: {
3329
+ type: string;
3330
+ description: string;
3331
+ items: {
3332
+ type: string;
3333
+ };
3334
+ };
3335
+ };
3336
+ required: string[];
1105
3337
  };
1106
- description: string;
1107
3338
  };
1108
- titles: {
3339
+ contentProperties: {
1109
3340
  type: string;
1110
- items: {
1111
- type: string;
1112
- };
1113
3341
  description: string;
3342
+ properties: {
3343
+ childrenRendered: {
3344
+ type: string;
3345
+ description: string;
3346
+ };
3347
+ childrenTotal: {
3348
+ type: string;
3349
+ description: string;
3350
+ };
3351
+ contentTruncated: {
3352
+ type: string;
3353
+ description: string;
3354
+ };
3355
+ };
1114
3356
  };
1115
3357
  };
1116
- required: string[];
1117
3358
  };
1118
3359
  }, {
1119
3360
  name: string;
@@ -1121,7 +3362,7 @@ export declare const ALL_TOOLS: readonly [{
1121
3362
  inputSchema: {
1122
3363
  type: "object";
1123
3364
  properties: {
1124
- query: {
3365
+ parentRemId: {
1125
3366
  type: string;
1126
3367
  description: string;
1127
3368
  };
@@ -1129,20 +3370,16 @@ export declare const ALL_TOOLS: readonly [{
1129
3370
  type: string;
1130
3371
  description: string;
1131
3372
  };
1132
- includeContent: {
1133
- type: string;
1134
- enum: string[];
1135
- description: string;
1136
- };
1137
- depth: {
3373
+ cursor: {
1138
3374
  type: string;
1139
3375
  description: string;
1140
3376
  };
1141
- childLimit: {
3377
+ view: {
1142
3378
  type: string;
3379
+ enum: string[];
1143
3380
  description: string;
1144
3381
  };
1145
- maxContentLength: {
3382
+ ancestorDepth: {
1146
3383
  type: string;
1147
3384
  description: string;
1148
3385
  };
@@ -1152,9 +3389,8 @@ export declare const ALL_TOOLS: readonly [{
1152
3389
  outputSchema: {
1153
3390
  type: "object";
1154
3391
  properties: {
1155
- results: {
3392
+ children: {
1156
3393
  type: string;
1157
- description: string;
1158
3394
  items: {
1159
3395
  type: string;
1160
3396
  properties: {
@@ -1170,6 +3406,30 @@ export declare const ALL_TOOLS: readonly [{
1170
3406
  type: string;
1171
3407
  description: string;
1172
3408
  };
3409
+ inlineRefs: {
3410
+ type: string;
3411
+ items: {
3412
+ type: "object";
3413
+ properties: {
3414
+ text: {
3415
+ type: string;
3416
+ description: string;
3417
+ };
3418
+ targetRemId: {
3419
+ type: string;
3420
+ description: string;
3421
+ };
3422
+ kind: {
3423
+ type: string;
3424
+ enum: string[];
3425
+ description: string;
3426
+ };
3427
+ };
3428
+ required: string[];
3429
+ additionalProperties: boolean;
3430
+ };
3431
+ description: string;
3432
+ };
1173
3433
  parentRemId: {
1174
3434
  type: string;
1175
3435
  description: string;
@@ -1178,6 +3438,33 @@ export declare const ALL_TOOLS: readonly [{
1178
3438
  type: string;
1179
3439
  description: string;
1180
3440
  };
3441
+ ancestors: {
3442
+ type: string;
3443
+ items: {
3444
+ type: "object";
3445
+ properties: {
3446
+ remId: {
3447
+ type: string;
3448
+ description: string;
3449
+ };
3450
+ title: {
3451
+ type: string;
3452
+ description: string;
3453
+ };
3454
+ remType: {
3455
+ type: string;
3456
+ description: string;
3457
+ };
3458
+ };
3459
+ required: string[];
3460
+ additionalProperties: boolean;
3461
+ };
3462
+ description: string;
3463
+ };
3464
+ ancestorsTruncated: {
3465
+ type: string;
3466
+ description: string;
3467
+ };
1181
3468
  aliases: {
1182
3469
  type: string;
1183
3470
  items: {
@@ -1208,19 +3495,10 @@ export declare const ALL_TOOLS: readonly [{
1208
3495
  type: string;
1209
3496
  description: string;
1210
3497
  };
1211
- cardDirection: {
1212
- type: string;
1213
- description: string;
1214
- };
1215
- content: {
1216
- type: string;
1217
- description: string;
1218
- };
1219
- contentStructured: {
3498
+ matchedRems: {
1220
3499
  type: string;
1221
- description: string;
1222
3500
  items: {
1223
- type: string;
3501
+ type: "object";
1224
3502
  properties: {
1225
3503
  remId: {
1226
3504
  type: string;
@@ -1234,26 +3512,24 @@ export declare const ALL_TOOLS: readonly [{
1234
3512
  type: string;
1235
3513
  description: string;
1236
3514
  };
1237
- aliases: {
1238
- type: string;
1239
- items: {
1240
- type: string;
1241
- };
1242
- description: string;
1243
- };
1244
- tags: {
3515
+ inlineRefs: {
1245
3516
  type: string;
1246
3517
  items: {
1247
3518
  type: "object";
1248
3519
  properties: {
1249
- tagRemId: {
3520
+ text: {
1250
3521
  type: string;
1251
3522
  description: string;
1252
3523
  };
1253
- name: {
3524
+ targetRemId: {
1254
3525
  type: string;
1255
3526
  description: string;
1256
3527
  };
3528
+ kind: {
3529
+ type: string;
3530
+ enum: string[];
3531
+ description: string;
3532
+ };
1257
3533
  };
1258
3534
  required: string[];
1259
3535
  additionalProperties: boolean;
@@ -1264,125 +3540,58 @@ export declare const ALL_TOOLS: readonly [{
1264
3540
  type: string;
1265
3541
  description: string;
1266
3542
  };
1267
- cardDirection: {
3543
+ parentRemId: {
1268
3544
  type: string;
1269
3545
  description: string;
1270
3546
  };
1271
- children: {
3547
+ parentTitle: {
1272
3548
  type: string;
1273
3549
  description: string;
3550
+ };
3551
+ ancestors: {
3552
+ type: string;
1274
3553
  items: {
1275
- type: string;
3554
+ type: "object";
3555
+ properties: {
3556
+ remId: {
3557
+ type: string;
3558
+ description: string;
3559
+ };
3560
+ title: {
3561
+ type: string;
3562
+ description: string;
3563
+ };
3564
+ remType: {
3565
+ type: string;
3566
+ description: string;
3567
+ };
3568
+ };
3569
+ required: string[];
3570
+ additionalProperties: boolean;
1276
3571
  };
3572
+ description: string;
1277
3573
  };
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: {
3574
+ ancestorsTruncated: {
1381
3575
  type: string;
1382
3576
  description: string;
1383
3577
  };
1384
- name: {
3578
+ tags: {
1385
3579
  type: string;
3580
+ items: {
3581
+ type: "object";
3582
+ properties: {
3583
+ tagRemId: {
3584
+ type: string;
3585
+ description: string;
3586
+ };
3587
+ name: {
3588
+ type: string;
3589
+ description: string;
3590
+ };
3591
+ };
3592
+ required: string[];
3593
+ additionalProperties: boolean;
3594
+ };
1386
3595
  description: string;
1387
3596
  };
1388
3597
  };
@@ -1391,8 +3600,17 @@ export declare const ALL_TOOLS: readonly [{
1391
3600
  };
1392
3601
  description: string;
1393
3602
  };
1394
- remType: {
3603
+ contextRemId: {
3604
+ type: string;
3605
+ description: string;
3606
+ };
3607
+ contextTitle: {
3608
+ type: string;
3609
+ description: string;
3610
+ };
3611
+ contextReason: {
1395
3612
  type: string;
3613
+ enum: string[];
1396
3614
  description: string;
1397
3615
  };
1398
3616
  cardDirection: {
@@ -1421,6 +3639,30 @@ export declare const ALL_TOOLS: readonly [{
1421
3639
  type: string;
1422
3640
  description: string;
1423
3641
  };
3642
+ inlineRefs: {
3643
+ type: string;
3644
+ items: {
3645
+ type: "object";
3646
+ properties: {
3647
+ text: {
3648
+ type: string;
3649
+ description: string;
3650
+ };
3651
+ targetRemId: {
3652
+ type: string;
3653
+ description: string;
3654
+ };
3655
+ kind: {
3656
+ type: string;
3657
+ enum: string[];
3658
+ description: string;
3659
+ };
3660
+ };
3661
+ required: string[];
3662
+ additionalProperties: boolean;
3663
+ };
3664
+ description: string;
3665
+ };
1424
3666
  aliases: {
1425
3667
  type: string;
1426
3668
  items: {
@@ -1487,6 +3729,18 @@ export declare const ALL_TOOLS: readonly [{
1487
3729
  };
1488
3730
  };
1489
3731
  };
3732
+ hasMore: {
3733
+ type: string;
3734
+ description: string;
3735
+ };
3736
+ nextCursor: {
3737
+ type: string;
3738
+ description: string;
3739
+ };
3740
+ totalChildren: {
3741
+ type: string;
3742
+ description: string;
3743
+ };
1490
3744
  };
1491
3745
  };
1492
3746
  }, {
@@ -1499,25 +3753,60 @@ export declare const ALL_TOOLS: readonly [{
1499
3753
  type: string;
1500
3754
  description: string;
1501
3755
  };
1502
- depth: {
3756
+ title: {
1503
3757
  type: string;
1504
3758
  description: string;
1505
3759
  };
1506
- includeContent: {
3760
+ };
3761
+ required: string[];
3762
+ additionalProperties: boolean;
3763
+ };
3764
+ outputSchema: {
3765
+ type: "object";
3766
+ properties: {
3767
+ remIds: {
1507
3768
  type: string;
1508
- enum: string[];
3769
+ items: {
3770
+ type: string;
3771
+ };
1509
3772
  description: string;
1510
3773
  };
1511
- childLimit: {
3774
+ titles: {
1512
3775
  type: string;
3776
+ items: {
3777
+ type: string;
3778
+ };
1513
3779
  description: string;
1514
3780
  };
1515
- maxContentLength: {
3781
+ };
3782
+ required: string[];
3783
+ };
3784
+ }, {
3785
+ name: string;
3786
+ description: string;
3787
+ inputSchema: {
3788
+ type: "object";
3789
+ properties: {
3790
+ remId: {
3791
+ type: string;
3792
+ description: string;
3793
+ };
3794
+ isDocument: {
3795
+ type: string;
3796
+ description: string;
3797
+ };
3798
+ dryRun: {
3799
+ type: string;
3800
+ description: string;
3801
+ };
3802
+ expectedOldRemType: {
1516
3803
  type: string;
3804
+ enum: string[];
1517
3805
  description: string;
1518
3806
  };
1519
3807
  };
1520
3808
  required: string[];
3809
+ additionalProperties: boolean;
1521
3810
  };
1522
3811
  outputSchema: {
1523
3812
  type: "object";
@@ -1530,138 +3819,59 @@ export declare const ALL_TOOLS: readonly [{
1530
3819
  type: string;
1531
3820
  description: string;
1532
3821
  };
1533
- headline: {
3822
+ oldRemType: {
1534
3823
  type: string;
1535
3824
  description: string;
1536
3825
  };
1537
- parentRemId: {
3826
+ newRemType: {
1538
3827
  type: string;
1539
3828
  description: string;
1540
3829
  };
1541
- parentTitle: {
3830
+ oldIsDocument: {
1542
3831
  type: string;
1543
3832
  description: string;
1544
3833
  };
1545
- aliases: {
3834
+ newIsDocument: {
1546
3835
  type: string;
1547
- items: {
1548
- type: string;
1549
- };
1550
3836
  description: string;
1551
3837
  };
1552
- tags: {
3838
+ requestedIsDocument: {
1553
3839
  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
3840
  description: string;
1570
3841
  };
1571
- remType: {
3842
+ dryRun: {
1572
3843
  type: string;
1573
3844
  description: string;
1574
3845
  };
1575
- cardDirection: {
3846
+ changed: {
1576
3847
  type: string;
1577
3848
  description: string;
1578
3849
  };
1579
- content: {
3850
+ wouldChange: {
1580
3851
  type: string;
1581
3852
  description: string;
1582
3853
  };
1583
- contentStructured: {
3854
+ sdkSupportsDocumentStatus: {
1584
3855
  type: string;
1585
3856
  description: string;
3857
+ };
3858
+ warnings: {
3859
+ type: string;
1586
3860
  items: {
1587
3861
  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
3862
  };
3863
+ description: string;
1645
3864
  };
1646
- contentProperties: {
3865
+ cardDirectionBefore: {
3866
+ type: string;
3867
+ description: string;
3868
+ };
3869
+ cardDirectionAfter: {
1647
3870
  type: string;
1648
3871
  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
3872
  };
1664
3873
  };
3874
+ required: string[];
1665
3875
  };
1666
3876
  }, {
1667
3877
  name: string;
@@ -1673,30 +3883,114 @@ export declare const ALL_TOOLS: readonly [{
1673
3883
  type: string;
1674
3884
  description: string;
1675
3885
  };
1676
- title: {
3886
+ newParentRemId: {
3887
+ type: string;
3888
+ description: string;
3889
+ };
3890
+ position: {
3891
+ type: string;
3892
+ enum: string[];
3893
+ description: string;
3894
+ };
3895
+ siblingRemId: {
3896
+ type: string;
3897
+ description: string;
3898
+ };
3899
+ dryRun: {
3900
+ type: string;
3901
+ description: string;
3902
+ };
3903
+ expectedOldParentRemId: {
3904
+ type: string;
3905
+ description: string;
3906
+ };
3907
+ ancestorDepth: {
1677
3908
  type: string;
1678
3909
  description: string;
1679
3910
  };
1680
3911
  };
1681
3912
  required: string[];
1682
- additionalProperties: boolean;
1683
3913
  };
1684
3914
  outputSchema: {
1685
3915
  type: "object";
1686
3916
  properties: {
1687
- remIds: {
3917
+ remId: {
3918
+ type: string;
3919
+ };
3920
+ title: {
3921
+ type: string;
3922
+ };
3923
+ dryRun: {
3924
+ type: string;
3925
+ };
3926
+ oldParentRemId: {
3927
+ type: string;
3928
+ };
3929
+ oldParentTitle: {
3930
+ type: string;
3931
+ };
3932
+ newParentRemId: {
3933
+ type: string;
3934
+ };
3935
+ newParentTitle: {
3936
+ type: string;
3937
+ };
3938
+ position: {
3939
+ type: string;
3940
+ enum: string[];
3941
+ };
3942
+ siblingRemId: {
3943
+ type: string;
3944
+ };
3945
+ ancestorsBefore: {
1688
3946
  type: string;
1689
3947
  items: {
1690
- type: string;
3948
+ type: "object";
3949
+ properties: {
3950
+ remId: {
3951
+ type: string;
3952
+ description: string;
3953
+ };
3954
+ title: {
3955
+ type: string;
3956
+ description: string;
3957
+ };
3958
+ remType: {
3959
+ type: string;
3960
+ description: string;
3961
+ };
3962
+ };
3963
+ required: string[];
3964
+ additionalProperties: boolean;
1691
3965
  };
1692
- description: string;
1693
3966
  };
1694
- titles: {
3967
+ ancestorsBeforeTruncated: {
3968
+ type: string;
3969
+ };
3970
+ ancestorsAfter: {
1695
3971
  type: string;
1696
3972
  items: {
1697
- type: string;
3973
+ type: "object";
3974
+ properties: {
3975
+ remId: {
3976
+ type: string;
3977
+ description: string;
3978
+ };
3979
+ title: {
3980
+ type: string;
3981
+ description: string;
3982
+ };
3983
+ remType: {
3984
+ type: string;
3985
+ description: string;
3986
+ };
3987
+ };
3988
+ required: string[];
3989
+ additionalProperties: boolean;
1698
3990
  };
1699
- description: string;
3991
+ };
3992
+ ancestorsAfterTruncated: {
3993
+ type: string;
1700
3994
  };
1701
3995
  };
1702
3996
  required: string[];
@@ -1923,7 +4217,10 @@ export declare const ALL_TOOLS: readonly [{
1923
4217
  orientation: {
1924
4218
  type: string;
1925
4219
  properties: {
1926
- includeContent: {
4220
+ contentMode: {
4221
+ type: string;
4222
+ };
4223
+ view: {
1927
4224
  type: string;
1928
4225
  };
1929
4226
  depth: {