@nestr/mcp 0.1.27 → 0.1.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/api/client.d.ts +2 -2
- package/build/api/client.d.ts.map +1 -1
- package/build/api/client.js.map +1 -1
- package/build/apps/index.d.ts.map +1 -1
- package/build/apps/index.js +2 -3
- package/build/apps/index.js.map +1 -1
- package/build/server.d.ts.map +1 -1
- package/build/server.js +40 -6
- package/build/server.js.map +1 -1
- package/build/tools/index.d.ts +422 -0
- package/build/tools/index.d.ts.map +1 -1
- package/build/tools/index.js +84 -6
- package/build/tools/index.js.map +1 -1
- package/package.json +2 -2
- package/web/index.html +154 -5
- package/web/styles.css +33 -0
package/build/tools/index.d.ts
CHANGED
|
@@ -30,16 +30,25 @@ export declare const schemas: {
|
|
|
30
30
|
purpose: z.ZodOptional<z.ZodString>;
|
|
31
31
|
type: z.ZodOptional<z.ZodEnum<["personal", "collaborative"]>>;
|
|
32
32
|
governance: z.ZodOptional<z.ZodEnum<["holacracy", "sociocracy", "roles_circles"]>>;
|
|
33
|
+
plan: z.ZodOptional<z.ZodEnum<["starter", "pro"]>>;
|
|
34
|
+
apps: z.ZodOptional<z.ZodArray<z.ZodEnum<["okr", "feedback", "insights"]>, "many">>;
|
|
35
|
+
layout: z.ZodOptional<z.ZodEnum<["board", "list"]>>;
|
|
33
36
|
}, "strip", z.ZodTypeAny, {
|
|
34
37
|
title: string;
|
|
38
|
+
plan?: "pro" | "starter" | undefined;
|
|
35
39
|
purpose?: string | undefined;
|
|
36
40
|
type?: "personal" | "collaborative" | undefined;
|
|
37
41
|
governance?: "holacracy" | "sociocracy" | "roles_circles" | undefined;
|
|
42
|
+
apps?: ("okr" | "feedback" | "insights")[] | undefined;
|
|
43
|
+
layout?: "board" | "list" | undefined;
|
|
38
44
|
}, {
|
|
39
45
|
title: string;
|
|
46
|
+
plan?: "pro" | "starter" | undefined;
|
|
40
47
|
purpose?: string | undefined;
|
|
41
48
|
type?: "personal" | "collaborative" | undefined;
|
|
42
49
|
governance?: "holacracy" | "sociocracy" | "roles_circles" | undefined;
|
|
50
|
+
apps?: ("okr" | "feedback" | "insights")[] | undefined;
|
|
51
|
+
layout?: "board" | "list" | undefined;
|
|
43
52
|
}>;
|
|
44
53
|
search: z.ZodObject<{
|
|
45
54
|
workspaceId: z.ZodString;
|
|
@@ -429,11 +438,18 @@ export declare const toolDefinitions: ({
|
|
|
429
438
|
type: string;
|
|
430
439
|
description: string;
|
|
431
440
|
};
|
|
441
|
+
stripDescription: {
|
|
442
|
+
type: string;
|
|
443
|
+
description: string;
|
|
444
|
+
};
|
|
432
445
|
workspaceId?: undefined;
|
|
433
446
|
title?: undefined;
|
|
434
447
|
purpose?: undefined;
|
|
435
448
|
type?: undefined;
|
|
436
449
|
governance?: undefined;
|
|
450
|
+
plan?: undefined;
|
|
451
|
+
apps?: undefined;
|
|
452
|
+
layout?: undefined;
|
|
437
453
|
query?: undefined;
|
|
438
454
|
nestId?: undefined;
|
|
439
455
|
fieldsMetaData?: undefined;
|
|
@@ -463,6 +479,7 @@ export declare const toolDefinitions: ({
|
|
|
463
479
|
};
|
|
464
480
|
required?: undefined;
|
|
465
481
|
};
|
|
482
|
+
_meta?: undefined;
|
|
466
483
|
} | {
|
|
467
484
|
name: string;
|
|
468
485
|
description: string;
|
|
@@ -473,6 +490,10 @@ export declare const toolDefinitions: ({
|
|
|
473
490
|
type: string;
|
|
474
491
|
description: string;
|
|
475
492
|
};
|
|
493
|
+
stripDescription: {
|
|
494
|
+
type: string;
|
|
495
|
+
description: string;
|
|
496
|
+
};
|
|
476
497
|
search?: undefined;
|
|
477
498
|
limit?: undefined;
|
|
478
499
|
page?: undefined;
|
|
@@ -480,6 +501,9 @@ export declare const toolDefinitions: ({
|
|
|
480
501
|
purpose?: undefined;
|
|
481
502
|
type?: undefined;
|
|
482
503
|
governance?: undefined;
|
|
504
|
+
plan?: undefined;
|
|
505
|
+
apps?: undefined;
|
|
506
|
+
layout?: undefined;
|
|
483
507
|
query?: undefined;
|
|
484
508
|
nestId?: undefined;
|
|
485
509
|
fieldsMetaData?: undefined;
|
|
@@ -509,6 +533,7 @@ export declare const toolDefinitions: ({
|
|
|
509
533
|
};
|
|
510
534
|
required: string[];
|
|
511
535
|
};
|
|
536
|
+
_meta?: undefined;
|
|
512
537
|
} | {
|
|
513
538
|
name: string;
|
|
514
539
|
description: string;
|
|
@@ -533,9 +558,28 @@ export declare const toolDefinitions: ({
|
|
|
533
558
|
enum: string[];
|
|
534
559
|
description: string;
|
|
535
560
|
};
|
|
561
|
+
plan: {
|
|
562
|
+
type: string;
|
|
563
|
+
enum: string[];
|
|
564
|
+
description: string;
|
|
565
|
+
};
|
|
566
|
+
apps: {
|
|
567
|
+
type: string;
|
|
568
|
+
items: {
|
|
569
|
+
type: string;
|
|
570
|
+
enum: string[];
|
|
571
|
+
};
|
|
572
|
+
description: string;
|
|
573
|
+
};
|
|
574
|
+
layout: {
|
|
575
|
+
type: string;
|
|
576
|
+
enum: string[];
|
|
577
|
+
description: string;
|
|
578
|
+
};
|
|
536
579
|
search?: undefined;
|
|
537
580
|
limit?: undefined;
|
|
538
581
|
page?: undefined;
|
|
582
|
+
stripDescription?: undefined;
|
|
539
583
|
workspaceId?: undefined;
|
|
540
584
|
query?: undefined;
|
|
541
585
|
nestId?: undefined;
|
|
@@ -566,6 +610,7 @@ export declare const toolDefinitions: ({
|
|
|
566
610
|
};
|
|
567
611
|
required: string[];
|
|
568
612
|
};
|
|
613
|
+
_meta?: undefined;
|
|
569
614
|
} | {
|
|
570
615
|
name: string;
|
|
571
616
|
description: string;
|
|
@@ -588,11 +633,18 @@ export declare const toolDefinitions: ({
|
|
|
588
633
|
type: string;
|
|
589
634
|
description: string;
|
|
590
635
|
};
|
|
636
|
+
stripDescription: {
|
|
637
|
+
type: string;
|
|
638
|
+
description: string;
|
|
639
|
+
};
|
|
591
640
|
search?: undefined;
|
|
592
641
|
title?: undefined;
|
|
593
642
|
purpose?: undefined;
|
|
594
643
|
type?: undefined;
|
|
595
644
|
governance?: undefined;
|
|
645
|
+
plan?: undefined;
|
|
646
|
+
apps?: undefined;
|
|
647
|
+
layout?: undefined;
|
|
596
648
|
nestId?: undefined;
|
|
597
649
|
fieldsMetaData?: undefined;
|
|
598
650
|
parentId?: undefined;
|
|
@@ -621,6 +673,11 @@ export declare const toolDefinitions: ({
|
|
|
621
673
|
};
|
|
622
674
|
required: string[];
|
|
623
675
|
};
|
|
676
|
+
_meta: {
|
|
677
|
+
ui: {
|
|
678
|
+
resourceUri: string;
|
|
679
|
+
};
|
|
680
|
+
};
|
|
624
681
|
} | {
|
|
625
682
|
name: string;
|
|
626
683
|
description: string;
|
|
@@ -635,6 +692,10 @@ export declare const toolDefinitions: ({
|
|
|
635
692
|
type: string;
|
|
636
693
|
description: string;
|
|
637
694
|
};
|
|
695
|
+
stripDescription: {
|
|
696
|
+
type: string;
|
|
697
|
+
description: string;
|
|
698
|
+
};
|
|
638
699
|
search?: undefined;
|
|
639
700
|
limit?: undefined;
|
|
640
701
|
page?: undefined;
|
|
@@ -643,6 +704,9 @@ export declare const toolDefinitions: ({
|
|
|
643
704
|
purpose?: undefined;
|
|
644
705
|
type?: undefined;
|
|
645
706
|
governance?: undefined;
|
|
707
|
+
plan?: undefined;
|
|
708
|
+
apps?: undefined;
|
|
709
|
+
layout?: undefined;
|
|
646
710
|
query?: undefined;
|
|
647
711
|
parentId?: undefined;
|
|
648
712
|
description?: undefined;
|
|
@@ -670,6 +734,7 @@ export declare const toolDefinitions: ({
|
|
|
670
734
|
};
|
|
671
735
|
required: string[];
|
|
672
736
|
};
|
|
737
|
+
_meta?: undefined;
|
|
673
738
|
} | {
|
|
674
739
|
name: string;
|
|
675
740
|
description: string;
|
|
@@ -688,12 +753,19 @@ export declare const toolDefinitions: ({
|
|
|
688
753
|
type: string;
|
|
689
754
|
description: string;
|
|
690
755
|
};
|
|
756
|
+
stripDescription: {
|
|
757
|
+
type: string;
|
|
758
|
+
description: string;
|
|
759
|
+
};
|
|
691
760
|
search?: undefined;
|
|
692
761
|
workspaceId?: undefined;
|
|
693
762
|
title?: undefined;
|
|
694
763
|
purpose?: undefined;
|
|
695
764
|
type?: undefined;
|
|
696
765
|
governance?: undefined;
|
|
766
|
+
plan?: undefined;
|
|
767
|
+
apps?: undefined;
|
|
768
|
+
layout?: undefined;
|
|
697
769
|
query?: undefined;
|
|
698
770
|
fieldsMetaData?: undefined;
|
|
699
771
|
parentId?: undefined;
|
|
@@ -722,6 +794,11 @@ export declare const toolDefinitions: ({
|
|
|
722
794
|
};
|
|
723
795
|
required: string[];
|
|
724
796
|
};
|
|
797
|
+
_meta: {
|
|
798
|
+
ui: {
|
|
799
|
+
resourceUri: string;
|
|
800
|
+
};
|
|
801
|
+
};
|
|
725
802
|
} | {
|
|
726
803
|
name: string;
|
|
727
804
|
description: string;
|
|
@@ -761,9 +838,13 @@ export declare const toolDefinitions: ({
|
|
|
761
838
|
search?: undefined;
|
|
762
839
|
limit?: undefined;
|
|
763
840
|
page?: undefined;
|
|
841
|
+
stripDescription?: undefined;
|
|
764
842
|
workspaceId?: undefined;
|
|
765
843
|
type?: undefined;
|
|
766
844
|
governance?: undefined;
|
|
845
|
+
plan?: undefined;
|
|
846
|
+
apps?: undefined;
|
|
847
|
+
layout?: undefined;
|
|
767
848
|
query?: undefined;
|
|
768
849
|
nestId?: undefined;
|
|
769
850
|
fieldsMetaData?: undefined;
|
|
@@ -789,6 +870,7 @@ export declare const toolDefinitions: ({
|
|
|
789
870
|
};
|
|
790
871
|
required: string[];
|
|
791
872
|
};
|
|
873
|
+
_meta?: undefined;
|
|
792
874
|
} | {
|
|
793
875
|
name: string;
|
|
794
876
|
description: string;
|
|
@@ -848,9 +930,13 @@ export declare const toolDefinitions: ({
|
|
|
848
930
|
search?: undefined;
|
|
849
931
|
limit?: undefined;
|
|
850
932
|
page?: undefined;
|
|
933
|
+
stripDescription?: undefined;
|
|
851
934
|
workspaceId?: undefined;
|
|
852
935
|
type?: undefined;
|
|
853
936
|
governance?: undefined;
|
|
937
|
+
plan?: undefined;
|
|
938
|
+
apps?: undefined;
|
|
939
|
+
layout?: undefined;
|
|
854
940
|
query?: undefined;
|
|
855
941
|
fieldsMetaData?: undefined;
|
|
856
942
|
body?: undefined;
|
|
@@ -871,6 +957,7 @@ export declare const toolDefinitions: ({
|
|
|
871
957
|
};
|
|
872
958
|
required: string[];
|
|
873
959
|
};
|
|
960
|
+
_meta?: undefined;
|
|
874
961
|
} | {
|
|
875
962
|
name: string;
|
|
876
963
|
description: string;
|
|
@@ -884,11 +971,15 @@ export declare const toolDefinitions: ({
|
|
|
884
971
|
search?: undefined;
|
|
885
972
|
limit?: undefined;
|
|
886
973
|
page?: undefined;
|
|
974
|
+
stripDescription?: undefined;
|
|
887
975
|
workspaceId?: undefined;
|
|
888
976
|
title?: undefined;
|
|
889
977
|
purpose?: undefined;
|
|
890
978
|
type?: undefined;
|
|
891
979
|
governance?: undefined;
|
|
980
|
+
plan?: undefined;
|
|
981
|
+
apps?: undefined;
|
|
982
|
+
layout?: undefined;
|
|
892
983
|
query?: undefined;
|
|
893
984
|
fieldsMetaData?: undefined;
|
|
894
985
|
parentId?: undefined;
|
|
@@ -917,6 +1008,7 @@ export declare const toolDefinitions: ({
|
|
|
917
1008
|
};
|
|
918
1009
|
required: string[];
|
|
919
1010
|
};
|
|
1011
|
+
_meta?: undefined;
|
|
920
1012
|
} | {
|
|
921
1013
|
name: string;
|
|
922
1014
|
description: string;
|
|
@@ -934,11 +1026,15 @@ export declare const toolDefinitions: ({
|
|
|
934
1026
|
search?: undefined;
|
|
935
1027
|
limit?: undefined;
|
|
936
1028
|
page?: undefined;
|
|
1029
|
+
stripDescription?: undefined;
|
|
937
1030
|
workspaceId?: undefined;
|
|
938
1031
|
title?: undefined;
|
|
939
1032
|
purpose?: undefined;
|
|
940
1033
|
type?: undefined;
|
|
941
1034
|
governance?: undefined;
|
|
1035
|
+
plan?: undefined;
|
|
1036
|
+
apps?: undefined;
|
|
1037
|
+
layout?: undefined;
|
|
942
1038
|
query?: undefined;
|
|
943
1039
|
fieldsMetaData?: undefined;
|
|
944
1040
|
parentId?: undefined;
|
|
@@ -966,6 +1062,7 @@ export declare const toolDefinitions: ({
|
|
|
966
1062
|
};
|
|
967
1063
|
required: string[];
|
|
968
1064
|
};
|
|
1065
|
+
_meta?: undefined;
|
|
969
1066
|
} | {
|
|
970
1067
|
name: string;
|
|
971
1068
|
description: string;
|
|
@@ -984,11 +1081,18 @@ export declare const toolDefinitions: ({
|
|
|
984
1081
|
type: string;
|
|
985
1082
|
description: string;
|
|
986
1083
|
};
|
|
1084
|
+
stripDescription: {
|
|
1085
|
+
type: string;
|
|
1086
|
+
description: string;
|
|
1087
|
+
};
|
|
987
1088
|
search?: undefined;
|
|
988
1089
|
title?: undefined;
|
|
989
1090
|
purpose?: undefined;
|
|
990
1091
|
type?: undefined;
|
|
991
1092
|
governance?: undefined;
|
|
1093
|
+
plan?: undefined;
|
|
1094
|
+
apps?: undefined;
|
|
1095
|
+
layout?: undefined;
|
|
992
1096
|
query?: undefined;
|
|
993
1097
|
nestId?: undefined;
|
|
994
1098
|
fieldsMetaData?: undefined;
|
|
@@ -1018,6 +1122,7 @@ export declare const toolDefinitions: ({
|
|
|
1018
1122
|
};
|
|
1019
1123
|
required: string[];
|
|
1020
1124
|
};
|
|
1125
|
+
_meta?: undefined;
|
|
1021
1126
|
} | {
|
|
1022
1127
|
name: string;
|
|
1023
1128
|
description: string;
|
|
@@ -1040,11 +1145,18 @@ export declare const toolDefinitions: ({
|
|
|
1040
1145
|
type: string;
|
|
1041
1146
|
description: string;
|
|
1042
1147
|
};
|
|
1148
|
+
stripDescription: {
|
|
1149
|
+
type: string;
|
|
1150
|
+
description: string;
|
|
1151
|
+
};
|
|
1043
1152
|
search?: undefined;
|
|
1044
1153
|
title?: undefined;
|
|
1045
1154
|
purpose?: undefined;
|
|
1046
1155
|
type?: undefined;
|
|
1047
1156
|
governance?: undefined;
|
|
1157
|
+
plan?: undefined;
|
|
1158
|
+
apps?: undefined;
|
|
1159
|
+
layout?: undefined;
|
|
1048
1160
|
query?: undefined;
|
|
1049
1161
|
nestId?: undefined;
|
|
1050
1162
|
fieldsMetaData?: undefined;
|
|
@@ -1073,6 +1185,7 @@ export declare const toolDefinitions: ({
|
|
|
1073
1185
|
};
|
|
1074
1186
|
required: string[];
|
|
1075
1187
|
};
|
|
1188
|
+
_meta?: undefined;
|
|
1076
1189
|
} | {
|
|
1077
1190
|
name: string;
|
|
1078
1191
|
description: string;
|
|
@@ -1090,10 +1203,14 @@ export declare const toolDefinitions: ({
|
|
|
1090
1203
|
search?: undefined;
|
|
1091
1204
|
limit?: undefined;
|
|
1092
1205
|
page?: undefined;
|
|
1206
|
+
stripDescription?: undefined;
|
|
1093
1207
|
title?: undefined;
|
|
1094
1208
|
purpose?: undefined;
|
|
1095
1209
|
type?: undefined;
|
|
1096
1210
|
governance?: undefined;
|
|
1211
|
+
plan?: undefined;
|
|
1212
|
+
apps?: undefined;
|
|
1213
|
+
layout?: undefined;
|
|
1097
1214
|
query?: undefined;
|
|
1098
1215
|
nestId?: undefined;
|
|
1099
1216
|
fieldsMetaData?: undefined;
|
|
@@ -1122,6 +1239,7 @@ export declare const toolDefinitions: ({
|
|
|
1122
1239
|
};
|
|
1123
1240
|
required: string[];
|
|
1124
1241
|
};
|
|
1242
|
+
_meta?: undefined;
|
|
1125
1243
|
} | {
|
|
1126
1244
|
name: string;
|
|
1127
1245
|
description: string;
|
|
@@ -1144,10 +1262,74 @@ export declare const toolDefinitions: ({
|
|
|
1144
1262
|
type: string;
|
|
1145
1263
|
description: string;
|
|
1146
1264
|
};
|
|
1265
|
+
stripDescription?: undefined;
|
|
1266
|
+
title?: undefined;
|
|
1267
|
+
purpose?: undefined;
|
|
1268
|
+
type?: undefined;
|
|
1269
|
+
governance?: undefined;
|
|
1270
|
+
plan?: undefined;
|
|
1271
|
+
apps?: undefined;
|
|
1272
|
+
layout?: undefined;
|
|
1273
|
+
query?: undefined;
|
|
1274
|
+
nestId?: undefined;
|
|
1275
|
+
fieldsMetaData?: undefined;
|
|
1276
|
+
parentId?: undefined;
|
|
1277
|
+
description?: undefined;
|
|
1278
|
+
labels?: undefined;
|
|
1279
|
+
users?: undefined;
|
|
1280
|
+
fields?: undefined;
|
|
1281
|
+
data?: undefined;
|
|
1282
|
+
due?: undefined;
|
|
1283
|
+
completed?: undefined;
|
|
1284
|
+
body?: undefined;
|
|
1285
|
+
circleId?: undefined;
|
|
1286
|
+
includeSubCircles?: undefined;
|
|
1287
|
+
depth?: undefined;
|
|
1288
|
+
userId?: undefined;
|
|
1289
|
+
labelId?: undefined;
|
|
1290
|
+
metricId?: undefined;
|
|
1291
|
+
from?: undefined;
|
|
1292
|
+
to?: undefined;
|
|
1293
|
+
completedAfter?: undefined;
|
|
1294
|
+
nestIds?: undefined;
|
|
1295
|
+
color?: undefined;
|
|
1296
|
+
icon?: undefined;
|
|
1297
|
+
position?: undefined;
|
|
1298
|
+
relatedNestId?: undefined;
|
|
1299
|
+
};
|
|
1300
|
+
required: string[];
|
|
1301
|
+
};
|
|
1302
|
+
_meta?: undefined;
|
|
1303
|
+
} | {
|
|
1304
|
+
name: string;
|
|
1305
|
+
description: string;
|
|
1306
|
+
inputSchema: {
|
|
1307
|
+
type: "object";
|
|
1308
|
+
properties: {
|
|
1309
|
+
workspaceId: {
|
|
1310
|
+
type: string;
|
|
1311
|
+
description: string;
|
|
1312
|
+
};
|
|
1313
|
+
limit: {
|
|
1314
|
+
type: string;
|
|
1315
|
+
description: string;
|
|
1316
|
+
};
|
|
1317
|
+
page: {
|
|
1318
|
+
type: string;
|
|
1319
|
+
description: string;
|
|
1320
|
+
};
|
|
1321
|
+
stripDescription: {
|
|
1322
|
+
type: string;
|
|
1323
|
+
description: string;
|
|
1324
|
+
};
|
|
1325
|
+
search?: undefined;
|
|
1147
1326
|
title?: undefined;
|
|
1148
1327
|
purpose?: undefined;
|
|
1149
1328
|
type?: undefined;
|
|
1150
1329
|
governance?: undefined;
|
|
1330
|
+
plan?: undefined;
|
|
1331
|
+
apps?: undefined;
|
|
1332
|
+
layout?: undefined;
|
|
1151
1333
|
query?: undefined;
|
|
1152
1334
|
nestId?: undefined;
|
|
1153
1335
|
fieldsMetaData?: undefined;
|
|
@@ -1177,6 +1359,11 @@ export declare const toolDefinitions: ({
|
|
|
1177
1359
|
};
|
|
1178
1360
|
required: string[];
|
|
1179
1361
|
};
|
|
1362
|
+
_meta: {
|
|
1363
|
+
ui: {
|
|
1364
|
+
resourceUri: string;
|
|
1365
|
+
};
|
|
1366
|
+
};
|
|
1180
1367
|
} | {
|
|
1181
1368
|
name: string;
|
|
1182
1369
|
description: string;
|
|
@@ -1194,11 +1381,15 @@ export declare const toolDefinitions: ({
|
|
|
1194
1381
|
search?: undefined;
|
|
1195
1382
|
limit?: undefined;
|
|
1196
1383
|
page?: undefined;
|
|
1384
|
+
stripDescription?: undefined;
|
|
1197
1385
|
workspaceId?: undefined;
|
|
1198
1386
|
title?: undefined;
|
|
1199
1387
|
purpose?: undefined;
|
|
1200
1388
|
type?: undefined;
|
|
1201
1389
|
governance?: undefined;
|
|
1390
|
+
plan?: undefined;
|
|
1391
|
+
apps?: undefined;
|
|
1392
|
+
layout?: undefined;
|
|
1202
1393
|
query?: undefined;
|
|
1203
1394
|
fieldsMetaData?: undefined;
|
|
1204
1395
|
parentId?: undefined;
|
|
@@ -1226,6 +1417,7 @@ export declare const toolDefinitions: ({
|
|
|
1226
1417
|
};
|
|
1227
1418
|
required: string[];
|
|
1228
1419
|
};
|
|
1420
|
+
_meta?: undefined;
|
|
1229
1421
|
} | {
|
|
1230
1422
|
name: string;
|
|
1231
1423
|
description: string;
|
|
@@ -1240,6 +1432,10 @@ export declare const toolDefinitions: ({
|
|
|
1240
1432
|
type: string;
|
|
1241
1433
|
description: string;
|
|
1242
1434
|
};
|
|
1435
|
+
stripDescription: {
|
|
1436
|
+
type: string;
|
|
1437
|
+
description: string;
|
|
1438
|
+
};
|
|
1243
1439
|
search?: undefined;
|
|
1244
1440
|
limit?: undefined;
|
|
1245
1441
|
page?: undefined;
|
|
@@ -1247,6 +1443,9 @@ export declare const toolDefinitions: ({
|
|
|
1247
1443
|
purpose?: undefined;
|
|
1248
1444
|
type?: undefined;
|
|
1249
1445
|
governance?: undefined;
|
|
1446
|
+
plan?: undefined;
|
|
1447
|
+
apps?: undefined;
|
|
1448
|
+
layout?: undefined;
|
|
1250
1449
|
query?: undefined;
|
|
1251
1450
|
nestId?: undefined;
|
|
1252
1451
|
fieldsMetaData?: undefined;
|
|
@@ -1275,6 +1474,7 @@ export declare const toolDefinitions: ({
|
|
|
1275
1474
|
};
|
|
1276
1475
|
required: string[];
|
|
1277
1476
|
};
|
|
1477
|
+
_meta?: undefined;
|
|
1278
1478
|
} | {
|
|
1279
1479
|
name: string;
|
|
1280
1480
|
description: string;
|
|
@@ -1292,10 +1492,14 @@ export declare const toolDefinitions: ({
|
|
|
1292
1492
|
search?: undefined;
|
|
1293
1493
|
limit?: undefined;
|
|
1294
1494
|
page?: undefined;
|
|
1495
|
+
stripDescription?: undefined;
|
|
1295
1496
|
title?: undefined;
|
|
1296
1497
|
purpose?: undefined;
|
|
1297
1498
|
type?: undefined;
|
|
1298
1499
|
governance?: undefined;
|
|
1500
|
+
plan?: undefined;
|
|
1501
|
+
apps?: undefined;
|
|
1502
|
+
layout?: undefined;
|
|
1299
1503
|
query?: undefined;
|
|
1300
1504
|
nestId?: undefined;
|
|
1301
1505
|
fieldsMetaData?: undefined;
|
|
@@ -1324,6 +1528,7 @@ export declare const toolDefinitions: ({
|
|
|
1324
1528
|
};
|
|
1325
1529
|
required: string[];
|
|
1326
1530
|
};
|
|
1531
|
+
_meta?: undefined;
|
|
1327
1532
|
} | {
|
|
1328
1533
|
name: string;
|
|
1329
1534
|
description: string;
|
|
@@ -1341,10 +1546,14 @@ export declare const toolDefinitions: ({
|
|
|
1341
1546
|
search?: undefined;
|
|
1342
1547
|
limit?: undefined;
|
|
1343
1548
|
page?: undefined;
|
|
1549
|
+
stripDescription?: undefined;
|
|
1344
1550
|
title?: undefined;
|
|
1345
1551
|
purpose?: undefined;
|
|
1346
1552
|
type?: undefined;
|
|
1347
1553
|
governance?: undefined;
|
|
1554
|
+
plan?: undefined;
|
|
1555
|
+
apps?: undefined;
|
|
1556
|
+
layout?: undefined;
|
|
1348
1557
|
query?: undefined;
|
|
1349
1558
|
nestId?: undefined;
|
|
1350
1559
|
fieldsMetaData?: undefined;
|
|
@@ -1373,6 +1582,7 @@ export declare const toolDefinitions: ({
|
|
|
1373
1582
|
};
|
|
1374
1583
|
required: string[];
|
|
1375
1584
|
};
|
|
1585
|
+
_meta?: undefined;
|
|
1376
1586
|
} | {
|
|
1377
1587
|
name: string;
|
|
1378
1588
|
description: string;
|
|
@@ -1401,10 +1611,14 @@ export declare const toolDefinitions: ({
|
|
|
1401
1611
|
};
|
|
1402
1612
|
search?: undefined;
|
|
1403
1613
|
page?: undefined;
|
|
1614
|
+
stripDescription?: undefined;
|
|
1404
1615
|
title?: undefined;
|
|
1405
1616
|
purpose?: undefined;
|
|
1406
1617
|
type?: undefined;
|
|
1407
1618
|
governance?: undefined;
|
|
1619
|
+
plan?: undefined;
|
|
1620
|
+
apps?: undefined;
|
|
1621
|
+
layout?: undefined;
|
|
1408
1622
|
query?: undefined;
|
|
1409
1623
|
nestId?: undefined;
|
|
1410
1624
|
fieldsMetaData?: undefined;
|
|
@@ -1431,6 +1645,58 @@ export declare const toolDefinitions: ({
|
|
|
1431
1645
|
};
|
|
1432
1646
|
required: string[];
|
|
1433
1647
|
};
|
|
1648
|
+
_meta?: undefined;
|
|
1649
|
+
} | {
|
|
1650
|
+
name: string;
|
|
1651
|
+
description: string;
|
|
1652
|
+
inputSchema: {
|
|
1653
|
+
type: "object";
|
|
1654
|
+
properties: {
|
|
1655
|
+
workspaceId: {
|
|
1656
|
+
type: string;
|
|
1657
|
+
description: string;
|
|
1658
|
+
};
|
|
1659
|
+
search?: undefined;
|
|
1660
|
+
limit?: undefined;
|
|
1661
|
+
page?: undefined;
|
|
1662
|
+
stripDescription?: undefined;
|
|
1663
|
+
title?: undefined;
|
|
1664
|
+
purpose?: undefined;
|
|
1665
|
+
type?: undefined;
|
|
1666
|
+
governance?: undefined;
|
|
1667
|
+
plan?: undefined;
|
|
1668
|
+
apps?: undefined;
|
|
1669
|
+
layout?: undefined;
|
|
1670
|
+
query?: undefined;
|
|
1671
|
+
nestId?: undefined;
|
|
1672
|
+
fieldsMetaData?: undefined;
|
|
1673
|
+
parentId?: undefined;
|
|
1674
|
+
description?: undefined;
|
|
1675
|
+
labels?: undefined;
|
|
1676
|
+
users?: undefined;
|
|
1677
|
+
fields?: undefined;
|
|
1678
|
+
data?: undefined;
|
|
1679
|
+
due?: undefined;
|
|
1680
|
+
completed?: undefined;
|
|
1681
|
+
body?: undefined;
|
|
1682
|
+
circleId?: undefined;
|
|
1683
|
+
includeSubCircles?: undefined;
|
|
1684
|
+
depth?: undefined;
|
|
1685
|
+
userId?: undefined;
|
|
1686
|
+
labelId?: undefined;
|
|
1687
|
+
metricId?: undefined;
|
|
1688
|
+
from?: undefined;
|
|
1689
|
+
to?: undefined;
|
|
1690
|
+
completedAfter?: undefined;
|
|
1691
|
+
nestIds?: undefined;
|
|
1692
|
+
color?: undefined;
|
|
1693
|
+
icon?: undefined;
|
|
1694
|
+
position?: undefined;
|
|
1695
|
+
relatedNestId?: undefined;
|
|
1696
|
+
};
|
|
1697
|
+
required: string[];
|
|
1698
|
+
};
|
|
1699
|
+
_meta?: undefined;
|
|
1434
1700
|
} | {
|
|
1435
1701
|
name: string;
|
|
1436
1702
|
description: string;
|
|
@@ -1441,6 +1707,10 @@ export declare const toolDefinitions: ({
|
|
|
1441
1707
|
type: string;
|
|
1442
1708
|
description: string;
|
|
1443
1709
|
};
|
|
1710
|
+
stripDescription: {
|
|
1711
|
+
type: string;
|
|
1712
|
+
description: string;
|
|
1713
|
+
};
|
|
1444
1714
|
search?: undefined;
|
|
1445
1715
|
limit?: undefined;
|
|
1446
1716
|
page?: undefined;
|
|
@@ -1449,6 +1719,9 @@ export declare const toolDefinitions: ({
|
|
|
1449
1719
|
purpose?: undefined;
|
|
1450
1720
|
type?: undefined;
|
|
1451
1721
|
governance?: undefined;
|
|
1722
|
+
plan?: undefined;
|
|
1723
|
+
apps?: undefined;
|
|
1724
|
+
layout?: undefined;
|
|
1452
1725
|
query?: undefined;
|
|
1453
1726
|
nestId?: undefined;
|
|
1454
1727
|
fieldsMetaData?: undefined;
|
|
@@ -1477,6 +1750,11 @@ export declare const toolDefinitions: ({
|
|
|
1477
1750
|
};
|
|
1478
1751
|
required?: undefined;
|
|
1479
1752
|
};
|
|
1753
|
+
_meta: {
|
|
1754
|
+
ui: {
|
|
1755
|
+
resourceUri: string;
|
|
1756
|
+
};
|
|
1757
|
+
};
|
|
1480
1758
|
} | {
|
|
1481
1759
|
name: string;
|
|
1482
1760
|
description: string;
|
|
@@ -1494,10 +1772,14 @@ export declare const toolDefinitions: ({
|
|
|
1494
1772
|
search?: undefined;
|
|
1495
1773
|
limit?: undefined;
|
|
1496
1774
|
page?: undefined;
|
|
1775
|
+
stripDescription?: undefined;
|
|
1497
1776
|
workspaceId?: undefined;
|
|
1498
1777
|
purpose?: undefined;
|
|
1499
1778
|
type?: undefined;
|
|
1500
1779
|
governance?: undefined;
|
|
1780
|
+
plan?: undefined;
|
|
1781
|
+
apps?: undefined;
|
|
1782
|
+
layout?: undefined;
|
|
1501
1783
|
query?: undefined;
|
|
1502
1784
|
nestId?: undefined;
|
|
1503
1785
|
fieldsMetaData?: undefined;
|
|
@@ -1526,6 +1808,61 @@ export declare const toolDefinitions: ({
|
|
|
1526
1808
|
};
|
|
1527
1809
|
required: string[];
|
|
1528
1810
|
};
|
|
1811
|
+
_meta?: undefined;
|
|
1812
|
+
} | {
|
|
1813
|
+
name: string;
|
|
1814
|
+
description: string;
|
|
1815
|
+
inputSchema: {
|
|
1816
|
+
type: "object";
|
|
1817
|
+
properties: {
|
|
1818
|
+
nestId: {
|
|
1819
|
+
type: string;
|
|
1820
|
+
description: string;
|
|
1821
|
+
};
|
|
1822
|
+
stripDescription: {
|
|
1823
|
+
type: string;
|
|
1824
|
+
description: string;
|
|
1825
|
+
};
|
|
1826
|
+
search?: undefined;
|
|
1827
|
+
limit?: undefined;
|
|
1828
|
+
page?: undefined;
|
|
1829
|
+
workspaceId?: undefined;
|
|
1830
|
+
title?: undefined;
|
|
1831
|
+
purpose?: undefined;
|
|
1832
|
+
type?: undefined;
|
|
1833
|
+
governance?: undefined;
|
|
1834
|
+
plan?: undefined;
|
|
1835
|
+
apps?: undefined;
|
|
1836
|
+
layout?: undefined;
|
|
1837
|
+
query?: undefined;
|
|
1838
|
+
fieldsMetaData?: undefined;
|
|
1839
|
+
parentId?: undefined;
|
|
1840
|
+
description?: undefined;
|
|
1841
|
+
labels?: undefined;
|
|
1842
|
+
users?: undefined;
|
|
1843
|
+
fields?: undefined;
|
|
1844
|
+
data?: undefined;
|
|
1845
|
+
due?: undefined;
|
|
1846
|
+
completed?: undefined;
|
|
1847
|
+
body?: undefined;
|
|
1848
|
+
circleId?: undefined;
|
|
1849
|
+
includeSubCircles?: undefined;
|
|
1850
|
+
depth?: undefined;
|
|
1851
|
+
userId?: undefined;
|
|
1852
|
+
labelId?: undefined;
|
|
1853
|
+
metricId?: undefined;
|
|
1854
|
+
from?: undefined;
|
|
1855
|
+
to?: undefined;
|
|
1856
|
+
completedAfter?: undefined;
|
|
1857
|
+
nestIds?: undefined;
|
|
1858
|
+
color?: undefined;
|
|
1859
|
+
icon?: undefined;
|
|
1860
|
+
position?: undefined;
|
|
1861
|
+
relatedNestId?: undefined;
|
|
1862
|
+
};
|
|
1863
|
+
required: string[];
|
|
1864
|
+
};
|
|
1865
|
+
_meta?: undefined;
|
|
1529
1866
|
} | {
|
|
1530
1867
|
name: string;
|
|
1531
1868
|
description: string;
|
|
@@ -1555,10 +1892,14 @@ export declare const toolDefinitions: ({
|
|
|
1555
1892
|
search?: undefined;
|
|
1556
1893
|
limit?: undefined;
|
|
1557
1894
|
page?: undefined;
|
|
1895
|
+
stripDescription?: undefined;
|
|
1558
1896
|
workspaceId?: undefined;
|
|
1559
1897
|
purpose?: undefined;
|
|
1560
1898
|
type?: undefined;
|
|
1561
1899
|
governance?: undefined;
|
|
1900
|
+
plan?: undefined;
|
|
1901
|
+
apps?: undefined;
|
|
1902
|
+
layout?: undefined;
|
|
1562
1903
|
query?: undefined;
|
|
1563
1904
|
fieldsMetaData?: undefined;
|
|
1564
1905
|
parentId?: undefined;
|
|
@@ -1584,6 +1925,7 @@ export declare const toolDefinitions: ({
|
|
|
1584
1925
|
};
|
|
1585
1926
|
required: string[];
|
|
1586
1927
|
};
|
|
1928
|
+
_meta?: undefined;
|
|
1587
1929
|
} | {
|
|
1588
1930
|
name: string;
|
|
1589
1931
|
description: string;
|
|
@@ -1600,11 +1942,15 @@ export declare const toolDefinitions: ({
|
|
|
1600
1942
|
search?: undefined;
|
|
1601
1943
|
limit?: undefined;
|
|
1602
1944
|
page?: undefined;
|
|
1945
|
+
stripDescription?: undefined;
|
|
1603
1946
|
workspaceId?: undefined;
|
|
1604
1947
|
title?: undefined;
|
|
1605
1948
|
purpose?: undefined;
|
|
1606
1949
|
type?: undefined;
|
|
1607
1950
|
governance?: undefined;
|
|
1951
|
+
plan?: undefined;
|
|
1952
|
+
apps?: undefined;
|
|
1953
|
+
layout?: undefined;
|
|
1608
1954
|
query?: undefined;
|
|
1609
1955
|
nestId?: undefined;
|
|
1610
1956
|
fieldsMetaData?: undefined;
|
|
@@ -1633,6 +1979,7 @@ export declare const toolDefinitions: ({
|
|
|
1633
1979
|
};
|
|
1634
1980
|
required: string[];
|
|
1635
1981
|
};
|
|
1982
|
+
_meta?: undefined;
|
|
1636
1983
|
} | {
|
|
1637
1984
|
name: string;
|
|
1638
1985
|
description: string;
|
|
@@ -1642,11 +1989,15 @@ export declare const toolDefinitions: ({
|
|
|
1642
1989
|
search?: undefined;
|
|
1643
1990
|
limit?: undefined;
|
|
1644
1991
|
page?: undefined;
|
|
1992
|
+
stripDescription?: undefined;
|
|
1645
1993
|
workspaceId?: undefined;
|
|
1646
1994
|
title?: undefined;
|
|
1647
1995
|
purpose?: undefined;
|
|
1648
1996
|
type?: undefined;
|
|
1649
1997
|
governance?: undefined;
|
|
1998
|
+
plan?: undefined;
|
|
1999
|
+
apps?: undefined;
|
|
2000
|
+
layout?: undefined;
|
|
1650
2001
|
query?: undefined;
|
|
1651
2002
|
nestId?: undefined;
|
|
1652
2003
|
fieldsMetaData?: undefined;
|
|
@@ -1676,6 +2027,7 @@ export declare const toolDefinitions: ({
|
|
|
1676
2027
|
};
|
|
1677
2028
|
required?: undefined;
|
|
1678
2029
|
};
|
|
2030
|
+
_meta?: undefined;
|
|
1679
2031
|
} | {
|
|
1680
2032
|
name: string;
|
|
1681
2033
|
description: string;
|
|
@@ -1701,10 +2053,14 @@ export declare const toolDefinitions: ({
|
|
|
1701
2053
|
search?: undefined;
|
|
1702
2054
|
limit?: undefined;
|
|
1703
2055
|
page?: undefined;
|
|
2056
|
+
stripDescription?: undefined;
|
|
1704
2057
|
workspaceId?: undefined;
|
|
1705
2058
|
purpose?: undefined;
|
|
1706
2059
|
type?: undefined;
|
|
1707
2060
|
governance?: undefined;
|
|
2061
|
+
plan?: undefined;
|
|
2062
|
+
apps?: undefined;
|
|
2063
|
+
layout?: undefined;
|
|
1708
2064
|
query?: undefined;
|
|
1709
2065
|
nestId?: undefined;
|
|
1710
2066
|
fieldsMetaData?: undefined;
|
|
@@ -1731,6 +2087,7 @@ export declare const toolDefinitions: ({
|
|
|
1731
2087
|
};
|
|
1732
2088
|
required: string[];
|
|
1733
2089
|
};
|
|
2090
|
+
_meta?: undefined;
|
|
1734
2091
|
} | {
|
|
1735
2092
|
name: string;
|
|
1736
2093
|
description: string;
|
|
@@ -1753,11 +2110,15 @@ export declare const toolDefinitions: ({
|
|
|
1753
2110
|
search?: undefined;
|
|
1754
2111
|
limit?: undefined;
|
|
1755
2112
|
page?: undefined;
|
|
2113
|
+
stripDescription?: undefined;
|
|
1756
2114
|
workspaceId?: undefined;
|
|
1757
2115
|
title?: undefined;
|
|
1758
2116
|
purpose?: undefined;
|
|
1759
2117
|
type?: undefined;
|
|
1760
2118
|
governance?: undefined;
|
|
2119
|
+
plan?: undefined;
|
|
2120
|
+
apps?: undefined;
|
|
2121
|
+
layout?: undefined;
|
|
1761
2122
|
query?: undefined;
|
|
1762
2123
|
fieldsMetaData?: undefined;
|
|
1763
2124
|
parentId?: undefined;
|
|
@@ -1784,6 +2145,7 @@ export declare const toolDefinitions: ({
|
|
|
1784
2145
|
};
|
|
1785
2146
|
required: string[];
|
|
1786
2147
|
};
|
|
2148
|
+
_meta?: undefined;
|
|
1787
2149
|
} | {
|
|
1788
2150
|
name: string;
|
|
1789
2151
|
description: string;
|
|
@@ -1804,10 +2166,14 @@ export declare const toolDefinitions: ({
|
|
|
1804
2166
|
search?: undefined;
|
|
1805
2167
|
limit?: undefined;
|
|
1806
2168
|
page?: undefined;
|
|
2169
|
+
stripDescription?: undefined;
|
|
1807
2170
|
title?: undefined;
|
|
1808
2171
|
purpose?: undefined;
|
|
1809
2172
|
type?: undefined;
|
|
1810
2173
|
governance?: undefined;
|
|
2174
|
+
plan?: undefined;
|
|
2175
|
+
apps?: undefined;
|
|
2176
|
+
layout?: undefined;
|
|
1811
2177
|
query?: undefined;
|
|
1812
2178
|
nestId?: undefined;
|
|
1813
2179
|
fieldsMetaData?: undefined;
|
|
@@ -1836,6 +2202,62 @@ export declare const toolDefinitions: ({
|
|
|
1836
2202
|
};
|
|
1837
2203
|
required: string[];
|
|
1838
2204
|
};
|
|
2205
|
+
_meta?: undefined;
|
|
2206
|
+
} | {
|
|
2207
|
+
name: string;
|
|
2208
|
+
description: string;
|
|
2209
|
+
inputSchema: {
|
|
2210
|
+
type: "object";
|
|
2211
|
+
properties: {
|
|
2212
|
+
stripDescription: {
|
|
2213
|
+
type: string;
|
|
2214
|
+
description: string;
|
|
2215
|
+
};
|
|
2216
|
+
search?: undefined;
|
|
2217
|
+
limit?: undefined;
|
|
2218
|
+
page?: undefined;
|
|
2219
|
+
workspaceId?: undefined;
|
|
2220
|
+
title?: undefined;
|
|
2221
|
+
purpose?: undefined;
|
|
2222
|
+
type?: undefined;
|
|
2223
|
+
governance?: undefined;
|
|
2224
|
+
plan?: undefined;
|
|
2225
|
+
apps?: undefined;
|
|
2226
|
+
layout?: undefined;
|
|
2227
|
+
query?: undefined;
|
|
2228
|
+
nestId?: undefined;
|
|
2229
|
+
fieldsMetaData?: undefined;
|
|
2230
|
+
parentId?: undefined;
|
|
2231
|
+
description?: undefined;
|
|
2232
|
+
labels?: undefined;
|
|
2233
|
+
users?: undefined;
|
|
2234
|
+
fields?: undefined;
|
|
2235
|
+
data?: undefined;
|
|
2236
|
+
due?: undefined;
|
|
2237
|
+
completed?: undefined;
|
|
2238
|
+
body?: undefined;
|
|
2239
|
+
circleId?: undefined;
|
|
2240
|
+
includeSubCircles?: undefined;
|
|
2241
|
+
depth?: undefined;
|
|
2242
|
+
userId?: undefined;
|
|
2243
|
+
labelId?: undefined;
|
|
2244
|
+
metricId?: undefined;
|
|
2245
|
+
from?: undefined;
|
|
2246
|
+
to?: undefined;
|
|
2247
|
+
completedAfter?: undefined;
|
|
2248
|
+
nestIds?: undefined;
|
|
2249
|
+
color?: undefined;
|
|
2250
|
+
icon?: undefined;
|
|
2251
|
+
position?: undefined;
|
|
2252
|
+
relatedNestId?: undefined;
|
|
2253
|
+
};
|
|
2254
|
+
required?: undefined;
|
|
2255
|
+
};
|
|
2256
|
+
_meta: {
|
|
2257
|
+
ui: {
|
|
2258
|
+
resourceUri: string;
|
|
2259
|
+
};
|
|
2260
|
+
};
|
|
1839
2261
|
})[];
|
|
1840
2262
|
export type ToolResult = {
|
|
1841
2263
|
content: Array<{
|