@doist/todoist-ai 8.0.2 → 8.2.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';
@@ -20,10 +22,12 @@ import { findTasksByDate } from './tools/find-tasks-by-date.js';
20
22
  import { getOverview } from './tools/get-overview.js';
21
23
  import { listWorkspaces } from './tools/list-workspaces.js';
22
24
  import { manageAssignments } from './tools/manage-assignments.js';
25
+ import { reorderObjects } from './tools/reorder-objects.js';
23
26
  import { rescheduleTasks } from './tools/reschedule-tasks.js';
24
27
  import { search } from './tools/search.js';
25
28
  import { uncompleteTasks } from './tools/uncomplete-tasks.js';
26
29
  import { updateComments } from './tools/update-comments.js';
30
+ import { updateFilters } from './tools/update-filters.js';
27
31
  import { updateProjects } from './tools/update-projects.js';
28
32
  import { updateSections } from './tools/update-sections.js';
29
33
  import { updateTasks } from './tools/update-tasks.js';
@@ -1597,6 +1601,260 @@ declare const tools: {
1597
1601
  };
1598
1602
  }>;
1599
1603
  };
1604
+ findFilters: {
1605
+ name: "find-filters";
1606
+ description: string;
1607
+ parameters: {
1608
+ search: import('zod').ZodOptional<import('zod').ZodString>;
1609
+ };
1610
+ outputSchema: {
1611
+ filters: import('zod').ZodArray<import('zod').ZodObject<{
1612
+ id: import('zod').ZodString;
1613
+ name: import('zod').ZodString;
1614
+ query: import('zod').ZodString;
1615
+ color: import('zod').ZodCatch<import('zod').ZodOptional<import('zod').ZodEnum<{
1616
+ berry_red: "berry_red";
1617
+ red: "red";
1618
+ orange: "orange";
1619
+ yellow: "yellow";
1620
+ olive_green: "olive_green";
1621
+ lime_green: "lime_green";
1622
+ green: "green";
1623
+ mint_green: "mint_green";
1624
+ teal: "teal";
1625
+ sky_blue: "sky_blue";
1626
+ light_blue: "light_blue";
1627
+ blue: "blue";
1628
+ grape: "grape";
1629
+ violet: "violet";
1630
+ lavender: "lavender";
1631
+ magenta: "magenta";
1632
+ salmon: "salmon";
1633
+ charcoal: "charcoal";
1634
+ grey: "grey";
1635
+ taupe: "taupe";
1636
+ }>>>;
1637
+ isFavorite: import('zod').ZodBoolean;
1638
+ itemOrder: import('zod').ZodNumber;
1639
+ }, import('zod/v4/core').$strip>>;
1640
+ totalCount: import('zod').ZodNumber;
1641
+ };
1642
+ annotations: {
1643
+ readOnlyHint: true;
1644
+ destructiveHint: false;
1645
+ idempotentHint: true;
1646
+ };
1647
+ execute(args: {
1648
+ search?: string | undefined;
1649
+ }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
1650
+ textContent: string;
1651
+ structuredContent: {
1652
+ filters: {
1653
+ id: string;
1654
+ name: string;
1655
+ query: string;
1656
+ 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;
1657
+ isFavorite: boolean;
1658
+ itemOrder: number;
1659
+ }[];
1660
+ totalCount: number;
1661
+ };
1662
+ }>;
1663
+ };
1664
+ addFilters: {
1665
+ name: "add-filters";
1666
+ description: string;
1667
+ parameters: {
1668
+ filters: import('zod').ZodArray<import('zod').ZodObject<{
1669
+ name: import('zod').ZodString;
1670
+ query: import('zod').ZodString;
1671
+ color: import('zod').ZodPipe<import('zod').ZodTransform<string | undefined, unknown>, import('zod').ZodOptional<import('zod').ZodEnum<{
1672
+ berry_red: "berry_red";
1673
+ red: "red";
1674
+ orange: "orange";
1675
+ yellow: "yellow";
1676
+ olive_green: "olive_green";
1677
+ lime_green: "lime_green";
1678
+ green: "green";
1679
+ mint_green: "mint_green";
1680
+ teal: "teal";
1681
+ sky_blue: "sky_blue";
1682
+ light_blue: "light_blue";
1683
+ blue: "blue";
1684
+ grape: "grape";
1685
+ violet: "violet";
1686
+ lavender: "lavender";
1687
+ magenta: "magenta";
1688
+ salmon: "salmon";
1689
+ charcoal: "charcoal";
1690
+ grey: "grey";
1691
+ taupe: "taupe";
1692
+ }>>>;
1693
+ isFavorite: import('zod').ZodOptional<import('zod').ZodBoolean>;
1694
+ }, import('zod/v4/core').$strip>>;
1695
+ };
1696
+ outputSchema: {
1697
+ filters: import('zod').ZodArray<import('zod').ZodObject<{
1698
+ id: import('zod').ZodString;
1699
+ name: import('zod').ZodString;
1700
+ query: import('zod').ZodString;
1701
+ color: import('zod').ZodCatch<import('zod').ZodOptional<import('zod').ZodEnum<{
1702
+ berry_red: "berry_red";
1703
+ red: "red";
1704
+ orange: "orange";
1705
+ yellow: "yellow";
1706
+ olive_green: "olive_green";
1707
+ lime_green: "lime_green";
1708
+ green: "green";
1709
+ mint_green: "mint_green";
1710
+ teal: "teal";
1711
+ sky_blue: "sky_blue";
1712
+ light_blue: "light_blue";
1713
+ blue: "blue";
1714
+ grape: "grape";
1715
+ violet: "violet";
1716
+ lavender: "lavender";
1717
+ magenta: "magenta";
1718
+ salmon: "salmon";
1719
+ charcoal: "charcoal";
1720
+ grey: "grey";
1721
+ taupe: "taupe";
1722
+ }>>>;
1723
+ isFavorite: import('zod').ZodBoolean;
1724
+ itemOrder: import('zod').ZodNumber;
1725
+ }, import('zod/v4/core').$strip>>;
1726
+ totalCount: import('zod').ZodNumber;
1727
+ };
1728
+ annotations: {
1729
+ readOnlyHint: false;
1730
+ destructiveHint: false;
1731
+ idempotentHint: false;
1732
+ };
1733
+ execute({ filters }: {
1734
+ filters: {
1735
+ name: string;
1736
+ query: string;
1737
+ 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;
1738
+ isFavorite?: boolean | undefined;
1739
+ }[];
1740
+ }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
1741
+ textContent: string;
1742
+ structuredContent: {
1743
+ filters: {
1744
+ id: string;
1745
+ name: string;
1746
+ query: string;
1747
+ 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;
1748
+ isFavorite: boolean;
1749
+ itemOrder: number;
1750
+ }[];
1751
+ totalCount: number;
1752
+ };
1753
+ }>;
1754
+ };
1755
+ updateFilters: {
1756
+ name: "update-filters";
1757
+ description: string;
1758
+ parameters: {
1759
+ filters: import('zod').ZodArray<import('zod').ZodObject<{
1760
+ id: import('zod').ZodString;
1761
+ name: import('zod').ZodOptional<import('zod').ZodString>;
1762
+ query: import('zod').ZodOptional<import('zod').ZodString>;
1763
+ color: import('zod').ZodPipe<import('zod').ZodTransform<string | undefined, unknown>, import('zod').ZodOptional<import('zod').ZodEnum<{
1764
+ berry_red: "berry_red";
1765
+ red: "red";
1766
+ orange: "orange";
1767
+ yellow: "yellow";
1768
+ olive_green: "olive_green";
1769
+ lime_green: "lime_green";
1770
+ green: "green";
1771
+ mint_green: "mint_green";
1772
+ teal: "teal";
1773
+ sky_blue: "sky_blue";
1774
+ light_blue: "light_blue";
1775
+ blue: "blue";
1776
+ grape: "grape";
1777
+ violet: "violet";
1778
+ lavender: "lavender";
1779
+ magenta: "magenta";
1780
+ salmon: "salmon";
1781
+ charcoal: "charcoal";
1782
+ grey: "grey";
1783
+ taupe: "taupe";
1784
+ }>>>;
1785
+ isFavorite: import('zod').ZodOptional<import('zod').ZodBoolean>;
1786
+ }, import('zod/v4/core').$strip>>;
1787
+ };
1788
+ outputSchema: {
1789
+ filters: import('zod').ZodArray<import('zod').ZodObject<{
1790
+ id: import('zod').ZodString;
1791
+ name: import('zod').ZodString;
1792
+ query: import('zod').ZodString;
1793
+ color: import('zod').ZodCatch<import('zod').ZodOptional<import('zod').ZodEnum<{
1794
+ berry_red: "berry_red";
1795
+ red: "red";
1796
+ orange: "orange";
1797
+ yellow: "yellow";
1798
+ olive_green: "olive_green";
1799
+ lime_green: "lime_green";
1800
+ green: "green";
1801
+ mint_green: "mint_green";
1802
+ teal: "teal";
1803
+ sky_blue: "sky_blue";
1804
+ light_blue: "light_blue";
1805
+ blue: "blue";
1806
+ grape: "grape";
1807
+ violet: "violet";
1808
+ lavender: "lavender";
1809
+ magenta: "magenta";
1810
+ salmon: "salmon";
1811
+ charcoal: "charcoal";
1812
+ grey: "grey";
1813
+ taupe: "taupe";
1814
+ }>>>;
1815
+ isFavorite: import('zod').ZodBoolean;
1816
+ itemOrder: import('zod').ZodNumber;
1817
+ }, import('zod/v4/core').$strip>>;
1818
+ totalCount: import('zod').ZodNumber;
1819
+ updatedFilterIds: import('zod').ZodArray<import('zod').ZodString>;
1820
+ appliedOperations: import('zod').ZodObject<{
1821
+ updateCount: import('zod').ZodNumber;
1822
+ skippedCount: import('zod').ZodNumber;
1823
+ }, import('zod/v4/core').$strip>;
1824
+ };
1825
+ annotations: {
1826
+ readOnlyHint: false;
1827
+ destructiveHint: true;
1828
+ idempotentHint: false;
1829
+ };
1830
+ execute(args: {
1831
+ filters: {
1832
+ id: string;
1833
+ name?: string | undefined;
1834
+ query?: string | undefined;
1835
+ 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;
1836
+ isFavorite?: boolean | undefined;
1837
+ }[];
1838
+ }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
1839
+ textContent: string;
1840
+ structuredContent: {
1841
+ filters: {
1842
+ id: string;
1843
+ name: string;
1844
+ query: string;
1845
+ 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;
1846
+ isFavorite: boolean;
1847
+ itemOrder: number;
1848
+ }[];
1849
+ totalCount: number;
1850
+ updatedFilterIds: string[];
1851
+ appliedOperations: {
1852
+ updateCount: number;
1853
+ skippedCount: number;
1854
+ };
1855
+ };
1856
+ }>;
1857
+ };
1600
1858
  findActivity: {
1601
1859
  name: "find-activity";
1602
1860
  description: string;
@@ -1770,6 +2028,7 @@ declare const tools: {
1770
2028
  description: string;
1771
2029
  parameters: {
1772
2030
  type: import('zod').ZodEnum<{
2031
+ filter: "filter";
1773
2032
  comment: "comment";
1774
2033
  task: "task";
1775
2034
  project: "project";
@@ -1781,6 +2040,7 @@ declare const tools: {
1781
2040
  outputSchema: {
1782
2041
  deletedEntity: import('zod').ZodObject<{
1783
2042
  type: import('zod').ZodEnum<{
2043
+ filter: "filter";
1784
2044
  comment: "comment";
1785
2045
  task: "task";
1786
2046
  project: "project";
@@ -1797,19 +2057,66 @@ declare const tools: {
1797
2057
  idempotentHint: true;
1798
2058
  };
1799
2059
  execute(args: {
1800
- type: "comment" | "task" | "project" | "section" | "label";
2060
+ type: "filter" | "comment" | "task" | "project" | "section" | "label";
1801
2061
  id: string;
1802
2062
  }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
1803
2063
  textContent: string;
1804
2064
  structuredContent: {
1805
2065
  deletedEntity: {
1806
- type: "comment" | "task" | "project" | "section" | "label";
2066
+ type: "filter" | "comment" | "task" | "project" | "section" | "label";
1807
2067
  id: string;
1808
2068
  };
1809
2069
  success: true;
1810
2070
  };
1811
2071
  }>;
1812
2072
  };
2073
+ reorderObjects: {
2074
+ name: "reorder-objects";
2075
+ description: string;
2076
+ parameters: {
2077
+ type: import('zod').ZodEnum<{
2078
+ project: "project";
2079
+ section: "section";
2080
+ }>;
2081
+ items: import('zod').ZodArray<import('zod').ZodObject<{
2082
+ id: import('zod').ZodString;
2083
+ order: import('zod').ZodOptional<import('zod').ZodNumber>;
2084
+ parentId: import('zod').ZodOptional<import('zod').ZodString>;
2085
+ }, import('zod/v4/core').$strip>>;
2086
+ };
2087
+ outputSchema: {
2088
+ type: import('zod').ZodEnum<{
2089
+ project: "project";
2090
+ section: "section";
2091
+ }>;
2092
+ movedCount: import('zod').ZodNumber;
2093
+ reorderedCount: import('zod').ZodNumber;
2094
+ affectedIds: import('zod').ZodArray<import('zod').ZodString>;
2095
+ success: import('zod').ZodBoolean;
2096
+ };
2097
+ annotations: {
2098
+ readOnlyHint: false;
2099
+ destructiveHint: false;
2100
+ idempotentHint: true;
2101
+ };
2102
+ execute(args: {
2103
+ type: "project" | "section";
2104
+ items: {
2105
+ id: string;
2106
+ order?: number | undefined;
2107
+ parentId?: string | undefined;
2108
+ }[];
2109
+ }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
2110
+ textContent: string;
2111
+ structuredContent: {
2112
+ type: "project" | "section";
2113
+ movedCount: number;
2114
+ reorderedCount: number;
2115
+ affectedIds: string[];
2116
+ success: true;
2117
+ };
2118
+ }>;
2119
+ };
1813
2120
  userInfo: {
1814
2121
  name: "user-info";
1815
2122
  description: string;
@@ -2088,5 +2395,5 @@ declare const tools: {
2088
2395
  };
2089
2396
  };
2090
2397
  export { tools, getMcpServer, FEATURE_NAMES, type Feature, type FeatureName, type Features };
2091
- 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, };
2398
+ 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, reorderObjects, userInfo, findProjectCollaborators, manageAssignments, listWorkspaces, search, fetch, };
2092
2399
  //# 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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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6CV,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,cAAc,EACd,QAAQ,EAER,wBAAwB,EACxB,iBAAiB,EAEjB,cAAc,EAEd,MAAM,EACN,KAAK,GACR,CAAA"}
package/dist/index.js CHANGED
@@ -1,35 +1,40 @@
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-joQwu-al.js";
2
- import { F as L, g as M } from "./mcp-server-joQwu-al.js";
3
- const w = {
1
+ import { f as s, s as a, l as e, m as t, a as d, u as o, r, d as i, b as n, c, e as f, h as l, i as m, j as p, k, n as u, o as T, p as j, q as b, t as C, 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 O, G as w } from "./mcp-server-CedV8jUV.js";
2
+ import { H as q, g as z } from "./mcp-server-CedV8jUV.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: O,
7
+ uncompleteTasks: y,
8
+ updateTasks: x,
9
+ findTasks: P,
10
+ findTasksByDate: E,
11
+ findCompletedTasks: h,
12
+ rescheduleTasks: S,
13
13
  // Project management tools
14
- addProjects: b,
15
- updateProjects: C,
16
- findProjects: j,
14
+ addProjects: F,
15
+ updateProjects: A,
16
+ findProjects: v,
17
17
  // Section management tools
18
- addSections: u,
19
- updateSections: T,
20
- findSections: k,
18
+ addSections: g,
19
+ updateSections: C,
20
+ findSections: b,
21
21
  // Comment management tools
22
- addComments: l,
23
- updateComments: p,
24
- findComments: f,
22
+ addComments: j,
23
+ updateComments: T,
24
+ findComments: u,
25
25
  // Label management tools
26
- addLabels: m,
27
- findLabels: c,
26
+ addLabels: k,
27
+ findLabels: p,
28
+ // Filter management tools
29
+ findFilters: m,
30
+ addFilters: l,
31
+ updateFilters: f,
28
32
  // Activity and audit tools
29
- findActivity: r,
33
+ findActivity: c,
30
34
  // General tools
31
- getOverview: i,
32
- deleteObject: n,
35
+ getOverview: n,
36
+ deleteObject: i,
37
+ reorderObjects: r,
33
38
  userInfo: o,
34
39
  // Assignment and collaboration tools
35
40
  findProjectCollaborators: d,
@@ -41,35 +46,39 @@ const w = {
41
46
  fetch: s
42
47
  };
43
48
  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,
49
+ q as FEATURE_NAMES,
50
+ j as addComments,
51
+ l as addFilters,
52
+ k as addLabels,
53
+ F as addProjects,
54
+ g as addSections,
55
+ w as addTasks,
56
+ O as completeTasks,
57
+ i as deleteObject,
52
58
  s as fetch,
53
- r as findActivity,
54
- f as findComments,
55
- v as findCompletedTasks,
56
- c as findLabels,
59
+ c as findActivity,
60
+ u as findComments,
61
+ h as findCompletedTasks,
62
+ m as findFilters,
63
+ p as findLabels,
57
64
  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,
65
+ v as findProjects,
66
+ b as findSections,
67
+ P as findTasks,
68
+ E as findTasksByDate,
69
+ z as getMcpServer,
70
+ n as getOverview,
64
71
  e as listWorkspaces,
65
72
  t as manageAssignments,
66
- g as rescheduleTasks,
73
+ r as reorderObjects,
74
+ S as rescheduleTasks,
67
75
  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,
76
+ D as tools,
77
+ y as uncompleteTasks,
78
+ T as updateComments,
79
+ f as updateFilters,
80
+ A as updateProjects,
81
+ C as updateSections,
82
+ x as updateTasks,
74
83
  o as userInfo
75
84
  };
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-joQwu-al.js";
5
+ import { g as p } from "./mcp-server-CedV8jUV.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-joQwu-al.js";
4
+ import { g as i } from "./mcp-server-CedV8jUV.js";
5
5
  function p() {
6
6
  const e = process.env.TODOIST_BASE_URL, r = process.env.TODOIST_API_KEY;
7
7
  if (!r)