@doist/todoist-ai 7.11.2 → 7.12.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 (36) hide show
  1. package/dist/index.d.ts +186 -15
  2. package/dist/index.d.ts.map +1 -1
  3. package/dist/index.js +41 -36
  4. package/dist/main-http.js +1 -1
  5. package/dist/main.js +1 -1
  6. package/dist/{mcp-server-BxHvudlC.js → mcp-server-RtvDgXJL.js} +829 -693
  7. package/dist/mcp-server.d.ts.map +1 -1
  8. package/dist/tool-helpers.d.ts +10 -1
  9. package/dist/tool-helpers.d.ts.map +1 -1
  10. package/dist/tools/add-labels.d.ts +92 -0
  11. package/dist/tools/add-labels.d.ts.map +1 -0
  12. package/dist/tools/add-projects.d.ts +5 -5
  13. package/dist/tools/delete-object.d.ts +4 -2
  14. package/dist/tools/delete-object.d.ts.map +1 -1
  15. package/dist/tools/fetch-object.d.ts +2 -2
  16. package/dist/tools/find-activity.d.ts.map +1 -1
  17. package/dist/tools/find-labels.d.ts +81 -0
  18. package/dist/tools/find-labels.d.ts.map +1 -0
  19. package/dist/tools/find-projects.d.ts +2 -2
  20. package/dist/tools/project-management.d.ts +2 -2
  21. package/dist/tools/project-move.d.ts +2 -2
  22. package/dist/tools/update-projects.d.ts +5 -5
  23. package/dist/utils/colors.d.ts +6 -6
  24. package/dist/utils/colors.d.ts.map +1 -1
  25. package/dist/utils/constants.d.ts +4 -0
  26. package/dist/utils/constants.d.ts.map +1 -1
  27. package/dist/utils/output-schemas.d.ts +34 -3
  28. package/dist/utils/output-schemas.d.ts.map +1 -1
  29. package/dist/utils/response-builders.d.ts +5 -0
  30. package/dist/utils/response-builders.d.ts.map +1 -1
  31. package/dist/utils/test-helpers.d.ts +6 -1
  32. package/dist/utils/test-helpers.d.ts.map +1 -1
  33. package/dist/utils/tool-names.d.ts +2 -0
  34. package/dist/utils/tool-names.d.ts.map +1 -1
  35. package/package.json +5 -5
  36. package/scripts/run-tool.ts +4 -0
package/dist/index.d.ts CHANGED
@@ -1,6 +1,7 @@
1
1
  import { FEATURE_NAMES, Feature, FeatureName, Features } from './mcp-helpers.js';
2
2
  import { getMcpServer } from './mcp-server.js';
3
3
  import { addComments } from './tools/add-comments.js';
4
+ import { addLabels } from './tools/add-labels.js';
4
5
  import { addProjects } from './tools/add-projects.js';
5
6
  import { addSections } from './tools/add-sections.js';
6
7
  import { addTasks } from './tools/add-tasks.js';
@@ -10,6 +11,7 @@ import { fetch } from './tools/fetch.js';
10
11
  import { findActivity } from './tools/find-activity.js';
11
12
  import { findComments } from './tools/find-comments.js';
12
13
  import { findCompletedTasks } from './tools/find-completed-tasks.js';
14
+ import { findLabels } from './tools/find-labels.js';
13
15
  import { findProjectCollaborators } from './tools/find-project-collaborators.js';
14
16
  import { findProjects } from './tools/find-projects.js';
15
17
  import { findSections } from './tools/find-sections.js';
@@ -621,7 +623,7 @@ declare const tools: {
621
623
  lime_green: "lime_green";
622
624
  green: "green";
623
625
  mint_green: "mint_green";
624
- turquoise: "turquoise";
626
+ teal: "teal";
625
627
  sky_blue: "sky_blue";
626
628
  light_blue: "light_blue";
627
629
  blue: "blue";
@@ -631,7 +633,7 @@ declare const tools: {
631
633
  magenta: "magenta";
632
634
  salmon: "salmon";
633
635
  charcoal: "charcoal";
634
- gray: "gray";
636
+ grey: "grey";
635
637
  taupe: "taupe";
636
638
  }>>>;
637
639
  }, import('zod/v4/core').$strip>>;
