@doist/todoist-ai 1.1.0 → 2.0.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/README.md +1 -22
- package/dist/index.d.ts +53 -198
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +19 -45
- package/dist/mcp-helpers.d.ts +8 -1
- package/dist/mcp-helpers.d.ts.map +1 -1
- package/dist/mcp-helpers.js +1 -0
- package/dist/mcp-server.d.ts.map +1 -1
- package/dist/mcp-server.js +10 -28
- package/dist/{tools/shared.d.ts → tool-helpers.d.ts} +1 -1
- package/dist/tool-helpers.d.ts.map +1 -0
- package/dist/tool-helpers.test.d.ts +2 -0
- package/dist/tool-helpers.test.d.ts.map +1 -0
- package/dist/{tools/shared.test.js → tool-helpers.test.js} +9 -9
- package/dist/tools/{tasks-delete-one.d.ts → delete-one.d.ts} +5 -3
- package/dist/tools/delete-one.d.ts.map +1 -0
- package/dist/tools/delete-one.js +28 -0
- package/dist/tools/{project-overview.d.ts → overview.d.ts} +5 -5
- package/dist/tools/overview.d.ts.map +1 -0
- package/dist/tools/overview.js +205 -0
- package/dist/tools/projects-list.d.ts +12 -1
- package/dist/tools/projects-list.d.ts.map +1 -1
- package/dist/tools/projects-list.js +11 -2
- package/dist/tools/{projects-add-one.d.ts → projects-manage.d.ts} +6 -4
- package/dist/tools/projects-manage.d.ts.map +1 -0
- package/dist/tools/projects-manage.js +29 -0
- package/dist/tools/sections-manage.d.ts +23 -0
- package/dist/tools/sections-manage.d.ts.map +1 -0
- package/dist/tools/sections-manage.js +40 -0
- package/dist/tools/tasks-add-multiple.js +2 -2
- package/dist/tools/tasks-list-by-date.d.ts.map +1 -1
- package/dist/tools/tasks-list-by-date.js +18 -12
- package/dist/tools/tasks-list-completed.js +2 -2
- package/dist/tools/{tasks-list-for-project.d.ts → tasks-list-for-container.d.ts} +7 -5
- package/dist/tools/tasks-list-for-container.d.ts.map +1 -0
- package/dist/tools/tasks-list-for-container.js +51 -0
- package/dist/tools/tasks-search.js +2 -2
- package/package.json +15 -4
- package/dist/tools/account-overview.d.ts +0 -9
- package/dist/tools/account-overview.d.ts.map +0 -1
- package/dist/tools/account-overview.js +0 -98
- package/dist/tools/project-overview.d.ts.map +0 -1
- package/dist/tools/project-overview.js +0 -107
- package/dist/tools/projects-add-one.d.ts.map +0 -1
- package/dist/tools/projects-add-one.js +0 -18
- package/dist/tools/projects-delete-one.d.ts +0 -15
- package/dist/tools/projects-delete-one.d.ts.map +0 -1
- package/dist/tools/projects-delete-one.js +0 -17
- package/dist/tools/projects-search.d.ts +0 -29
- package/dist/tools/projects-search.d.ts.map +0 -1
- package/dist/tools/projects-search.js +0 -42
- package/dist/tools/projects-update-one.d.ts +0 -15
- package/dist/tools/projects-update-one.d.ts.map +0 -1
- package/dist/tools/projects-update-one.js +0 -19
- package/dist/tools/sections-add-one.d.ts +0 -15
- package/dist/tools/sections-add-one.d.ts.map +0 -1
- package/dist/tools/sections-add-one.js +0 -21
- package/dist/tools/sections-delete-one.d.ts +0 -15
- package/dist/tools/sections-delete-one.d.ts.map +0 -1
- package/dist/tools/sections-delete-one.js +0 -17
- package/dist/tools/sections-update-one.d.ts +0 -15
- package/dist/tools/sections-update-one.d.ts.map +0 -1
- package/dist/tools/sections-update-one.js +0 -19
- package/dist/tools/shared.d.ts.map +0 -1
- package/dist/tools/shared.test.d.ts +0 -2
- package/dist/tools/shared.test.d.ts.map +0 -1
- package/dist/tools/subtasks-list-for-parent-task.d.ts +0 -31
- package/dist/tools/subtasks-list-for-parent-task.d.ts.map +0 -1
- package/dist/tools/subtasks-list-for-parent-task.js +0 -37
- package/dist/tools/tasks-delete-one.d.ts.map +0 -1
- package/dist/tools/tasks-delete-one.js +0 -17
- package/dist/tools/tasks-list-for-project.d.ts.map +0 -1
- package/dist/tools/tasks-list-for-project.js +0 -37
- package/dist/tools/tasks-list-for-section.d.ts +0 -31
- package/dist/tools/tasks-list-for-section.d.ts.map +0 -1
- package/dist/tools/tasks-list-for-section.js +0 -37
- package/dist/tools/tasks-list-overdue.d.ts +0 -29
- package/dist/tools/tasks-list-overdue.d.ts.map +0 -1
- package/dist/tools/tasks-list-overdue.js +0 -32
- /package/dist/{tools/shared.js → tool-helpers.js} +0 -0
package/README.md
CHANGED
|
@@ -56,28 +56,7 @@ Nevertheless, our goal is to provide a small set of tools that enable complete w
|
|
|
56
56
|
|
|
57
57
|
### Available Tools
|
|
58
58
|
|
|
59
|
-
|
|
60
|
-
- **project-overview**: Get a Markdown overview of a single project, including its sections and all tasks. Tasks are grouped by section, with tasks not in any section listed first.
|
|
61
|
-
- **projects-list**: List all projects for the user.
|
|
62
|
-
- **projects-search**: Search for projects by name or other criteria.
|
|
63
|
-
- **projects-add-one**: Add a new project.
|
|
64
|
-
- **projects-update-one**: Update a project's name by its ID.
|
|
65
|
-
- **projects-delete-one**: Delete a project by its ID.
|
|
66
|
-
- **sections-search**: Search for sections by name or other criteria in a project.
|
|
67
|
-
- **sections-add-one**: Add a new section to a project.
|
|
68
|
-
- **sections-update-one**: Update a section's name by its ID.
|
|
69
|
-
- **sections-delete-one**: Delete a section by its ID.
|
|
70
|
-
- **tasks-list-by-date**: Get tasks by date range.
|
|
71
|
-
- **tasks-list-overdue**: Get overdue tasks.
|
|
72
|
-
- **tasks-list-for-project**: Get tasks by project ID.
|
|
73
|
-
- **tasks-list-for-section**: List tasks for a given section.
|
|
74
|
-
- **tasks-search**: Search tasks by text using Todoist's filter query.
|
|
75
|
-
- **tasks-add-multiple**: Add one or more tasks to a project, section, or parent.
|
|
76
|
-
- **tasks-update-one**: Update an existing task with new values.
|
|
77
|
-
- **tasks-delete-one**: Delete a task by its ID.
|
|
78
|
-
- **tasks-complete-multiple**: Complete one or multiple tasks by ID.
|
|
79
|
-
- **tasks-organize-multiple**: Organize multiple tasks (move, reorder, etc.) in bulk.
|
|
80
|
-
- **subtasks-list-for-parent-task**: List subtasks for a given parent task.
|
|
59
|
+
For a complete list of available tools, see the [src/tools](src/tools) directory.
|
|
81
60
|
|
|
82
61
|
## Dependencies
|
|
83
62
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1,43 +1,20 @@
|
|
|
1
1
|
import { getMcpServer } from './mcp-server';
|
|
2
|
-
import {
|
|
3
|
-
import { projectsDeleteOne } from './tools/projects-delete-one';
|
|
2
|
+
import { deleteOne } from './tools/delete-one';
|
|
4
3
|
import { projectsList } from './tools/projects-list';
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import { sectionsAddOne } from './tools/sections-add-one';
|
|
8
|
-
import { sectionsDeleteOne } from './tools/sections-delete-one';
|
|
4
|
+
import { projectsManage } from './tools/projects-manage';
|
|
5
|
+
import { sectionsManage } from './tools/sections-manage';
|
|
9
6
|
import { sectionsSearch } from './tools/sections-search';
|
|
10
|
-
import {
|
|
7
|
+
import { overview } from './tools/overview';
|
|
11
8
|
import { tasksAddMultiple } from './tools/tasks-add-multiple';
|
|
12
9
|
import { tasksCompleteMultiple } from './tools/tasks-complete-multiple';
|
|
13
|
-
import { tasksDeleteOne } from './tools/tasks-delete-one';
|
|
14
10
|
import { tasksListByDate } from './tools/tasks-list-by-date';
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import { tasksListOverdue } from './tools/tasks-list-overdue';
|
|
11
|
+
import { tasksListCompleted } from './tools/tasks-list-completed';
|
|
12
|
+
import { tasksListForContainer } from './tools/tasks-list-for-container';
|
|
18
13
|
import { tasksOrganizeMultiple } from './tools/tasks-organize-multiple';
|
|
19
14
|
import { tasksSearch } from './tools/tasks-search';
|
|
20
15
|
import { tasksUpdateOne } from './tools/tasks-update-one';
|
|
21
|
-
import { subtasksListForParentTask } from './tools/subtasks-list-for-parent-task';
|
|
22
|
-
import { accountOverview } from './tools/account-overview';
|
|
23
|
-
import { projectOverview } from './tools/project-overview';
|
|
24
16
|
declare const tools: {
|
|
25
17
|
projectsList: {
|
|
26
|
-
name: string;
|
|
27
|
-
description: string;
|
|
28
|
-
parameters: {
|
|
29
|
-
limit: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
30
|
-
cursor: import("zod").ZodOptional<import("zod").ZodString>;
|
|
31
|
-
};
|
|
32
|
-
execute(args: {
|
|
33
|
-
limit: number;
|
|
34
|
-
cursor?: string | undefined;
|
|
35
|
-
}, client: import("@doist/todoist-api-typescript").TodoistApi): Promise<{
|
|
36
|
-
projects: (import("@doist/todoist-api-typescript").PersonalProject | import("@doist/todoist-api-typescript").WorkspaceProject)[];
|
|
37
|
-
nextCursor: string | null;
|
|
38
|
-
}>;
|
|
39
|
-
};
|
|
40
|
-
projectsSearch: {
|
|
41
18
|
name: string;
|
|
42
19
|
description: string;
|
|
43
20
|
parameters: {
|
|
@@ -63,15 +40,17 @@ declare const tools: {
|
|
|
63
40
|
nextCursor: string | null;
|
|
64
41
|
}>;
|
|
65
42
|
};
|
|
66
|
-
|
|
43
|
+
projectsManage: {
|
|
67
44
|
name: string;
|
|
68
45
|
description: string;
|
|
69
46
|
parameters: {
|
|
47
|
+
id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
70
48
|
name: import("zod").ZodString;
|
|
71
49
|
};
|
|
72
50
|
execute(args: {
|
|
73
51
|
name: string;
|
|
74
|
-
|
|
52
|
+
id?: string | undefined;
|
|
53
|
+
}, client: import("@doist/todoist-api-typescript").TodoistApi): Promise<import("@doist/todoist-api-typescript").WorkspaceProject | {
|
|
75
54
|
id: string;
|
|
76
55
|
name: string;
|
|
77
56
|
color: string;
|
|
@@ -82,25 +61,15 @@ declare const tools: {
|
|
|
82
61
|
viewStyle: string;
|
|
83
62
|
}>;
|
|
84
63
|
};
|
|
85
|
-
|
|
86
|
-
name: string;
|
|
87
|
-
description: string;
|
|
88
|
-
parameters: {
|
|
89
|
-
id: import("zod").ZodString;
|
|
90
|
-
name: import("zod").ZodString;
|
|
91
|
-
};
|
|
92
|
-
execute(args: {
|
|
93
|
-
id: string;
|
|
94
|
-
name: string;
|
|
95
|
-
}, client: import("@doist/todoist-api-typescript").TodoistApi): Promise<import("@doist/todoist-api-typescript").PersonalProject | import("@doist/todoist-api-typescript").WorkspaceProject>;
|
|
96
|
-
};
|
|
97
|
-
projectsDeleteOne: {
|
|
64
|
+
deleteOne: {
|
|
98
65
|
name: string;
|
|
99
66
|
description: string;
|
|
100
67
|
parameters: {
|
|
68
|
+
type: import("zod").ZodEnum<["project", "section", "task"]>;
|
|
101
69
|
id: import("zod").ZodString;
|
|
102
70
|
};
|
|
103
71
|
execute(args: {
|
|
72
|
+
type: "project" | "section" | "task";
|
|
104
73
|
id: string;
|
|
105
74
|
}, client: import("@doist/todoist-api-typescript").TodoistApi): Promise<{
|
|
106
75
|
success: boolean;
|
|
@@ -121,41 +90,25 @@ declare const tools: {
|
|
|
121
90
|
name: string;
|
|
122
91
|
}[]>;
|
|
123
92
|
};
|
|
124
|
-
|
|
93
|
+
sectionsManage: {
|
|
125
94
|
name: string;
|
|
126
95
|
description: string;
|
|
127
96
|
parameters: {
|
|
97
|
+
id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
128
98
|
name: import("zod").ZodString;
|
|
129
|
-
projectId: import("zod").ZodString
|
|
99
|
+
projectId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
130
100
|
};
|
|
131
101
|
execute(args: {
|
|
132
102
|
name: string;
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
};
|
|
136
|
-
sectionsUpdateOne: {
|
|
137
|
-
name: string;
|
|
138
|
-
description: string;
|
|
139
|
-
parameters: {
|
|
140
|
-
id: import("zod").ZodString;
|
|
141
|
-
name: import("zod").ZodString;
|
|
142
|
-
};
|
|
143
|
-
execute(args: {
|
|
144
|
-
id: string;
|
|
145
|
-
name: string;
|
|
146
|
-
}, client: import("@doist/todoist-api-typescript").TodoistApi): Promise<import("@doist/todoist-api-typescript").Section>;
|
|
147
|
-
};
|
|
148
|
-
sectionsDeleteOne: {
|
|
149
|
-
name: string;
|
|
150
|
-
description: string;
|
|
151
|
-
parameters: {
|
|
152
|
-
id: import("zod").ZodString;
|
|
153
|
-
};
|
|
154
|
-
execute(args: {
|
|
155
|
-
id: string;
|
|
103
|
+
id?: string | undefined;
|
|
104
|
+
projectId?: string | undefined;
|
|
156
105
|
}, client: import("@doist/todoist-api-typescript").TodoistApi): Promise<{
|
|
157
|
-
|
|
158
|
-
|
|
106
|
+
isError: boolean;
|
|
107
|
+
content: {
|
|
108
|
+
type: "text";
|
|
109
|
+
text: string;
|
|
110
|
+
}[];
|
|
111
|
+
} | import("@doist/todoist-api-typescript").Section>;
|
|
159
112
|
};
|
|
160
113
|
tasksListByDate: {
|
|
161
114
|
name: string;
|
|
@@ -187,43 +140,30 @@ declare const tools: {
|
|
|
187
140
|
nextCursor: string | null;
|
|
188
141
|
}>;
|
|
189
142
|
};
|
|
190
|
-
|
|
191
|
-
name: string;
|
|
192
|
-
description: string;
|
|
193
|
-
parameters: {
|
|
194
|
-
id: import("zod").ZodString;
|
|
195
|
-
};
|
|
196
|
-
execute(args: {
|
|
197
|
-
id: string;
|
|
198
|
-
}, client: import("@doist/todoist-api-typescript").TodoistApi): Promise<{
|
|
199
|
-
success: boolean;
|
|
200
|
-
}>;
|
|
201
|
-
};
|
|
202
|
-
tasksCompleteMultiple: {
|
|
203
|
-
name: string;
|
|
204
|
-
description: string;
|
|
205
|
-
parameters: {
|
|
206
|
-
ids: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
207
|
-
};
|
|
208
|
-
execute(args: {
|
|
209
|
-
ids: string[];
|
|
210
|
-
}, client: import("@doist/todoist-api-typescript").TodoistApi): Promise<{
|
|
211
|
-
success: boolean;
|
|
212
|
-
completed: string[];
|
|
213
|
-
}>;
|
|
214
|
-
};
|
|
215
|
-
tasksListForProject: {
|
|
143
|
+
tasksListCompleted: {
|
|
216
144
|
name: string;
|
|
217
145
|
description: string;
|
|
218
146
|
parameters: {
|
|
219
|
-
|
|
147
|
+
getBy: import("zod").ZodDefault<import("zod").ZodEnum<["completion", "due"]>>;
|
|
148
|
+
since: import("zod").ZodString;
|
|
149
|
+
until: import("zod").ZodString;
|
|
150
|
+
workspaceId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
151
|
+
projectId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
152
|
+
sectionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
153
|
+
parentId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
220
154
|
limit: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
221
155
|
cursor: import("zod").ZodOptional<import("zod").ZodString>;
|
|
222
156
|
};
|
|
223
157
|
execute(args: {
|
|
224
158
|
limit: number;
|
|
225
|
-
|
|
159
|
+
getBy: "completion" | "due";
|
|
160
|
+
since: string;
|
|
161
|
+
until: string;
|
|
162
|
+
parentId?: string | undefined;
|
|
163
|
+
workspaceId?: string | undefined;
|
|
226
164
|
cursor?: string | undefined;
|
|
165
|
+
projectId?: string | undefined;
|
|
166
|
+
sectionId?: string | undefined;
|
|
227
167
|
}, client: import("@doist/todoist-api-typescript").TodoistApi): Promise<{
|
|
228
168
|
tasks: {
|
|
229
169
|
id: string;
|
|
@@ -240,14 +180,18 @@ declare const tools: {
|
|
|
240
180
|
nextCursor: string | null;
|
|
241
181
|
}>;
|
|
242
182
|
};
|
|
243
|
-
|
|
183
|
+
tasksListForContainer: {
|
|
244
184
|
name: string;
|
|
245
185
|
description: string;
|
|
246
186
|
parameters: {
|
|
187
|
+
type: import("zod").ZodEnum<["project", "section", "parent"]>;
|
|
188
|
+
id: import("zod").ZodString;
|
|
247
189
|
limit: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
248
190
|
cursor: import("zod").ZodOptional<import("zod").ZodString>;
|
|
249
191
|
};
|
|
250
192
|
execute(args: {
|
|
193
|
+
type: "project" | "section" | "parent";
|
|
194
|
+
id: string;
|
|
251
195
|
limit: number;
|
|
252
196
|
cursor?: string | undefined;
|
|
253
197
|
}, client: import("@doist/todoist-api-typescript").TodoistApi): Promise<{
|
|
@@ -266,44 +210,17 @@ declare const tools: {
|
|
|
266
210
|
nextCursor: string | null;
|
|
267
211
|
}>;
|
|
268
212
|
};
|
|
269
|
-
|
|
213
|
+
tasksCompleteMultiple: {
|
|
270
214
|
name: string;
|
|
271
215
|
description: string;
|
|
272
216
|
parameters: {
|
|
273
|
-
|
|
274
|
-
since: import("zod").ZodString;
|
|
275
|
-
until: import("zod").ZodString;
|
|
276
|
-
workspaceId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
277
|
-
projectId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
278
|
-
sectionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
279
|
-
parentId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
280
|
-
limit: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
281
|
-
cursor: import("zod").ZodOptional<import("zod").ZodString>;
|
|
217
|
+
ids: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
282
218
|
};
|
|
283
219
|
execute(args: {
|
|
284
|
-
|
|
285
|
-
getBy: "completion" | "due";
|
|
286
|
-
since: string;
|
|
287
|
-
until: string;
|
|
288
|
-
parentId?: string | undefined;
|
|
289
|
-
workspaceId?: string | undefined;
|
|
290
|
-
cursor?: string | undefined;
|
|
291
|
-
projectId?: string | undefined;
|
|
292
|
-
sectionId?: string | undefined;
|
|
220
|
+
ids: string[];
|
|
293
221
|
}, client: import("@doist/todoist-api-typescript").TodoistApi): Promise<{
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
content: string;
|
|
297
|
-
description: string;
|
|
298
|
-
dueDate: string | undefined;
|
|
299
|
-
recurring: string | boolean;
|
|
300
|
-
priority: number;
|
|
301
|
-
projectId: string;
|
|
302
|
-
sectionId: string | null;
|
|
303
|
-
parentId: string | null;
|
|
304
|
-
labels: string[];
|
|
305
|
-
}[];
|
|
306
|
-
nextCursor: string | null;
|
|
222
|
+
success: boolean;
|
|
223
|
+
completed: string[];
|
|
307
224
|
}>;
|
|
308
225
|
};
|
|
309
226
|
tasksSearch: {
|
|
@@ -439,79 +356,17 @@ declare const tools: {
|
|
|
439
356
|
}[];
|
|
440
357
|
}, client: import("@doist/todoist-api-typescript").TodoistApi): Promise<import("@doist/todoist-api-typescript").Task[]>;
|
|
441
358
|
};
|
|
442
|
-
|
|
359
|
+
overview: {
|
|
443
360
|
name: string;
|
|
444
361
|
description: string;
|
|
445
362
|
parameters: {
|
|
446
|
-
|
|
447
|
-
limit: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
448
|
-
cursor: import("zod").ZodOptional<import("zod").ZodString>;
|
|
449
|
-
};
|
|
450
|
-
execute(args: {
|
|
451
|
-
limit: number;
|
|
452
|
-
sectionId: string;
|
|
453
|
-
cursor?: string | undefined;
|
|
454
|
-
}, client: import("@doist/todoist-api-typescript").TodoistApi): Promise<{
|
|
455
|
-
tasks: {
|
|
456
|
-
id: string;
|
|
457
|
-
content: string;
|
|
458
|
-
description: string;
|
|
459
|
-
dueDate: string | undefined;
|
|
460
|
-
recurring: string | boolean;
|
|
461
|
-
priority: number;
|
|
462
|
-
projectId: string;
|
|
463
|
-
sectionId: string | null;
|
|
464
|
-
parentId: string | null;
|
|
465
|
-
labels: string[];
|
|
466
|
-
}[];
|
|
467
|
-
nextCursor: string | null;
|
|
468
|
-
}>;
|
|
469
|
-
};
|
|
470
|
-
subtasksListForParentTask: {
|
|
471
|
-
name: string;
|
|
472
|
-
description: string;
|
|
473
|
-
parameters: {
|
|
474
|
-
parentId: import("zod").ZodString;
|
|
475
|
-
limit: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
476
|
-
cursor: import("zod").ZodOptional<import("zod").ZodString>;
|
|
477
|
-
};
|
|
478
|
-
execute(args: {
|
|
479
|
-
parentId: string;
|
|
480
|
-
limit: number;
|
|
481
|
-
cursor?: string | undefined;
|
|
482
|
-
}, client: import("@doist/todoist-api-typescript").TodoistApi): Promise<{
|
|
483
|
-
tasks: {
|
|
484
|
-
id: string;
|
|
485
|
-
content: string;
|
|
486
|
-
description: string;
|
|
487
|
-
dueDate: string | undefined;
|
|
488
|
-
recurring: string | boolean;
|
|
489
|
-
priority: number;
|
|
490
|
-
projectId: string;
|
|
491
|
-
sectionId: string | null;
|
|
492
|
-
parentId: string | null;
|
|
493
|
-
labels: string[];
|
|
494
|
-
}[];
|
|
495
|
-
nextCursor: string | null;
|
|
496
|
-
}>;
|
|
497
|
-
};
|
|
498
|
-
accountOverview: {
|
|
499
|
-
name: string;
|
|
500
|
-
description: string;
|
|
501
|
-
parameters: {};
|
|
502
|
-
execute(_args: {}, client: import("@doist/todoist-api-typescript").TodoistApi): Promise<string>;
|
|
503
|
-
};
|
|
504
|
-
projectOverview: {
|
|
505
|
-
name: string;
|
|
506
|
-
description: string;
|
|
507
|
-
parameters: {
|
|
508
|
-
projectId: import("zod").ZodString;
|
|
363
|
+
projectId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
509
364
|
};
|
|
510
365
|
execute(args: {
|
|
511
|
-
projectId
|
|
366
|
+
projectId?: string | undefined;
|
|
512
367
|
}, client: import("@doist/todoist-api-typescript").TodoistApi): Promise<string>;
|
|
513
368
|
};
|
|
514
369
|
};
|
|
515
370
|
export { tools, getMcpServer };
|
|
516
|
-
export { projectsList,
|
|
371
|
+
export { projectsList, projectsManage, deleteOne, sectionsSearch, sectionsManage, tasksListByDate, tasksListForContainer, tasksListCompleted, tasksCompleteMultiple, tasksSearch, tasksAddMultiple, tasksUpdateOne, tasksOrganizeMultiple, overview, };
|
|
517
372
|
//# 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,YAAY,EAAE,MAAM,cAAc,CAAA;AAE3C,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,cAAc,CAAA;AAE3C,OAAO,EAAE,SAAS,EAAE,MAAM,oBAAoB,CAAA;AAC9C,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAA;AACpD,OAAO,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAA;AAExD,OAAO,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAA;AACxD,OAAO,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAA;AAExD,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAA;AAC3C,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAA;AAC7D,OAAO,EAAE,qBAAqB,EAAE,MAAM,iCAAiC,CAAA;AACvE,OAAO,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAC5D,OAAO,EAAE,kBAAkB,EAAE,MAAM,8BAA8B,CAAA;AACjE,OAAO,EAAE,qBAAqB,EAAE,MAAM,kCAAkC,CAAA;AACxE,OAAO,EAAE,qBAAqB,EAAE,MAAM,iCAAiC,CAAA;AACvE,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAA;AAClD,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAA;AAEzD,QAAA,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAeV,CAAA;AAED,OAAO,EAAE,KAAK,EAAE,YAAY,EAAE,CAAA;AAE9B,OAAO,EACH,YAAY,EACZ,cAAc,EACd,SAAS,EACT,cAAc,EACd,cAAc,EACd,eAAe,EACf,qBAAqB,EACrB,kBAAkB,EAClB,qBAAqB,EACrB,WAAW,EACX,gBAAgB,EAChB,cAAc,EACd,qBAAqB,EACrB,QAAQ,GACX,CAAA"}
|
package/dist/index.js
CHANGED
|
@@ -1,76 +1,50 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.overview = exports.tasksOrganizeMultiple = exports.tasksUpdateOne = exports.tasksAddMultiple = exports.tasksSearch = exports.tasksCompleteMultiple = exports.tasksListCompleted = exports.tasksListForContainer = exports.tasksListByDate = exports.sectionsManage = exports.sectionsSearch = exports.deleteOne = exports.projectsManage = exports.projectsList = exports.getMcpServer = exports.tools = void 0;
|
|
4
4
|
const mcp_server_1 = require("./mcp-server");
|
|
5
5
|
Object.defineProperty(exports, "getMcpServer", { enumerable: true, get: function () { return mcp_server_1.getMcpServer; } });
|
|
6
|
-
const
|
|
7
|
-
Object.defineProperty(exports, "
|
|
8
|
-
const projects_delete_one_1 = require("./tools/projects-delete-one");
|
|
9
|
-
Object.defineProperty(exports, "projectsDeleteOne", { enumerable: true, get: function () { return projects_delete_one_1.projectsDeleteOne; } });
|
|
6
|
+
const delete_one_1 = require("./tools/delete-one");
|
|
7
|
+
Object.defineProperty(exports, "deleteOne", { enumerable: true, get: function () { return delete_one_1.deleteOne; } });
|
|
10
8
|
const projects_list_1 = require("./tools/projects-list");
|
|
11
9
|
Object.defineProperty(exports, "projectsList", { enumerable: true, get: function () { return projects_list_1.projectsList; } });
|
|
12
|
-
const
|
|
13
|
-
Object.defineProperty(exports, "
|
|
14
|
-
const
|
|
15
|
-
Object.defineProperty(exports, "
|
|
16
|
-
const sections_add_one_1 = require("./tools/sections-add-one");
|
|
17
|
-
Object.defineProperty(exports, "sectionsAddOne", { enumerable: true, get: function () { return sections_add_one_1.sectionsAddOne; } });
|
|
18
|
-
const sections_delete_one_1 = require("./tools/sections-delete-one");
|
|
19
|
-
Object.defineProperty(exports, "sectionsDeleteOne", { enumerable: true, get: function () { return sections_delete_one_1.sectionsDeleteOne; } });
|
|
10
|
+
const projects_manage_1 = require("./tools/projects-manage");
|
|
11
|
+
Object.defineProperty(exports, "projectsManage", { enumerable: true, get: function () { return projects_manage_1.projectsManage; } });
|
|
12
|
+
const sections_manage_1 = require("./tools/sections-manage");
|
|
13
|
+
Object.defineProperty(exports, "sectionsManage", { enumerable: true, get: function () { return sections_manage_1.sectionsManage; } });
|
|
20
14
|
const sections_search_1 = require("./tools/sections-search");
|
|
21
15
|
Object.defineProperty(exports, "sectionsSearch", { enumerable: true, get: function () { return sections_search_1.sectionsSearch; } });
|
|
22
|
-
const
|
|
23
|
-
Object.defineProperty(exports, "
|
|
16
|
+
const overview_1 = require("./tools/overview");
|
|
17
|
+
Object.defineProperty(exports, "overview", { enumerable: true, get: function () { return overview_1.overview; } });
|
|
24
18
|
const tasks_add_multiple_1 = require("./tools/tasks-add-multiple");
|
|
25
19
|
Object.defineProperty(exports, "tasksAddMultiple", { enumerable: true, get: function () { return tasks_add_multiple_1.tasksAddMultiple; } });
|
|
26
20
|
const tasks_complete_multiple_1 = require("./tools/tasks-complete-multiple");
|
|
27
21
|
Object.defineProperty(exports, "tasksCompleteMultiple", { enumerable: true, get: function () { return tasks_complete_multiple_1.tasksCompleteMultiple; } });
|
|
28
|
-
const tasks_delete_one_1 = require("./tools/tasks-delete-one");
|
|
29
|
-
Object.defineProperty(exports, "tasksDeleteOne", { enumerable: true, get: function () { return tasks_delete_one_1.tasksDeleteOne; } });
|
|
30
22
|
const tasks_list_by_date_1 = require("./tools/tasks-list-by-date");
|
|
31
23
|
Object.defineProperty(exports, "tasksListByDate", { enumerable: true, get: function () { return tasks_list_by_date_1.tasksListByDate; } });
|
|
32
|
-
const
|
|
33
|
-
Object.defineProperty(exports, "
|
|
34
|
-
const
|
|
35
|
-
Object.defineProperty(exports, "
|
|
36
|
-
const tasks_list_overdue_1 = require("./tools/tasks-list-overdue");
|
|
37
|
-
Object.defineProperty(exports, "tasksListOverdue", { enumerable: true, get: function () { return tasks_list_overdue_1.tasksListOverdue; } });
|
|
24
|
+
const tasks_list_completed_1 = require("./tools/tasks-list-completed");
|
|
25
|
+
Object.defineProperty(exports, "tasksListCompleted", { enumerable: true, get: function () { return tasks_list_completed_1.tasksListCompleted; } });
|
|
26
|
+
const tasks_list_for_container_1 = require("./tools/tasks-list-for-container");
|
|
27
|
+
Object.defineProperty(exports, "tasksListForContainer", { enumerable: true, get: function () { return tasks_list_for_container_1.tasksListForContainer; } });
|
|
38
28
|
const tasks_organize_multiple_1 = require("./tools/tasks-organize-multiple");
|
|
39
29
|
Object.defineProperty(exports, "tasksOrganizeMultiple", { enumerable: true, get: function () { return tasks_organize_multiple_1.tasksOrganizeMultiple; } });
|
|
40
30
|
const tasks_search_1 = require("./tools/tasks-search");
|
|
41
31
|
Object.defineProperty(exports, "tasksSearch", { enumerable: true, get: function () { return tasks_search_1.tasksSearch; } });
|
|
42
32
|
const tasks_update_one_1 = require("./tools/tasks-update-one");
|
|
43
33
|
Object.defineProperty(exports, "tasksUpdateOne", { enumerable: true, get: function () { return tasks_update_one_1.tasksUpdateOne; } });
|
|
44
|
-
const subtasks_list_for_parent_task_1 = require("./tools/subtasks-list-for-parent-task");
|
|
45
|
-
Object.defineProperty(exports, "subtasksListForParentTask", { enumerable: true, get: function () { return subtasks_list_for_parent_task_1.subtasksListForParentTask; } });
|
|
46
|
-
const account_overview_1 = require("./tools/account-overview");
|
|
47
|
-
Object.defineProperty(exports, "accountOverview", { enumerable: true, get: function () { return account_overview_1.accountOverview; } });
|
|
48
|
-
const project_overview_1 = require("./tools/project-overview");
|
|
49
|
-
Object.defineProperty(exports, "projectOverview", { enumerable: true, get: function () { return project_overview_1.projectOverview; } });
|
|
50
|
-
const tasks_list_completed_1 = require("./tools/tasks-list-completed");
|
|
51
34
|
const tools = {
|
|
52
35
|
projectsList: projects_list_1.projectsList,
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
projectsUpdateOne: projects_update_one_1.projectsUpdateOne,
|
|
56
|
-
projectsDeleteOne: projects_delete_one_1.projectsDeleteOne,
|
|
36
|
+
projectsManage: projects_manage_1.projectsManage,
|
|
37
|
+
deleteOne: delete_one_1.deleteOne,
|
|
57
38
|
sectionsSearch: sections_search_1.sectionsSearch,
|
|
58
|
-
|
|
59
|
-
sectionsUpdateOne: sections_update_one_1.sectionsUpdateOne,
|
|
60
|
-
sectionsDeleteOne: sections_delete_one_1.sectionsDeleteOne,
|
|
39
|
+
sectionsManage: sections_manage_1.sectionsManage,
|
|
61
40
|
tasksListByDate: tasks_list_by_date_1.tasksListByDate,
|
|
62
|
-
tasksDeleteOne: tasks_delete_one_1.tasksDeleteOne,
|
|
63
|
-
tasksCompleteMultiple: tasks_complete_multiple_1.tasksCompleteMultiple,
|
|
64
|
-
tasksListForProject: tasks_list_for_project_1.tasksListForProject,
|
|
65
|
-
tasksListOverdue: tasks_list_overdue_1.tasksListOverdue,
|
|
66
41
|
tasksListCompleted: tasks_list_completed_1.tasksListCompleted,
|
|
42
|
+
tasksListForContainer: tasks_list_for_container_1.tasksListForContainer,
|
|
43
|
+
tasksCompleteMultiple: tasks_complete_multiple_1.tasksCompleteMultiple,
|
|
67
44
|
tasksSearch: tasks_search_1.tasksSearch,
|
|
68
45
|
tasksAddMultiple: tasks_add_multiple_1.tasksAddMultiple,
|
|
69
46
|
tasksUpdateOne: tasks_update_one_1.tasksUpdateOne,
|
|
70
47
|
tasksOrganizeMultiple: tasks_organize_multiple_1.tasksOrganizeMultiple,
|
|
71
|
-
|
|
72
|
-
subtasksListForParentTask: subtasks_list_for_parent_task_1.subtasksListForParentTask,
|
|
73
|
-
accountOverview: account_overview_1.accountOverview,
|
|
74
|
-
projectOverview: project_overview_1.projectOverview,
|
|
48
|
+
overview: overview_1.overview,
|
|
75
49
|
};
|
|
76
50
|
exports.tools = tools;
|
package/dist/mcp-helpers.d.ts
CHANGED
|
@@ -2,6 +2,13 @@ import type { TodoistApi } from '@doist/todoist-api-typescript';
|
|
|
2
2
|
import type { McpServer } from '@modelcontextprotocol/sdk/server/mcp';
|
|
3
3
|
import type { z } from 'zod';
|
|
4
4
|
import type { TodoistTool } from './todoist-tool';
|
|
5
|
+
declare function errorContent(error: string): {
|
|
6
|
+
isError: boolean;
|
|
7
|
+
content: {
|
|
8
|
+
type: "text";
|
|
9
|
+
text: string;
|
|
10
|
+
}[];
|
|
11
|
+
};
|
|
5
12
|
/**
|
|
6
13
|
* Register a Todoist tool in an MCP server.
|
|
7
14
|
* @param tool - The tool to register.
|
|
@@ -9,5 +16,5 @@ import type { TodoistTool } from './todoist-tool';
|
|
|
9
16
|
* @param client - The Todoist API client to use to execute the tool.
|
|
10
17
|
*/
|
|
11
18
|
declare function registerTool<Params extends z.ZodRawShape>(tool: TodoistTool<Params>, server: McpServer, client: TodoistApi): void;
|
|
12
|
-
export { registerTool };
|
|
19
|
+
export { registerTool, errorContent };
|
|
13
20
|
//# sourceMappingURL=mcp-helpers.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mcp-helpers.d.ts","sourceRoot":"","sources":["../src/mcp-helpers.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,+BAA+B,CAAA;AAC/D,OAAO,KAAK,EAAE,SAAS,EAAgB,MAAM,sCAAsC,CAAA;AACnF,OAAO,KAAK,EAAc,CAAC,EAAE,MAAM,KAAK,CAAA;AACxC,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAA;
|
|
1
|
+
{"version":3,"file":"mcp-helpers.d.ts","sourceRoot":"","sources":["../src/mcp-helpers.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,+BAA+B,CAAA;AAC/D,OAAO,KAAK,EAAE,SAAS,EAAgB,MAAM,sCAAsC,CAAA;AACnF,OAAO,KAAK,EAAc,CAAC,EAAE,MAAM,KAAK,CAAA;AACxC,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAA;AAwBjD,iBAAS,YAAY,CAAC,KAAK,EAAE,MAAM;;;;;;EAKlC;AAED;;;;;GAKG;AACH,iBAAS,YAAY,CAAC,MAAM,SAAS,CAAC,CAAC,WAAW,EAC9C,IAAI,EAAE,WAAW,CAAC,MAAM,CAAC,EACzB,MAAM,EAAE,SAAS,EACjB,MAAM,EAAE,UAAU,QAqBrB;AAED,OAAO,EAAE,YAAY,EAAE,YAAY,EAAE,CAAA"}
|
package/dist/mcp-helpers.js
CHANGED
package/dist/mcp-server.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mcp-server.d.ts","sourceRoot":"","sources":["../src/mcp-server.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,SAAS,EAAE,MAAM,sCAAsC,CAAA;
|
|
1
|
+
{"version":3,"file":"mcp-server.d.ts","sourceRoot":"","sources":["../src/mcp-server.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,SAAS,EAAE,MAAM,sCAAsC,CAAA;AAwBhE;;;;;GAKG;AACH,iBAAS,YAAY,CAAC,EAAE,aAAa,EAAE,OAAO,EAAE,EAAE;IAAE,aAAa,EAAE,MAAM,CAAC;IAAC,OAAO,CAAC,EAAE,MAAM,CAAA;CAAE,aA6B5F;AAED,OAAO,EAAE,YAAY,EAAE,CAAA"}
|
package/dist/mcp-server.js
CHANGED
|
@@ -4,26 +4,17 @@ exports.getMcpServer = getMcpServer;
|
|
|
4
4
|
const todoist_api_typescript_1 = require("@doist/todoist-api-typescript");
|
|
5
5
|
const mcp_1 = require("@modelcontextprotocol/sdk/server/mcp");
|
|
6
6
|
const mcp_helpers_1 = require("./mcp-helpers");
|
|
7
|
-
const
|
|
8
|
-
const projects_delete_one_1 = require("./tools/projects-delete-one");
|
|
7
|
+
const delete_one_1 = require("./tools/delete-one");
|
|
9
8
|
const projects_list_1 = require("./tools/projects-list");
|
|
10
|
-
const
|
|
11
|
-
const
|
|
12
|
-
const sections_add_one_1 = require("./tools/sections-add-one");
|
|
13
|
-
const sections_delete_one_1 = require("./tools/sections-delete-one");
|
|
9
|
+
const projects_manage_1 = require("./tools/projects-manage");
|
|
10
|
+
const sections_manage_1 = require("./tools/sections-manage");
|
|
14
11
|
const sections_search_1 = require("./tools/sections-search");
|
|
15
|
-
const
|
|
16
|
-
const subtasks_list_for_parent_task_1 = require("./tools/subtasks-list-for-parent-task");
|
|
17
|
-
const account_overview_1 = require("./tools/account-overview");
|
|
18
|
-
const project_overview_1 = require("./tools/project-overview");
|
|
12
|
+
const overview_1 = require("./tools/overview");
|
|
19
13
|
const tasks_add_multiple_1 = require("./tools/tasks-add-multiple");
|
|
20
14
|
const tasks_complete_multiple_1 = require("./tools/tasks-complete-multiple");
|
|
21
|
-
const tasks_delete_one_1 = require("./tools/tasks-delete-one");
|
|
22
15
|
const tasks_list_by_date_1 = require("./tools/tasks-list-by-date");
|
|
23
16
|
const tasks_list_completed_1 = require("./tools/tasks-list-completed");
|
|
24
|
-
const
|
|
25
|
-
const tasks_list_for_section_1 = require("./tools/tasks-list-for-section");
|
|
26
|
-
const tasks_list_overdue_1 = require("./tools/tasks-list-overdue");
|
|
17
|
+
const tasks_list_for_container_1 = require("./tools/tasks-list-for-container");
|
|
27
18
|
const tasks_organize_multiple_1 = require("./tools/tasks-organize-multiple");
|
|
28
19
|
const tasks_search_1 = require("./tools/tasks-search");
|
|
29
20
|
const tasks_update_one_1 = require("./tools/tasks-update-one");
|
|
@@ -46,26 +37,17 @@ function getMcpServer({ todoistApiKey, baseUrl }) {
|
|
|
46
37
|
const todoist = new todoist_api_typescript_1.TodoistApi(todoistApiKey, baseUrl);
|
|
47
38
|
(0, mcp_helpers_1.registerTool)(tasks_list_completed_1.tasksListCompleted, server, todoist);
|
|
48
39
|
(0, mcp_helpers_1.registerTool)(tasks_list_by_date_1.tasksListByDate, server, todoist);
|
|
49
|
-
(0, mcp_helpers_1.registerTool)(tasks_list_overdue_1.tasksListOverdue, server, todoist);
|
|
50
|
-
(0, mcp_helpers_1.registerTool)(tasks_list_for_project_1.tasksListForProject, server, todoist);
|
|
51
40
|
(0, mcp_helpers_1.registerTool)(tasks_search_1.tasksSearch, server, todoist);
|
|
52
41
|
(0, mcp_helpers_1.registerTool)(projects_list_1.projectsList, server, todoist);
|
|
53
42
|
(0, mcp_helpers_1.registerTool)(tasks_add_multiple_1.tasksAddMultiple, server, todoist);
|
|
54
43
|
(0, mcp_helpers_1.registerTool)(tasks_update_one_1.tasksUpdateOne, server, todoist);
|
|
55
|
-
(0, mcp_helpers_1.registerTool)(
|
|
44
|
+
(0, mcp_helpers_1.registerTool)(delete_one_1.deleteOne, server, todoist);
|
|
56
45
|
(0, mcp_helpers_1.registerTool)(tasks_complete_multiple_1.tasksCompleteMultiple, server, todoist);
|
|
57
|
-
(0, mcp_helpers_1.registerTool)(
|
|
58
|
-
(0, mcp_helpers_1.registerTool)(
|
|
59
|
-
(0, mcp_helpers_1.registerTool)(sections_add_one_1.sectionsAddOne, server, todoist);
|
|
60
|
-
(0, mcp_helpers_1.registerTool)(sections_update_one_1.sectionsUpdateOne, server, todoist);
|
|
46
|
+
(0, mcp_helpers_1.registerTool)(projects_manage_1.projectsManage, server, todoist);
|
|
47
|
+
(0, mcp_helpers_1.registerTool)(sections_manage_1.sectionsManage, server, todoist);
|
|
61
48
|
(0, mcp_helpers_1.registerTool)(tasks_organize_multiple_1.tasksOrganizeMultiple, server, todoist);
|
|
62
|
-
(0, mcp_helpers_1.registerTool)(subtasks_list_for_parent_task_1.subtasksListForParentTask, server, todoist);
|
|
63
|
-
(0, mcp_helpers_1.registerTool)(tasks_list_for_section_1.tasksListForSection, server, todoist);
|
|
64
|
-
(0, mcp_helpers_1.registerTool)(projects_delete_one_1.projectsDeleteOne, server, todoist);
|
|
65
|
-
(0, mcp_helpers_1.registerTool)(projects_search_1.projectsSearch, server, todoist);
|
|
66
|
-
(0, mcp_helpers_1.registerTool)(sections_delete_one_1.sectionsDeleteOne, server, todoist);
|
|
67
49
|
(0, mcp_helpers_1.registerTool)(sections_search_1.sectionsSearch, server, todoist);
|
|
68
|
-
(0, mcp_helpers_1.registerTool)(
|
|
69
|
-
(0, mcp_helpers_1.registerTool)(
|
|
50
|
+
(0, mcp_helpers_1.registerTool)(overview_1.overview, server, todoist);
|
|
51
|
+
(0, mcp_helpers_1.registerTool)(tasks_list_for_container_1.tasksListForContainer, server, todoist);
|
|
70
52
|
return server;
|
|
71
53
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tool-helpers.d.ts","sourceRoot":"","sources":["../src/tool-helpers.ts"],"names":[],"mappings":"AAAA,OAAO,EACH,KAAK,eAAe,EACpB,KAAK,IAAI,EACT,KAAK,UAAU,EACf,KAAK,gBAAgB,EAExB,MAAM,+BAA+B,CAAA;AAGtC,MAAM,MAAM,OAAO,GAAG,eAAe,GAAG,gBAAgB,CAAA;AAExD,wBAAgB,iBAAiB,CAAC,OAAO,EAAE,OAAO,GAAG,OAAO,IAAI,eAAe,CAE9E;AAED,wBAAgB,kBAAkB,CAAC,OAAO,EAAE,OAAO,GAAG,OAAO,IAAI,gBAAgB,CAEhF;AAED;;;;GAIG;AACH,iBAAS,OAAO,CAAC,IAAI,EAAE,IAAI;;;;;;;;;;;EAa1B;AAED;;;;GAIG;AACH,iBAAS,UAAU,CAAC,OAAO,EAAE,OAAO;;;;;;;;;EAWnC;AAWD,iBAAe,gBAAgB,CAAC,EAC5B,MAAM,EACN,KAAK,EACL,KAAK,EACL,MAAM,GACT,EAAE;IACC,MAAM,EAAE,UAAU,CAAA;IAClB,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,EAAE,MAAM,GAAG,SAAS,CAAA;IACzB,MAAM,EAAE,MAAM,GAAG,SAAS,CAAA;CAC7B;;;;;;;;;;;;;;GAyBA;AAED,OAAO,EAAE,gBAAgB,EAAE,OAAO,EAAE,UAAU,EAAE,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tool-helpers.test.d.ts","sourceRoot":"","sources":["../src/tool-helpers.test.ts"],"names":[],"mappings":""}
|