@doist/todoist-ai 7.10.0 → 7.11.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.
- package/dist/index.d.ts +115 -6
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -2
- package/dist/main-http.js +1 -1
- package/dist/main.js +1 -1
- package/dist/{mcp-server-DxuxnYdP.js → mcp-server-BTYWubVl.js} +559 -536
- package/dist/tool-helpers.d.ts +2 -2
- package/dist/tool-helpers.d.ts.map +1 -1
- package/dist/tools/add-projects.d.ts +46 -2
- package/dist/tools/add-projects.d.ts.map +1 -1
- package/dist/tools/fetch-object.d.ts +23 -2
- package/dist/tools/fetch-object.d.ts.map +1 -1
- package/dist/tools/find-projects.d.ts +23 -2
- package/dist/tools/find-projects.d.ts.map +1 -1
- package/dist/tools/find-tasks-by-date.d.ts.map +1 -1
- package/dist/tools/project-management.d.ts +23 -2
- package/dist/tools/project-management.d.ts.map +1 -1
- package/dist/tools/project-move.d.ts +23 -2
- package/dist/tools/project-move.d.ts.map +1 -1
- package/dist/tools/update-projects.d.ts +46 -2
- package/dist/tools/update-projects.d.ts.map +1 -1
- package/dist/tools/user-info.d.ts.map +1 -1
- package/dist/utils/colors.d.ts +46 -0
- package/dist/utils/colors.d.ts.map +1 -0
- package/dist/utils/output-schemas.d.ts +22 -1
- package/dist/utils/output-schemas.d.ts.map +1 -1
- package/dist/utils/response-builders.d.ts.map +1 -1
- package/package.json +6 -6
package/dist/index.d.ts
CHANGED
|
@@ -612,13 +612,56 @@ declare const tools: {
|
|
|
612
612
|
board: "board";
|
|
613
613
|
calendar: "calendar";
|
|
614
614
|
}>>;
|
|
615
|
+
color: import('zod').ZodPipe<import('zod').ZodTransform<string | undefined, unknown>, import('zod').ZodOptional<import('zod').ZodEnum<{
|
|
616
|
+
berry_red: "berry_red";
|
|
617
|
+
red: "red";
|
|
618
|
+
orange: "orange";
|
|
619
|
+
yellow: "yellow";
|
|
620
|
+
olive_green: "olive_green";
|
|
621
|
+
lime_green: "lime_green";
|
|
622
|
+
green: "green";
|
|
623
|
+
mint_green: "mint_green";
|
|
624
|
+
turquoise: "turquoise";
|
|
625
|
+
sky_blue: "sky_blue";
|
|
626
|
+
light_blue: "light_blue";
|
|
627
|
+
blue: "blue";
|
|
628
|
+
grape: "grape";
|
|
629
|
+
violet: "violet";
|
|
630
|
+
lavender: "lavender";
|
|
631
|
+
magenta: "magenta";
|
|
632
|
+
salmon: "salmon";
|
|
633
|
+
charcoal: "charcoal";
|
|
634
|
+
gray: "gray";
|
|
635
|
+
taupe: "taupe";
|
|
636
|
+
}>>>;
|
|
615
637
|
}, import('zod/v4/core').$strip>>;
|
|
616
638
|
};
|
|
617
639
|
outputSchema: {
|
|
618
640
|
projects: import('zod').ZodArray<import('zod').ZodObject<{
|
|
619
641
|
id: import('zod').ZodString;
|
|
620
642
|
name: import('zod').ZodString;
|
|
621
|
-
color: import('zod').
|
|
643
|
+
color: import('zod').ZodEnum<{
|
|
644
|
+
berry_red: "berry_red";
|
|
645
|
+
red: "red";
|
|
646
|
+
orange: "orange";
|
|
647
|
+
yellow: "yellow";
|
|
648
|
+
olive_green: "olive_green";
|
|
649
|
+
lime_green: "lime_green";
|
|
650
|
+
green: "green";
|
|
651
|
+
mint_green: "mint_green";
|
|
652
|
+
turquoise: "turquoise";
|
|
653
|
+
sky_blue: "sky_blue";
|
|
654
|
+
light_blue: "light_blue";
|
|
655
|
+
blue: "blue";
|
|
656
|
+
grape: "grape";
|
|
657
|
+
violet: "violet";
|
|
658
|
+
lavender: "lavender";
|
|
659
|
+
magenta: "magenta";
|
|
660
|
+
salmon: "salmon";
|
|
661
|
+
charcoal: "charcoal";
|
|
662
|
+
gray: "gray";
|
|
663
|
+
taupe: "taupe";
|
|
664
|
+
}>;
|
|
622
665
|
isFavorite: import('zod').ZodBoolean;
|
|
623
666
|
isShared: import('zod').ZodBoolean;
|
|
624
667
|
parentId: import('zod').ZodOptional<import('zod').ZodString>;
|
|
@@ -639,6 +682,7 @@ declare const tools: {
|
|
|
639
682
|
parentId?: string | undefined;
|
|
640
683
|
isFavorite?: boolean | undefined;
|
|
641
684
|
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;
|
|
642
686
|
}[];
|
|
643
687
|
}, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
|
|
644
688
|
textContent: string;
|
|
@@ -646,7 +690,7 @@ declare const tools: {
|
|
|
646
690
|
projects: {
|
|
647
691
|
id: string;
|
|
648
692
|
name: string;
|
|
649
|
-
color:
|
|
693
|
+
color: import('@doist/todoist-api-typescript').ColorKey;
|
|
650
694
|
isFavorite: boolean;
|
|
651
695
|
isShared: boolean;
|
|
652
696
|
parentId: string | undefined;
|
|
@@ -671,13 +715,56 @@ declare const tools: {
|
|
|
671
715
|
board: "board";
|
|
672
716
|
calendar: "calendar";
|
|
673
717
|
}>>;
|
|
718
|
+
color: import('zod').ZodPipe<import('zod').ZodTransform<string | undefined, unknown>, import('zod').ZodOptional<import('zod').ZodEnum<{
|
|
719
|
+
berry_red: "berry_red";
|
|
720
|
+
red: "red";
|
|
721
|
+
orange: "orange";
|
|
722
|
+
yellow: "yellow";
|
|
723
|
+
olive_green: "olive_green";
|
|
724
|
+
lime_green: "lime_green";
|
|
725
|
+
green: "green";
|
|
726
|
+
mint_green: "mint_green";
|
|
727
|
+
turquoise: "turquoise";
|
|
728
|
+
sky_blue: "sky_blue";
|
|
729
|
+
light_blue: "light_blue";
|
|
730
|
+
blue: "blue";
|
|
731
|
+
grape: "grape";
|
|
732
|
+
violet: "violet";
|
|
733
|
+
lavender: "lavender";
|
|
734
|
+
magenta: "magenta";
|
|
735
|
+
salmon: "salmon";
|
|
736
|
+
charcoal: "charcoal";
|
|
737
|
+
gray: "gray";
|
|
738
|
+
taupe: "taupe";
|
|
739
|
+
}>>>;
|
|
674
740
|
}, import('zod/v4/core').$strip>>;
|
|
675
741
|
};
|
|
676
742
|
outputSchema: {
|
|
677
743
|
projects: import('zod').ZodArray<import('zod').ZodObject<{
|
|
678
744
|
id: import('zod').ZodString;
|
|
679
745
|
name: import('zod').ZodString;
|
|
680
|
-
color: import('zod').
|
|
746
|
+
color: import('zod').ZodEnum<{
|
|
747
|
+
berry_red: "berry_red";
|
|
748
|
+
red: "red";
|
|
749
|
+
orange: "orange";
|
|
750
|
+
yellow: "yellow";
|
|
751
|
+
olive_green: "olive_green";
|
|
752
|
+
lime_green: "lime_green";
|
|
753
|
+
green: "green";
|
|
754
|
+
mint_green: "mint_green";
|
|
755
|
+
turquoise: "turquoise";
|
|
756
|
+
sky_blue: "sky_blue";
|
|
757
|
+
light_blue: "light_blue";
|
|
758
|
+
blue: "blue";
|
|
759
|
+
grape: "grape";
|
|
760
|
+
violet: "violet";
|
|
761
|
+
lavender: "lavender";
|
|
762
|
+
magenta: "magenta";
|
|
763
|
+
salmon: "salmon";
|
|
764
|
+
charcoal: "charcoal";
|
|
765
|
+
gray: "gray";
|
|
766
|
+
taupe: "taupe";
|
|
767
|
+
}>;
|
|
681
768
|
isFavorite: import('zod').ZodBoolean;
|
|
682
769
|
isShared: import('zod').ZodBoolean;
|
|
683
770
|
parentId: import('zod').ZodOptional<import('zod').ZodString>;
|
|
@@ -703,6 +790,7 @@ declare const tools: {
|
|
|
703
790
|
name?: string | undefined;
|
|
704
791
|
isFavorite?: boolean | undefined;
|
|
705
792
|
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;
|
|
706
794
|
}[];
|
|
707
795
|
}, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
|
|
708
796
|
textContent: string;
|
|
@@ -710,7 +798,7 @@ declare const tools: {
|
|
|
710
798
|
projects: {
|
|
711
799
|
id: string;
|
|
712
800
|
name: string;
|
|
713
|
-
color:
|
|
801
|
+
color: import('@doist/todoist-api-typescript').ColorKey;
|
|
714
802
|
isFavorite: boolean;
|
|
715
803
|
isShared: boolean;
|
|
716
804
|
parentId: string | undefined;
|
|
@@ -739,7 +827,28 @@ declare const tools: {
|
|
|
739
827
|
projects: import('zod').ZodArray<import('zod').ZodObject<{
|
|
740
828
|
id: import('zod').ZodString;
|
|
741
829
|
name: import('zod').ZodString;
|
|
742
|
-
color: import('zod').
|
|
830
|
+
color: import('zod').ZodEnum<{
|
|
831
|
+
berry_red: "berry_red";
|
|
832
|
+
red: "red";
|
|
833
|
+
orange: "orange";
|
|
834
|
+
yellow: "yellow";
|
|
835
|
+
olive_green: "olive_green";
|
|
836
|
+
lime_green: "lime_green";
|
|
837
|
+
green: "green";
|
|
838
|
+
mint_green: "mint_green";
|
|
839
|
+
turquoise: "turquoise";
|
|
840
|
+
sky_blue: "sky_blue";
|
|
841
|
+
light_blue: "light_blue";
|
|
842
|
+
blue: "blue";
|
|
843
|
+
grape: "grape";
|
|
844
|
+
violet: "violet";
|
|
845
|
+
lavender: "lavender";
|
|
846
|
+
magenta: "magenta";
|
|
847
|
+
salmon: "salmon";
|
|
848
|
+
charcoal: "charcoal";
|
|
849
|
+
gray: "gray";
|
|
850
|
+
taupe: "taupe";
|
|
851
|
+
}>;
|
|
743
852
|
isFavorite: import('zod').ZodBoolean;
|
|
744
853
|
isShared: import('zod').ZodBoolean;
|
|
745
854
|
parentId: import('zod').ZodOptional<import('zod').ZodString>;
|
|
@@ -767,7 +876,7 @@ declare const tools: {
|
|
|
767
876
|
projects: {
|
|
768
877
|
id: string;
|
|
769
878
|
name: string;
|
|
770
|
-
color:
|
|
879
|
+
color: import('@doist/todoist-api-typescript').ColorKey;
|
|
771
880
|
isFavorite: boolean;
|
|
772
881
|
isShared: boolean;
|
|
773
882
|
parentId: string | undefined;
|
package/dist/index.d.ts.map
CHANGED
|
@@ -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
|
|
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"}
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
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-
|
|
2
|
-
import { F as E, g as w } from "./mcp-server-
|
|
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-BTYWubVl.js";
|
|
2
|
+
import { F as E, g as w } from "./mcp-server-BTYWubVl.js";
|
|
3
3
|
const h = {
|
|
4
4
|
// Task management tools
|
|
5
5
|
addTasks: P,
|
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-
|
|
5
|
+
import { g as p } from "./mcp-server-BTYWubVl.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-
|
|
4
|
+
import { g as i } from "./mcp-server-BTYWubVl.js";
|
|
5
5
|
function p() {
|
|
6
6
|
const e = process.env.TODOIST_BASE_URL, r = process.env.TODOIST_API_KEY;
|
|
7
7
|
if (!r)
|