@@ -649,7 +651,7 @@ declare const tools: {
649
651
  lime_green: "lime_green";
650
652
  green: "green";
651
653
  mint_green: "mint_green";
652
- turquoise: "turquoise";
654
+ teal: "teal";
653
655
  sky_blue: "sky_blue";
654
656
  light_blue: "light_blue";
655
657
  blue: "blue";
@@ -659,7 +661,7 @@ declare const tools: {
659
661
  magenta: "magenta";
660
662
  salmon: "salmon";
661
663
  charcoal: "charcoal";
662
- gray: "gray";
664
+ grey: "grey";
663
665
  taupe: "taupe";
664
666
  }>>>;
665
667
  isFavorite: import('zod').ZodBoolean;
@@ -682,7 +684,7 @@ declare const tools: {
682
684
  parentId?: string | undefined;
683
685
  isFavorite?: boolean | undefined;
684
686
  viewStyle?: "list" | "board" | "calendar" | undefined;
685
- color?: "berry_red" | "red" | "orange" | "yellow" | "olive_green" | "lime_green" | "green" | "mint_green" | "turquoise" | "sky_blue" | "light_blue" | "blue" | "grape" | "violet" | "lavender" | "magenta" | "salmon" | "charcoal" | "gray" | "taupe" | undefined;
687
+ color?: "berry_red" | "red" | "orange" | "yellow" | "olive_green" | "lime_green" | "green" | "mint_green" | "teal" | "sky_blue" | "light_blue" | "blue" | "grape" | "violet" | "lavender" | "magenta" | "salmon" | "charcoal" | "grey" | "taupe" | undefined;
686
688
  }[];
687
689
  }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
688
690
  textContent: string;
@@ -724,7 +726,7 @@ declare const tools: {
724
726
  lime_green: "lime_green";
725
727
  green: "green";
726
728
  mint_green: "mint_green";
727
- turquoise: "turquoise";
729
+ teal: "teal";
728
730
  sky_blue: "sky_blue";
729
731
  light_blue: "light_blue";
730
732
  blue: "blue";
@@ -734,7 +736,7 @@ declare const tools: {
734
736
  magenta: "magenta";
735
737
  salmon: "salmon";
736
738
  charcoal: "charcoal";
737
- gray: "gray";
739
+ grey: "grey";
738
740
  taupe: "taupe";
739
741
  }>>>;
740
742
  }, import('zod/v4/core').$strip>>;
@@ -752,7 +754,7 @@ declare const tools: {
752
754
  lime_green: "lime_green";
753
755
  green: "green";
754
756
  mint_green: "mint_green";
755
- turquoise: "turquoise";
757
+ teal: "teal";
756
758
  sky_blue: "sky_blue";
757
759
  light_blue: "light_blue";
758
760
  blue: "blue";
@@ -762,7 +764,7 @@ declare const tools: {
762
764
  magenta: "magenta";
763
765
  salmon: "salmon";
764
766
  charcoal: "charcoal";
765
- gray: "gray";
767
+ grey: "grey";
766
768
  taupe: "taupe";
767
769
  }>>>;
768
770
  isFavorite: import('zod').ZodBoolean;
@@ -790,7 +792,7 @@ declare const tools: {
790
792
  name?: string | undefined;
791
793
  isFavorite?: boolean | undefined;
792
794
  viewStyle?: "list" | "board" | "calendar" | undefined;
793
- color?: "berry_red" | "red" | "orange" | "yellow" | "olive_green" | "lime_green" | "green" | "mint_green" | "turquoise" | "sky_blue" | "light_blue" | "blue" | "grape" | "violet" | "lavender" | "magenta" | "salmon" | "charcoal" | "gray" | "taupe" | undefined;
795
+ color?: "berry_red" | "red" | "orange" | "yellow" | "olive_green" | "lime_green" | "green" | "mint_green" | "teal" | "sky_blue" | "light_blue" | "blue" | "grape" | "violet" | "lavender" | "magenta" | "salmon" | "charcoal" | "grey" | "taupe" | undefined;
794
796
  }[];
795
797
  }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
796
798
  textContent: string;
@@ -836,7 +838,7 @@ declare const tools: {
836
838
  lime_green: "lime_green";
837
839
  green: "green";
838
840
  mint_green: "mint_green";
839
- turquoise: "turquoise";
841
+ teal: "teal";
840
842
  sky_blue: "sky_blue";
841
843
  light_blue: "light_blue";
842
844
  blue: "blue";
@@ -846,7 +848,7 @@ declare const tools: {
846
848
  magenta: "magenta";
847
849
  salmon: "salmon";
848
850
  charcoal: "charcoal";
849
- gray: "gray";
851
+ grey: "grey";
850
852
  taupe: "taupe";
851
853
  }>>>;
852
854
  isFavorite: import('zod').ZodBoolean;
@@ -1279,6 +1281,173 @@ declare const tools: {
1279
1281
  };
1280
1282
  }>;
