@doist/todoist-ai 8.0.1 → 8.1.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 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 { addFilters } from './tools/add-filters.js';
4
5
  import { addLabels } from './tools/add-labels.js';
5
6
  import { addProjects } from './tools/add-projects.js';
6
7
  import { addSections } from './tools/add-sections.js';
@@ -11,6 +12,7 @@ import { fetch } from './tools/fetch.js';
11
12
  import { findActivity } from './tools/find-activity.js';
12
13
  import { findComments } from './tools/find-comments.js';
13
14
  import { findCompletedTasks } from './tools/find-completed-tasks.js';
15
+ import { findFilters } from './tools/find-filters.js';
14
16
  import { findLabels } from './tools/find-labels.js';
15
17
  import { findProjectCollaborators } from './tools/find-project-collaborators.js';
16
18
  import { findProjects } from './tools/find-projects.js';
@@ -24,6 +26,7 @@ import { rescheduleTasks } from './tools/reschedule-tasks.js';
24
26
  import { search } from './tools/search.js';
25
27
  import { uncompleteTasks } from './tools/uncomplete-tasks.js';
26
28
  import { updateComments } from './tools/update-comments.js';
29
+ import { updateFilters } from './tools/update-filters.js';
27
30
  import { updateProjects } from './tools/update-projects.js';
28
31
  import { updateSections } from './tools/update-sections.js';
29
32
  import { updateTasks } from './tools/update-tasks.js';
@@ -1597,6 +1600,260 @@ declare const tools: {
1597
1600
  };
1598
1601
  }>;
1599
1602
  };
