@doist/todoist-ai 7.12.0 → 7.13.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 +46 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +22 -20
- package/dist/main-http.js +1 -1
- package/dist/main.js +1 -1
- package/dist/{mcp-server-RtvDgXJL.js → mcp-server-DGzZmcM0.js} +1052 -954
- package/dist/mcp-server.d.ts.map +1 -1
- package/dist/tools/find-tasks.d.ts +3 -0
- package/dist/tools/find-tasks.d.ts.map +1 -1
- package/dist/tools/uncomplete-tasks.d.ts +42 -0
- package/dist/tools/uncomplete-tasks.d.ts.map +1 -0
- package/dist/tools/update-tasks.d.ts +2 -2
- package/dist/tools/update-tasks.d.ts.map +1 -1
- package/dist/utils/response-builders.d.ts +1 -0
- package/dist/utils/response-builders.d.ts.map +1 -1
- package/dist/utils/tool-names.d.ts +1 -0
- package/dist/utils/tool-names.d.ts.map +1 -1
- package/package.json +1 -1
- package/scripts/run-tool.ts +2 -0
package/dist/index.d.ts
CHANGED
|
@@ -21,6 +21,7 @@ import { getOverview } from './tools/get-overview.js';
|
|
|
21
21
|
import { listWorkspaces } from './tools/list-workspaces.js';
|
|
22
22
|
import { manageAssignments } from './tools/manage-assignments.js';
|
|
23
23
|
import { search } from './tools/search.js';
|
|
24
|
+
import { uncompleteTasks } from './tools/uncomplete-tasks.js';
|
|
24
25
|
import { updateComments } from './tools/update-comments.js';
|
|
25
26
|
import { updateProjects } from './tools/update-projects.js';
|
|
26
27
|
import { updateSections } from './tools/update-sections.js';
|
|
@@ -164,6 +165,45 @@ declare const tools: {
|
|
|
164
165
|
};
|
|
165
166
|
}>;
|
|
166
167
|
};
|
|
168
|
+
uncompleteTasks: {
|
|
169
|
+
name: "uncomplete-tasks";
|
|
170
|
+
description: string;
|
|
171
|
+
parameters: {
|
|
172
|
+
ids: import('zod').ZodArray<import('zod').ZodString>;
|
|
173
|
+
};
|
|
174
|
+
outputSchema: {
|
|
175
|
+
uncompleted: import('zod').ZodArray<import('zod').ZodString>;
|
|
176
|
+
failures: import('zod').ZodArray<import('zod').ZodObject<{
|
|
177
|
+
item: import('zod').ZodString;
|
|
178
|
+
error: import('zod').ZodString;
|
|
179
|
+
code: import('zod').ZodOptional<import('zod').ZodString>;
|
|
180
|
+
}, import('zod/v4/core').$strip>>;
|
|
181
|
+
totalRequested: import('zod').ZodNumber;
|
|
182
|
+
successCount: import('zod').ZodNumber;
|
|
183
|
+
failureCount: import('zod').ZodNumber;
|
|
184
|
+
};
|
|
185
|
+
annotations: {
|
|
186
|
+
readOnlyHint: false;
|
|
187
|
+
destructiveHint: false;
|
|
188
|
+
idempotentHint: false;
|
|
189
|
+
};
|
|
190
|
+
execute(args: {
|
|
191
|
+
ids: string[];
|
|
192
|
+
}, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
|
|
193
|
+
textContent: string;
|
|
194
|
+
structuredContent: {
|
|
195
|
+
uncompleted: string[];
|
|
196
|
+
failures: {
|
|
197
|
+
item: string;
|
|
198
|
+
error: string;
|
|
199
|
+
code?: string;
|
|
200
|
+
}[];
|
|
201
|
+
totalRequested: number;
|
|
202
|
+
successCount: number;
|
|
203
|
+
failureCount: number;
|
|
204
|
+
};
|
|
205
|
+
}>;
|
|
206
|
+
};
|
|
167
207
|
updateTasks: {
|
|
168
208
|
name: "update-tasks";
|
|
169
209
|
description: string;
|
|
@@ -182,8 +222,8 @@ declare const tools: {
|
|
|
182
222
|
p3: "p3";
|
|
183
223
|
p4: "p4";
|
|
184
224
|
}>>;
|
|
185
|
-
dueString: import('zod').ZodOptional<import('zod').ZodString
|
|
186
|
-
deadlineDate: import('zod').ZodOptional<import('zod').ZodString
|
|
225
|
+
dueString: import('zod').ZodPipe<import('zod').ZodTransform<{} | undefined, unknown>, import('zod').ZodOptional<import('zod').ZodString>>;
|
|
226
|
+
deadlineDate: import('zod').ZodPipe<import('zod').ZodTransform<{} | undefined, unknown>, import('zod').ZodOptional<import('zod').ZodString>>;
|
|
187
227
|
duration: import('zod').ZodOptional<import('zod').ZodString>;
|
|
188
228
|
responsibleUser: import('zod').ZodOptional<import('zod').ZodString>;
|
|
189
229
|
labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString>>;
|
|
@@ -295,6 +335,7 @@ declare const tools: {
|
|
|
295
335
|
}>>;
|
|
296
336
|
limit: import('zod').ZodDefault<import('zod').ZodNumber>;
|
|
297
337
|
cursor: import('zod').ZodOptional<import('zod').ZodString>;
|
|
338
|
+
filter: import('zod').ZodOptional<import('zod').ZodString>;
|
|
298
339
|
};
|
|
299
340
|
outputSchema: {
|
|
300
341
|
tasks: import('zod').ZodArray<import('zod').ZodObject<{
|
|
@@ -342,6 +383,7 @@ declare const tools: {
|
|
|
342
383
|
responsibleUser?: string | undefined;
|
|
343
384
|
responsibleUserFiltering?: "assigned" | "unassignedOrMe" | "all" | undefined;
|
|
344
385
|
cursor?: string | undefined;
|
|
386
|
+
filter?: string | undefined;
|
|
345
387
|
}, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
|
|
346
388
|
textContent: string;
|
|
347
389
|
structuredContent: {
|
|
@@ -377,6 +419,7 @@ declare const tools: {
|
|
|
377
419
|
responsibleUser?: string | undefined;
|
|
378
420
|
responsibleUserFiltering?: "assigned" | "unassignedOrMe" | "all" | undefined;
|
|
379
421
|
cursor?: string | undefined;
|
|
422
|
+
filter?: string | undefined;
|
|
380
423
|
};
|
|
381
424
|
};
|
|
382
425
|
}>;
|
|
@@ -1890,5 +1933,5 @@ declare const tools: {
|
|
|
1890
1933
|
};
|
|
1891
1934
|
};
|
|
1892
1935
|
export { tools, getMcpServer, FEATURE_NAMES, type Feature, type FeatureName, type Features };
|
|
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, };
|
|
1936
|
+
export { addTasks, completeTasks, uncompleteTasks, updateTasks, findTasks, findTasksByDate, findCompletedTasks, addProjects, updateProjects, findProjects, addSections, updateSections, findSections, addComments, updateComments, findComments, addLabels, findLabels, findActivity, getOverview, deleteObject, userInfo, findProjectCollaborators, manageAssignments, listWorkspaces, search, fetch, };
|
|
1894
1937
|
//# sourceMappingURL=index.d.ts.map
|
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,SAAS,EAAE,MAAM,uBAAuB,CAAA;AAEjD,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;AACpE,OAAO,EAAE,UAAU,EAAE,MAAM,wBAAwB,CAAA;AAEnD,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":"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"}
|
package/dist/index.js
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import { f as s, s as a, l as e, m as t, a as
|
|
2
|
-
import { F, g as L } from "./mcp-server-
|
|
3
|
-
const
|
|
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 as l, n as k, o as T, p as u, q as j, r as b, t as g, v, w as A, x as C, y as S, z as P, A as h, B as x } from "./mcp-server-DGzZmcM0.js";
|
|
2
|
+
import { F, g as L } from "./mcp-server-DGzZmcM0.js";
|
|
3
|
+
const E = {
|
|
4
4
|
// Task management tools
|
|
5
|
-
addTasks:
|
|
6
|
-
completeTasks:
|
|
5
|
+
addTasks: x,
|
|
6
|
+
completeTasks: h,
|
|
7
|
+
uncompleteTasks: P,
|
|
7
8
|
updateTasks: S,
|
|
8
9
|
findTasks: C,
|
|
9
10
|
findTasksByDate: A,
|
|
@@ -11,26 +12,26 @@ const y = {
|
|
|
11
12
|
// Project management tools
|
|
12
13
|
addProjects: g,
|
|
13
14
|
updateProjects: b,
|
|
14
|
-
findProjects:
|
|
15
|
+
findProjects: j,
|
|
15
16
|
// Section management tools
|
|
16
|
-
addSections:
|
|
17
|
+
addSections: u,
|
|
17
18
|
updateSections: T,
|
|
18
19
|
findSections: k,
|
|
19
20
|
// Comment management tools
|
|
20
21
|
addComments: l,
|
|
21
22
|
updateComments: p,
|
|
22
|
-
findComments:
|
|
23
|
+
findComments: f,
|
|
23
24
|
// Label management tools
|
|
24
|
-
addLabels:
|
|
25
|
+
addLabels: m,
|
|
25
26
|
findLabels: c,
|
|
26
27
|
// Activity and audit tools
|
|
27
28
|
findActivity: r,
|
|
28
29
|
// General tools
|
|
29
30
|
getOverview: i,
|
|
30
31
|
deleteObject: n,
|
|
31
|
-
userInfo:
|
|
32
|
+
userInfo: d,
|
|
32
33
|
// Assignment and collaboration tools
|
|
33
|
-
findProjectCollaborators:
|
|
34
|
+
findProjectCollaborators: o,
|
|
34
35
|
manageAssignments: t,
|
|
35
36
|
// Workspace tools
|
|
36
37
|
listWorkspaces: e,
|
|
@@ -41,19 +42,19 @@ const y = {
|
|
|
41
42
|
export {
|
|
42
43
|
F as FEATURE_NAMES,
|
|
43
44
|
l as addComments,
|
|
44
|
-
|
|
45
|
+
m as addLabels,
|
|
45
46
|
g as addProjects,
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
47
|
+
u as addSections,
|
|
48
|
+
x as addTasks,
|
|
49
|
+
h as completeTasks,
|
|
49
50
|
n as deleteObject,
|
|
50
51
|
s as fetch,
|
|
51
52
|
r as findActivity,
|
|
52
|
-
|
|
53
|
+
f as findComments,
|
|
53
54
|
v as findCompletedTasks,
|
|
54
55
|
c as findLabels,
|
|
55
|
-
|
|
56
|
-
|
|
56
|
+
o as findProjectCollaborators,
|
|
57
|
+
j as findProjects,
|
|
57
58
|
k as findSections,
|
|
58
59
|
C as findTasks,
|
|
59
60
|
A as findTasksByDate,
|
|
@@ -62,10 +63,11 @@ export {
|
|
|
62
63
|
e as listWorkspaces,
|
|
63
64
|
t as manageAssignments,
|
|
64
65
|
a as search,
|
|
65
|
-
|
|
66
|
+
E as tools,
|
|
67
|
+
P as uncompleteTasks,
|
|
66
68
|
p as updateComments,
|
|
67
69
|
b as updateProjects,
|
|
68
70
|
T as updateSections,
|
|
69
71
|
S as updateTasks,
|
|
70
|
-
|
|
72
|
+
d as userInfo
|
|
71
73
|
};
|
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-DGzZmcM0.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-DGzZmcM0.js";
|
|
5
5
|
function p() {
|
|
6
6
|
const e = process.env.TODOIST_BASE_URL, r = process.env.TODOIST_API_KEY;
|
|
7
7
|
if (!r)
|