1281
1283
  };
1284
+ addLabels: {
1285
+ name: "add-labels";
1286
+ description: string;
1287
+ parameters: {
1288
+ labels: import('zod').ZodArray<import('zod').ZodObject<{
1289
+ name: import('zod').ZodString;
1290
+ color: import('zod').ZodPipe<import('zod').ZodTransform<string | undefined, unknown>, import('zod').ZodOptional<import('zod').ZodEnum<{
1291
+ berry_red: "berry_red";
1292
+ red: "red";
1293
+ orange: "orange";
1294
+ yellow: "yellow";
1295
+ olive_green: "olive_green";
1296
+ lime_green: "lime_green";
1297
+ green: "green";
1298
+ mint_green: "mint_green";
1299
+ teal: "teal";
1300
+ sky_blue: "sky_blue";
1301
+ light_blue: "light_blue";
1302
+ blue: "blue";
1303
+ grape: "grape";
1304
+ violet: "violet";
1305
+ lavender: "lavender";
1306
+ magenta: "magenta";
1307
+ salmon: "salmon";
1308
+ charcoal: "charcoal";
1309
+ grey: "grey";
1310
+ taupe: "taupe";
1311
+ }>>>;
1312
+ order: import('zod').ZodOptional<import('zod').ZodNumber>;
1313
+ isFavorite: import('zod').ZodOptional<import('zod').ZodBoolean>;
1314
+ }, import('zod/v4/core').$strip>>;
1315
+ };
1316
+ outputSchema: {
1317
+ labels: import('zod').ZodArray<import('zod').ZodObject<{
1318
+ id: import('zod').ZodString;
1319
+ name: import('zod').ZodString;
1320
+ color: import('zod').ZodCatch<import('zod').ZodOptional<import('zod').ZodEnum<{
1321
+ berry_red: "berry_red";
1322
+ red: "red";
1323
+ orange: "orange";
1324
+ yellow: "yellow";
1325
+ olive_green: "olive_green";
1326
+ lime_green: "lime_green";
1327
+ green: "green";
1328
+ mint_green: "mint_green";
1329
+ teal: "teal";
1330
+ sky_blue: "sky_blue";
1331
+ light_blue: "light_blue";
1332
+ blue: "blue";
1333
+ grape: "grape";
1334
+ violet: "violet";
1335
+ lavender: "lavender";
1336
+ magenta: "magenta";
1337
+ salmon: "salmon";
1338
+ charcoal: "charcoal";
1339
+ grey: "grey";
1340
+ taupe: "taupe";
1341
+ }>>>;
1342
+ order: import('zod').ZodCatch<import('zod').ZodOptional<import('zod').ZodNumber>>;
1343
+ isFavorite: import('zod').ZodBoolean;
1344
+ }, import('zod/v4/core').$strip>>;
1345
+ totalCount: import('zod').ZodNumber;
1346
+ };
1347
+ annotations: {
1348
+ readOnlyHint: false;
1349
+ destructiveHint: false;
1350
+ idempotentHint: false;
1351
+ };
1352
+ execute({ labels }: {
1353
+ labels: {
1354
+ name: string;
1355
+ color?: "berry_red" | "red" | "orange" | "yellow" | "olive_green" | "lime_green" | "green" | "mint_green" | "teal" | "sky_blue" | "light_blue" | "blue" | "grape" | "violet" | "lavender" | "magenta" | "salmon" | "charcoal" | "grey" | "taupe" | undefined;
1356
+ order?: number | undefined;
1357
+ isFavorite?: boolean | undefined;
1358
+ }[];
1359
+ }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
1360
+ textContent: string;
1361
+ structuredContent: {
1362
+ labels: {
1363
+ id: string;
1364
+ name: string;
1365
+ isFavorite: boolean;
1366
+ color?: "berry_red" | "red" | "orange" | "yellow" | "olive_green" | "lime_green" | "green" | "mint_green" | "teal" | "sky_blue" | "light_blue" | "blue" | "grape" | "violet" | "lavender" | "magenta" | "salmon" | "charcoal" | "grey" | "taupe" | undefined;
1367
+ order?: number | undefined;
1368
+ }[];
1369
+ totalCount: number;
1370
+ };
1371
+ }>;
1372
+ };
1373
+ findLabels: {
1374
+ name: "find-labels";
1375
+ description: string;
1376
+ parameters: {
1377
+ search: import('zod').ZodOptional<import('zod').ZodString>;
1378
+ limit: import('zod').ZodDefault<import('zod').ZodNumber>;
1379
+ cursor: import('zod').ZodOptional<import('zod').ZodString>;
1380
+ };
1381
+ outputSchema: {
1382
+ labels: import('zod').ZodArray<import('zod').ZodObject<{
1383
+ id: import('zod').ZodString;
1384
+ name: import('zod').ZodString;
1385
+ color: import('zod').ZodCatch<import('zod').ZodOptional<import('zod').ZodEnum<{
1386
+ berry_red: "berry_red";
1387
+ red: "red";
1388
+ orange: "orange";
1389
+ yellow: "yellow";
1390
+ olive_green: "olive_green";
1391
+ lime_green: "lime_green";
1392
+ green: "green";
1393
+ mint_green: "mint_green";
1394
+ teal: "teal";
1395
+ sky_blue: "sky_blue";
1396
+ light_blue: "light_blue";
1397
+ blue: "blue";
1398
+ grape: "grape";
1399
+ violet: "violet";
1400
+ lavender: "lavender";
1401
+ magenta: "magenta";
1402
+ salmon: "salmon";
1403
+ charcoal: "charcoal";
1404
+ grey: "grey";
1405
+ taupe: "taupe";
1406
+ }>>>;
1407
+ order: import('zod').ZodCatch<import('zod').ZodOptional<import('zod').ZodNumber>>;
1408
+ isFavorite: import('zod').ZodBoolean;
1409
+ }, import('zod/v4/core').$strip>>;
1410
+ nextCursor: import('zod').ZodOptional<import('zod').ZodString>;
1411
+ totalCount: import('zod').ZodNumber;
1412
+ hasMore: import('zod').ZodBoolean;
1413
+ sharedLabels: import('zod').ZodArray<import('zod').ZodString>;
1414
+ appliedFilters: import('zod').ZodRecord<import('zod').ZodString, import('zod').ZodUnknown>;
1415
+ };
1416
+ annotations: {
1417
+ readOnlyHint: true;
1418
+ destructiveHint: false;
1419
+ idempotentHint: true;
1420
+ };
1421
+ execute(args: {
1422
+ limit: number;
1423
+ search?: string | undefined;
1424
+ cursor?: string | undefined;
1425
+ }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
1426
+ textContent: string;
1427
+ structuredContent: {
1428
+ labels: {
1429
+ id: string;
1430
+ name: string;
1431
+ isFavorite: boolean;
1432
+ color?: "berry_red" | "red" | "orange" | "yellow" | "olive_green" | "lime_green" | "green" | "mint_green" | "teal" | "sky_blue" | "light_blue" | "blue" | "grape" | "violet" | "lavender" | "magenta" | "salmon" | "charcoal" | "grey" | "taupe" | undefined;
1433
+ order?: number | undefined;
1434
+ }[];
1435
+ nextCursor: string | undefined;
1436
+ totalCount: number;
1437
+ hasMore: boolean;
1438
+ sharedLabels: string[];
1439
+ appliedFilters: {
1440
+ search: string;
1441
+ limit?: undefined;
1442
+ cursor?: undefined;
1443
+ } | {
1444
+ limit: number;
1445
+ cursor: string | undefined;
1446
+ search?: undefined;
1447
+ };
1448
+ };
1449
+ }>;
1450
+ };
1282
1451
  findActivity: {
1283
1452
  name: "find-activity";
1284
1453
  description: string;
@@ -1417,6 +1586,7 @@ declare const tools: {
1417
1586
  task: "task";
1418
1587
  project: "project";
1419
1588
  section: "section";
1589
+ label: "label";
1420
1590
  }>;
1421
1591
  id: import('zod').ZodString;
1422
1592
  };
