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