1603
+ findFilters: {
1604
+ name: "find-filters";
1605
+ description: string;
1606
+ parameters: {
1607
+ search: import('zod').ZodOptional<import('zod').ZodString>;
1608
+ };
1609
+ outputSchema: {
1610
+ filters: import('zod').ZodArray<import('zod').ZodObject<{
1611
+ id: import('zod').ZodString;
1612
+ name: import('zod').ZodString;
1613
+ query: import('zod').ZodString;
1614
+ color: import('zod').ZodCatch<import('zod').ZodOptional<import('zod').ZodEnum<{
1615
+ berry_red: "berry_red";
1616
+ red: "red";
1617
+ orange: "orange";
1618
+ yellow: "yellow";
1619
+ olive_green: "olive_green";
1620
+ lime_green: "lime_green";
1621
+ green: "green";
1622
+ mint_green: "mint_green";
1623
+ teal: "teal";
1624
+ sky_blue: "sky_blue";
1625
+ light_blue: "light_blue";
1626
+ blue: "blue";
1627
+ grape: "grape";
1628
+ violet: "violet";
1629
+ lavender: "lavender";
1630
+ magenta: "magenta";
1631
+ salmon: "salmon";
1632
+ charcoal: "charcoal";
1633
+ grey: "grey";
1634
+ taupe: "taupe";
1635
+ }>>>;
1636
+ isFavorite: import('zod').ZodBoolean;
1637
+ itemOrder: import('zod').ZodNumber;
1638
+ }, import('zod/v4/core').$strip>>;
1639
+ totalCount: import('zod').ZodNumber;
1640
+ };
1641
+ annotations: {
1642
+ readOnlyHint: true;
1643
+ destructiveHint: false;
1644
+ idempotentHint: true;
1645
+ };
1646
+ execute(args: {
1647
+ search?: string | undefined;
1648
+ }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
1649
+ textContent: string;
1650
+ structuredContent: {
1651
+ filters: {
1652
+ id: string;
1653
+ name: string;
1654
+ query: string;
1655
+ 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;
1656
+ isFavorite: boolean;
1657
+ itemOrder: number;
1658
+ }[];
1659
+ totalCount: number;
1660
+ };
1661
+ }>;
1662
+ };
1663
+ addFilters: {
1664
+ name: "add-filters";
1665
+ description: string;
1666
+ parameters: {
1667
+ filters: import('zod').ZodArray<import('zod').ZodObject<{
1668
+ name: import('zod').ZodString;
1669
+ query: import('zod').ZodString;
1670
+ color: import('zod').ZodPipe<import('zod').ZodTransform<string | undefined, unknown>, import('zod').ZodOptional<import('zod').ZodEnum<{
1671
+ berry_red: "berry_red";
1672
+ red: "red";
1673
+ orange: "orange";
1674
+ yellow: "yellow";
1675
+ olive_green: "olive_green";
1676
+ lime_green: "lime_green";
1677
+ green: "green";
1678
+ mint_green: "mint_green";
1679
+ teal: "teal";
1680
+ sky_blue: "sky_blue";
1681
+ light_blue: "light_blue";
1682
+ blue: "blue";
1683
+ grape: "grape";
1684
+ violet: "violet";
1685
+ lavender: "lavender";
1686
+ magenta: "magenta";
1687
+ salmon: "salmon";
1688
+ charcoal: "charcoal";
1689
+ grey: "grey";
1690
+ taupe: "taupe";
1691
+ }>>>;
1692
+ isFavorite: import('zod').ZodOptional<import('zod').ZodBoolean>;
1693
+ }, import('zod/v4/core').$strip>>;
1694
+ };
1695
+ outputSchema: {
1696
+ filters: import('zod').ZodArray<import('zod').ZodObject<{
1697
+ id: import('zod').ZodString;
1698
+ name: import('zod').ZodString;
1699
+ query: import('zod').ZodString;
1700
+ color: import('zod').ZodCatch<import('zod').ZodOptional<import('zod').ZodEnum<{
1701
+ berry_red: "berry_red";
1702
+ red: "red";
1703
+ orange: "orange";
1704
+ yellow: "yellow";
1705
+ olive_green: "olive_green";
1706
+ lime_green: "lime_green";
1707
+ green: "green";
1708
+ mint_green: "mint_green";
1709
+ teal: "teal";
1710
+ sky_blue: "sky_blue";
1711
+ light_blue: "light_blue";
1712
+ blue: "blue";
1713
+ grape: "grape";
1714
+ violet: "violet";
1715
+ lavender: "lavender";
1716
+ magenta: "magenta";
1717
+ salmon: "salmon";
1718
+ charcoal: "charcoal";
1719
+ grey: "grey";
1720
+ taupe: "taupe";
1721
+ }>>>;
1722
+ isFavorite: import('zod').ZodBoolean;
1723
+ itemOrder: import('zod').ZodNumber;
1724
+ }, import('zod/v4/core').$strip>>;
1725
+ totalCount: import('zod').ZodNumber;
1726
+ };
1727
+ annotations: {
1728
+ readOnlyHint: false;
1729
+ destructiveHint: false;
1730
+ idempotentHint: false;
1731
+ };
1732
+ execute({ filters }: {
1733
+ filters: {
1734
+ name: string;
1735
+ query: string;
1736
+ 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;
1737
+ isFavorite?: boolean | undefined;
1738
+ }[];
1739
+ }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
1740
+ textContent: string;
1741
+ structuredContent: {
1742
+ filters: {
1743
+ id: string;
1744
+ name: string;
1745
+ query: string;
1746
+ 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;
1747
+ isFavorite: boolean;
1748
+ itemOrder: number;
1749
+ }[];
1750
+ totalCount: number;
1751
+ };
1752
+ }>;
1753
+ };
1754
+ updateFilters: {
1755
+ name: "update-filters";
1756
+ description: string;
1757
+ parameters: {
1758
+ filters: import('zod').ZodArray<import('zod').ZodObject<{
1759
+ id: import('zod').ZodString;
1760
+ name: import('zod').ZodOptional<import('zod').ZodString>;
1761
+ query: import('zod').ZodOptional<import('zod').ZodString>;
1762
+ color: import('zod').ZodPipe<import('zod').ZodTransform<string | undefined, unknown>, import('zod').ZodOptional<import('zod').ZodEnum<{
1763
+ berry_red: "berry_red";
1764
+ red: "red";
1765
+ orange: "orange";
1766
+ yellow: "yellow";
1767
+ olive_green: "olive_green";
1768
+ lime_green: "lime_green";
1769
+ green: "green";
1770
+ mint_green: "mint_green";
1771
+ teal: "teal";
1772
+ sky_blue: "sky_blue";
1773
+ light_blue: "light_blue";
1774
+ blue: "blue";
1775
+ grape: "grape";
1776
+ violet: "violet";
1777
+ lavender: "lavender";
1778
+ magenta: "magenta";
1779
+ salmon: "salmon";
1780
+ charcoal: "charcoal";
1781
+ grey: "grey";
1782
+ taupe: "taupe";
1783
+ }>>>;
1784
+ isFavorite: import('zod').ZodOptional<import('zod').ZodBoolean>;
1785
+ }, import('zod/v4/core').$strip>>;
1786
+ };
1787
+ outputSchema: {
1788
+ filters: import('zod').ZodArray<import('zod').ZodObject<{
1789
+ id: import('zod').ZodString;
1790
+ name: import('zod').ZodString;
1791
+ query: import('zod').ZodString;
1792
+ color: import('zod').ZodCatch<import('zod').ZodOptional<import('zod').ZodEnum<{
1793
+ berry_red: "berry_red";
1794
+ red: "red";
1795
+ orange: "orange";
1796
+ yellow: "yellow";
1797
+ olive_green: "olive_green";
1798
+ lime_green: "lime_green";
1799
+ green: "green";
1800
+ mint_green: "mint_green";
1801
+ teal: "teal";
1802
+ sky_blue: "sky_blue";
1803
+ light_blue: "light_blue";
1804
+ blue: "blue";
1805
+ grape: "grape";
1806
+ violet: "violet";
1807
+ lavender: "lavender";
1808
+ magenta: "magenta";
1809
+ salmon: "salmon";
1810
+ charcoal: "charcoal";
1811
+ grey: "grey";
1812
+ taupe: "taupe";
1813
+ }>>>;
1814
+ isFavorite: import('zod').ZodBoolean;
1815
+ itemOrder: import('zod').ZodNumber;
1816
+ }, import('zod/v4/core').$strip>>;
1817
+ totalCount: import('zod').ZodNumber;
1818
+ updatedFilterIds: import('zod').ZodArray<import('zod').ZodString>;
1819
+ appliedOperations: import('zod').ZodObject<{
1820
+ updateCount: import('zod').ZodNumber;
1821
+ skippedCount: import('zod').ZodNumber;
1822
+ }, import('zod/v4/core').$strip>;
1823
+ };
1824
+ annotations: {
1825
+ readOnlyHint: false;
1826
+ destructiveHint: true;
1827
+ idempotentHint: false;
1828
+ };
1829
+ execute(args: {
1830
+ filters: {
1831
+ id: string;
1832
+ name?: string | undefined;
1833
+ query?: string | undefined;
1834
+ 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;
1835
+ isFavorite?: boolean | undefined;
1836
+ }[];
1837
+ }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
1838
+ textContent: string;
1839
+ structuredContent: {
1840
+ filters: {
1841
+ id: string;
1842
+ name: string;
1843
+ query: string;
1844
+ 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;
1845
+ isFavorite: boolean;
1846
+ itemOrder: number;
1847
+ }[];
1848
+ totalCount: number;
1849
+ updatedFilterIds: string[];
1850
+ appliedOperations: {
1851
+ updateCount: number;
1852
+ skippedCount: number;
1853
+ };
1854
+ };
1855
+ }>;
1856
+ };
1600
1857
  findActivity: {
1601
1858
  name: "find-activity";
1602
1859
  description: string;
@@ -1770,6 +2027,7 @@ declare const tools: {
1770
2027
  description: string;
1771
2028
  parameters: {
1772
2029
  type: import('zod').ZodEnum<{
2030
+ filter: "filter";
1773
2031
  comment: "comment";
1774
2032
  task: "task";
1775
2033
  project: "project";
@@ -1781,6 +2039,7 @@ declare const tools: {
1781
2039
  outputSchema: {
1782
2040
  deletedEntity: import('zod').ZodObject<{
1783
2041
  type: import('zod').ZodEnum<{
2042
+ filter: "filter";
1784
2043
  comment: "comment";
1785
2044
  task: "task";
1786
2045
  project: "project";
@@ -1797,13 +2056,13 @@ declare const tools: {
1797
2056
  idempotentHint: true;
1798
2057
  };
1799
2058
  execute(args: {
1800
- type: "comment" | "task" | "project" | "section" | "label";
2059
+ type: "filter" | "comment" | "task" | "project" | "section" | "label";
1801
2060
  id: string;
1802
2061
  }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
1803
2062
  textContent: string;
1804
2063
  structuredContent: {
1805
2064
  deletedEntity: {
1806
- type: "comment" | "task" | "project" | "section" | "label";
2065
+ type: "filter" | "comment" | "task" | "project" | "section" | "label";
1807
2066
  id: string;
1808
2067
  };
1809
2068
  success: true;
@@ -1968,7 +2227,17 @@ declare const tools: {
1968
2227
  }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
1969
2228
  textContent: string;
1970
2229
  structuredContent: {
1971
- operation: "assign" | "unassign" | "reassign";
2230
+ operation: "unassign";
2231
+ results: import('./tools/manage-assignments.js').OperationResult[];
2232
+ totalRequested: number;
2233
+ successful: number;
2234
+ failed: number;
2235
+ dryRun: boolean;
2236
+ };
2237
+ } | {
2238
+ textContent: string;
2239
+ structuredContent: {
2240
+ operation: "assign" | "reassign";
1972
2241
  results: import('./tools/manage-assignments.js').OperationResult[];
1973
2242
  totalRequested: number;
1974
2243
  successful: number;
@@ -2078,5 +2347,5 @@ declare const tools: {
2078
2347
  };
2079
2348
  };
2080
2349
  export { tools, getMcpServer, FEATURE_NAMES, type Feature, type FeatureName, type Features };
2081
- export { addTasks, completeTasks, uncompleteTasks, updateTasks, findTasks, findTasksByDate, findCompletedTasks, rescheduleTasks, addProjects, updateProjects, findProjects, addSections, updateSections, findSections, addComments, updateComments, findComments, addLabels, findLabels, findActivity, getOverview, deleteObject, userInfo, findProjectCollaborators, manageAssignments, listWorkspaces, search, fetch, };
2350
+ export { addTasks, completeTasks, uncompleteTasks, updateTasks, findTasks, findTasksByDate, findCompletedTasks, rescheduleTasks, addProjects, updateProjects, findProjects, addSections, updateSections, findSections, addComments, updateComments, findComments, addLabels, findLabels, findFilters, addFilters, updateFilters, findActivity, getOverview, deleteObject, userInfo, findProjectCollaborators, manageAssignments, listWorkspaces, search, fetch, };
2082
2351
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4CV,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,eAAe,EACf,WAAW,EACX,SAAS,EACT,eAAe,EACf,kBAAkB,EAClB,eAAe,EAEf,WAAW,EACX,cAAc,EACd,YAAY,EAEZ,WAAW,EACX,cAAc,EACd,YAAY,EAEZ,WAAW,EACX,cAAc,EACd,YAAY,EAEZ,SAAS,EACT,UAAU,EAEV,WAAW,EACX,UAAU,EACV,aAAa,EAEb,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,35 +1,39 @@
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 m, i as f, j as p, k as l, n as k, o as T, p as u, q as j, r as C, t as b, v as g, w as v, x as A, y as S, z as h, A as P, B as x, C as y } from "./mcp-server-BrftnFt9.js";
2
- import { F as L, g as M } from "./mcp-server-BrftnFt9.js";
3
- const w = {
1
+ import { f as s, s as a, l as e, m as t, a as d, u as o, d as i, b as n, c as r, e as c, h as f, i as l, j as m, k as p, n as k, o as u, p as T, q as j, r as C, t as b, v as g, w as v, x as A, y as F, z as S, A as h, B as E, C as P, D as x, E as y, F as w } from "./mcp-server-Cp8MQfjN.js";
2
+ import { G as O, g as q } from "./mcp-server-Cp8MQfjN.js";
3
+ const D = {
4
4
  // Task management tools
5
- addTasks: y,
6
- completeTasks: x,
7
- uncompleteTasks: P,
8
- updateTasks: h,
9
- findTasks: S,
10
- findTasksByDate: A,
11
- findCompletedTasks: v,
12
- rescheduleTasks: g,
5
+ addTasks: w,
6
+ completeTasks: y,
7
+ uncompleteTasks: x,
8
+ updateTasks: P,
9
+ findTasks: E,
10
+ findTasksByDate: h,
11
+ findCompletedTasks: S,
12
+ rescheduleTasks: F,
13
13
  // Project management tools
14
- addProjects: b,
15
- updateProjects: C,
16
- findProjects: j,
14
+ addProjects: A,
15
+ updateProjects: v,
16
+ findProjects: g,
17
17
  // Section management tools
18
- addSections: u,
19
- updateSections: T,
20
- findSections: k,
18
+ addSections: b,
19
+ updateSections: C,
20
+ findSections: j,
21
21
  // Comment management tools
22
- addComments: l,
23
- updateComments: p,
24
- findComments: f,
22
+ addComments: T,
23
+ updateComments: u,
24
+ findComments: k,
25
25
  // Label management tools
26
- addLabels: m,
27
- findLabels: c,
26
+ addLabels: p,
27
+ findLabels: m,
28
+ // Filter management tools
29
+ findFilters: l,
30
+ addFilters: f,
31
+ updateFilters: c,
28
32
  // Activity and audit tools
29
33
  findActivity: r,
30
34
  // General tools
31
- getOverview: i,
32
- deleteObject: n,
35
+ getOverview: n,
36
+ deleteObject: i,
33
37
  userInfo: o,
34
38
  // Assignment and collaboration tools
35
39
  findProjectCollaborators: d,
@@ -41,35 +45,38 @@ const w = {
41
45
  fetch: s
42
46
  };
43
47
  export {
44
- L as FEATURE_NAMES,
45
- l as addComments,
46
- m as addLabels,
47
- b as addProjects,
48
- u as addSections,
49
- y as addTasks,
50
- x as completeTasks,
51
- n as deleteObject,
48
+ O as FEATURE_NAMES,
49
+ T as addComments,
50
+ f as addFilters,
51
+ p as addLabels,
52
+ A as addProjects,
53
+ b as addSections,
54
+ w as addTasks,
55
+ y as completeTasks,
56
+ i as deleteObject,
52
57
  s as fetch,
53
58
  r as findActivity,
54
- f as findComments,
55
- v as findCompletedTasks,
56
- c as findLabels,
59
+ k as findComments,
60
+ S as findCompletedTasks,
61
+ l as findFilters,
62
+ m as findLabels,
57
63
  d as findProjectCollaborators,
58
- j as findProjects,
59
- k as findSections,
60
- S as findTasks,
61
- A as findTasksByDate,
62
- M as getMcpServer,
63
- i as getOverview,
64
+ g as findProjects,
65
+ j as findSections,
66
+ E as findTasks,
67
+ h as findTasksByDate,
68
+ q as getMcpServer,
69
+ n as getOverview,
64
70
  e as listWorkspaces,
65
71
  t as manageAssignments,
66
- g as rescheduleTasks,
72
+ F as rescheduleTasks,
67
73
  a as search,
68
- w as tools,
69
- P as uncompleteTasks,
70
- p as updateComments,
71
- C as updateProjects,
72
- T as updateSections,
73
- h as updateTasks,
74
+ D as tools,
75
+ x as uncompleteTasks,
76
+ u as updateComments,
77
+ c as updateFilters,
78
+ v as updateProjects,
79
+ C as updateSections,
80
+ P as updateTasks,
74
81
  o as userInfo
75
82
  };
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-BrftnFt9.js";
5
+ import { g as p } from "./mcp-server-Cp8MQfjN.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-BrftnFt9.js";
4
+ import { g as i } from "./mcp-server-Cp8MQfjN.js";
5
5
  function p() {
6
6
  const e = process.env.TODOIST_BASE_URL, r = process.env.TODOIST_API_KEY;
7
7
  if (!r)