@@ -1427,6 +1597,7 @@ declare const tools: {
1427
1597
  task: "task";
1428
1598
  project: "project";
1429
1599
  section: "section";
1600
+ label: "label";
1430
1601
  }>;
1431
1602
  id: import('zod').ZodString;
1432
1603
  }, import('zod/v4/core').$strip>;
@@ -1438,13 +1609,13 @@ declare const tools: {
1438
1609
  idempotentHint: true;
1439
1610
  };
1440
1611
  execute(args: {
1441
- type: "comment" | "task" | "project" | "section";
1612
+ type: "comment" | "task" | "project" | "section" | "label";
1442
1613
  id: string;
1443
1614
  }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
1444
1615
  textContent: string;
1445
1616
  structuredContent: {
1446
1617
  deletedEntity: {
1447
- type: "comment" | "task" | "project" | "section";
1618
+ type: "comment" | "task" | "project" | "section" | "label";
1448
1619
  id: string;
1449
1620
  };
1450
1621
  success: true;
@@ -1719,5 +1890,5 @@ declare const tools: {
1719
1890
  };
1720
1891
  };
1721
1892
  export { tools, getMcpServer, FEATURE_NAMES, type Feature, type FeatureName, type Features };
1722
- export { addTasks, completeTasks, updateTasks, findTasks, findTasksByDate, findCompletedTasks, addProjects, updateProjects, findProjects, addSections, updateSections, findSections, addComments, updateComments, findComments, findActivity, getOverview, deleteObject, userInfo, findProjectCollaborators, manageAssignments, listWorkspaces, search, fetch, };
1893
+ export { addTasks, completeTasks, updateTasks, findTasks, findTasksByDate, findCompletedTasks, addProjects, updateProjects, findProjects, addSections, updateSections, findSections, addComments, updateComments, findComments, addLabels, findLabels, findActivity, getOverview, deleteObject, userInfo, findProjectCollaborators, manageAssignments, listWorkspaces, search, fetch, };
1723
1894
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,KAAK,OAAO,EAAE,KAAK,WAAW,EAAE,KAAK,QAAQ,EAAE,MAAM,kBAAkB,CAAA;AAC/F,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAA;AAE9C,OAAO,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAA;AAErD,OAAO,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAA;AAErD,OAAO,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAA;AAErD,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAA;AAC/C,OAAO,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAA;AAEzD,OAAO,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAA;AACvD,OAAO,EAAE,KAAK,EAAE,MAAM,kBAAkB,CAAA;AAExC,OAAO,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAA;AACvD,OAAO,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAA;AACvD,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAA;AAEpE,OAAO,EAAE,wBAAwB,EAAE,MAAM,uCAAuC,CAAA;AAChF,OAAO,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAA;AACvD,OAAO,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAA;AACvD,OAAO,EAAE,SAAS,EAAE,MAAM,uBAAuB,CAAA;AACjD,OAAO,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAA;AAC/D,OAAO,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAA;AACrD,OAAO,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAA;AAC3D,OAAO,EAAE,iBAAiB,EAAE,MAAM,+BAA+B,CAAA;AACjE,OAAO,EAAE,MAAM,EAAE,MAAM,mBAAmB,CAAA;AAC1C,OAAO,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAA;AAC3D,OAAO,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAA;AAC3D,OAAO,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAA;AAC3D,OAAO,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAA;AACrD,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAA;AAE/C,QAAA,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkCV,CAAA;AAED,OAAO,EAAE,KAAK,EAAE,YAAY,EAAE,aAAa,EAAE,KAAK,OAAO,EAAE,KAAK,WAAW,EAAE,KAAK,QAAQ,EAAE,CAAA;AAE5F,OAAO,EAEH,QAAQ,EACR,aAAa,EACb,WAAW,EACX,SAAS,EACT,eAAe,EACf,kBAAkB,EAElB,WAAW,EACX,cAAc,EACd,YAAY,EAEZ,WAAW,EACX,cAAc,EACd,YAAY,EAEZ,WAAW,EACX,cAAc,EACd,YAAY,EAEZ,YAAY,EAEZ,WAAW,EACX,YAAY,EACZ,QAAQ,EAER,wBAAwB,EACxB,iBAAiB,EAEjB,cAAc,EAEd,MAAM,EACN,KAAK,GACR,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
package/dist/index.js CHANGED
@@ -1,33 +1,36 @@
1
- import { f as s, s as a, l as e, m as t, a as o, u as d, d as n, b as i, c as r, e as c, h as m, i as f, j as p, k, n as l, o as T, p as j, q as u, r as g, t as v, v as C, w as S, x as A, y as P } from "./mcp-server-BxHvudlC.js";
2
- import { F as E, g as w } from "./mcp-server-BxHvudlC.js";
3
- const h = {
1
+ import { f as s, s as a, l as e, m as t, a as d, u as o, d as n, b as i, c as r, e as c, h as f, i as m, j as p, k as l, n as k, o as T, p as j, q as u, r as b, t as g, v, w as A, x as C, y as S, z as P, A as h } from "./mcp-server-RtvDgXJL.js";
2
+ import { F, g as L } from "./mcp-server-RtvDgXJL.js";
3
+ const y = {
4
4
  // Task management tools
5
- addTasks: P,
6
- completeTasks: A,
5
+ addTasks: h,
6
+ completeTasks: P,
7
7
  updateTasks: S,
8
8
  findTasks: C,
9
- findTasksByDate: v,
10
- findCompletedTasks: g,
9
+ findTasksByDate: A,
10
+ findCompletedTasks: v,
11
11
  // Project management tools
12
- addProjects: u,
13
- updateProjects: j,
14
- findProjects: T,
12
+ addProjects: g,
13
+ updateProjects: b,
14
+ findProjects: u,
15
15
  // Section management tools
16
- addSections: l,
17
- updateSections: k,
18
- findSections: p,
16
+ addSections: j,
17
+ updateSections: T,
18
+ findSections: k,
19
19
  // Comment management tools
20
- addComments: f,
21
- updateComments: m,
22
- findComments: c,
20
+ addComments: l,
21
+ updateComments: p,
22
+ findComments: m,
23
+ // Label management tools
24
+ addLabels: f,
25
+ findLabels: c,
23
26
  // Activity and audit tools
24
27
  findActivity: r,
25
28
  // General tools
26
29
  getOverview: i,
27
30
  deleteObject: n,
28
- userInfo: d,
31
+ userInfo: o,
29
32
  // Assignment and collaboration tools
30
- findProjectCollaborators: o,
33
+ findProjectCollaborators: d,
31
34
  manageAssignments: t,
32
35
  // Workspace tools
33
36
  listWorkspaces: e,
@@ -36,31 +39,33 @@ const h = {
36
39
  fetch: s
37
40
  };
38
41
  export {
39
- E as FEATURE_NAMES,
40
- f as addComments,
41
- u as addProjects,
42
- l as addSections,
43
- P as addTasks,
44
- A as completeTasks,
42
+ F as FEATURE_NAMES,
43
+ l as addComments,
44
+ f as addLabels,
45
+ g as addProjects,
46
+ j as addSections,
47
+ h as addTasks,
48
+ P as completeTasks,
45
49
  n as deleteObject,
46
50
  s as fetch,
47
51
  r as findActivity,
48
- c as findComments,
49
- g as findCompletedTasks,
50
- o as findProjectCollaborators,
51
- T as findProjects,
52
- p as findSections,
52
+ m as findComments,
53
+ v as findCompletedTasks,
54
+ c as findLabels,
55
+ d as findProjectCollaborators,
56
+ u as findProjects,
57
+ k as findSections,
53
58
  C as findTasks,
54
- v as findTasksByDate,
55
- w as getMcpServer,
59
+ A as findTasksByDate,
60
+ L as getMcpServer,
56
61
  i as getOverview,
57
62
  e as listWorkspaces,
58
63
  t as manageAssignments,
59
64
  a as search,
60
- h as tools,
61
- m as updateComments,
62
- j as updateProjects,
63
- k as updateSections,
65
+ y as tools,
66
+ p as updateComments,
67
+ b as updateProjects,
68
+ T as updateSections,
64
69
  S as updateTasks,
65
- d as userInfo
70
+ o as userInfo
66
71
  };
package/dist/main-http.js CHANGED
@@ -2,7 +2,7 @@
2
2
  import { StreamableHTTPServerTransport as i } from "@modelcontextprotocol/sdk/server/streamableHttp.js";
3
3
  import l from "dotenv";
4
4
  import a from "express";
5
- import { g as p } from "./mcp-server-BxHvudlC.js";
5
+ import { g as p } from "./mcp-server-RtvDgXJL.js";
6
6
  l.config({ quiet: !0 });
7
7
  const s = Number.parseInt(process.env.PORT || "3000", 10);
8
8
  function d() {
package/dist/main.js CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import { StdioServerTransport as s } from "@modelcontextprotocol/sdk/server/stdio.js";
3
3
  import c from "dotenv";
4
- import { g as i } from "./mcp-server-BxHvudlC.js";
4
+ import { g as i } from "./mcp-server-RtvDgXJL.js";
5
5
  function p() {
6
6
  const e = process.env.TODOIST_BASE_URL, r = process.env.TODOIST_API_KEY;
7
7
  if (!r)