@doist/todoist-ai 8.6.0 → 8.7.1
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 +2 -2
- package/dist/index.d.ts +9 -9
- package/dist/index.js +2 -2
- package/dist/main-http.js +1 -1
- package/dist/main.js +1 -1
- package/dist/mcp-apps/index.html +98 -0
- package/dist/mcp-helpers.d.ts +1 -7
- package/dist/mcp-helpers.d.ts.map +1 -1
- package/dist/mcp-server-CWvR4g_x.js +5777 -0
- package/dist/mcp-server.d.ts.map +1 -1
- package/dist/tools/find-completed-tasks.d.ts +3 -3
- package/dist/tools/find-tasks-by-date.d.ts +25 -3
- package/dist/tools/find-tasks-by-date.d.ts.map +1 -1
- package/dist/tools/find-tasks.d.ts +3 -3
- package/dist/utils/labels.d.ts +1 -1
- package/package.json +12 -5
- package/dist/mcp-server-CYpy6_9b.js +0 -5773
- package/dist/tools/find-tasks-by-date.resource.d.ts +0 -28
- package/dist/tools/find-tasks-by-date.resource.d.ts.map +0 -1
- package/dist/utils/widget-loader.d.ts +0 -7
- package/dist/utils/widget-loader.d.ts.map +0 -1
- package/scripts/inline-widget-builder.ts +0 -87
- package/scripts/inline-widgets-vite-plugin.ts +0 -134
package/README.md
CHANGED
|
@@ -154,11 +154,11 @@ See [docs/mcp-server.md](docs/mcp-server.md) for full instructions on setting up
|
|
|
154
154
|
|
|
155
155
|
See [docs/dev-setup.md](docs/dev-setup.md) for full setup instructions and [CONTRIBUTING.md](CONTRIBUTING.md) for contributor workflows and quality checks.
|
|
156
156
|
|
|
157
|
-
###
|
|
157
|
+
### MCP Apps
|
|
158
158
|
|
|
159
159
|
This project includes support for **MCP Apps** – interactive UI widgets rendered inline in AI chat interfaces. Widgets provide rich visual representations of tool outputs (e.g., task lists) instead of plain text.
|
|
160
160
|
|
|
161
|
-
See [docs/
|
|
161
|
+
See [docs/mcp-apps.md](docs/mcp-apps.md) for the widget architecture, build pipeline, and development workflow.
|
|
162
162
|
|
|
163
163
|
### Quick Start
|
|
164
164
|
|
package/dist/index.d.ts
CHANGED
|
@@ -346,8 +346,8 @@ declare const tools: {
|
|
|
346
346
|
parameters: {
|
|
347
347
|
labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString>>;
|
|
348
348
|
labelsOperator: import('zod').ZodOptional<import('zod').ZodEnum<{
|
|
349
|
-
and: "and";
|
|
350
349
|
or: "or";
|
|
350
|
+
and: "and";
|
|
351
351
|
}>>;
|
|
352
352
|
searchText: import('zod').ZodOptional<import('zod').ZodString>;
|
|
353
353
|
projectId: import('zod').ZodOptional<import('zod').ZodString>;
|
|
@@ -402,7 +402,7 @@ declare const tools: {
|
|
|
402
402
|
execute(args: {
|
|
403
403
|
limit: number;
|
|
404
404
|
labels?: string[] | undefined;
|
|
405
|
-
labelsOperator?: "
|
|
405
|
+
labelsOperator?: "or" | "and" | undefined;
|
|
406
406
|
searchText?: string | undefined;
|
|
407
407
|
projectId?: string | undefined;
|
|
408
408
|
sectionId?: string | undefined;
|
|
@@ -439,7 +439,7 @@ declare const tools: {
|
|
|
439
439
|
appliedFilters: {
|
|
440
440
|
limit: number;
|
|
441
441
|
labels?: string[] | undefined;
|
|
442
|
-
labelsOperator?: "
|
|
442
|
+
labelsOperator?: "or" | "and" | undefined;
|
|
443
443
|
searchText?: string | undefined;
|
|
444
444
|
projectId?: string | undefined;
|
|
445
445
|
sectionId?: string | undefined;
|
|
@@ -459,8 +459,8 @@ declare const tools: {
|
|
|
459
459
|
parameters: {
|
|
460
460
|
labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString>>;
|
|
461
461
|
labelsOperator: import('zod').ZodOptional<import('zod').ZodEnum<{
|
|
462
|
-
and: "and";
|
|
463
462
|
or: "or";
|
|
463
|
+
and: "and";
|
|
464
464
|
}>>;
|
|
465
465
|
startDate: import('zod').ZodOptional<import('zod').ZodString>;
|
|
466
466
|
overdueOption: import('zod').ZodOptional<import('zod').ZodEnum<{
|
|
@@ -517,7 +517,7 @@ declare const tools: {
|
|
|
517
517
|
daysCount: number;
|
|
518
518
|
limit: number;
|
|
519
519
|
labels?: string[] | undefined;
|
|
520
|
-
labelsOperator?: "
|
|
520
|
+
labelsOperator?: "or" | "and" | undefined;
|
|
521
521
|
startDate?: string | undefined;
|
|
522
522
|
overdueOption?: "overdue-only" | "include-overdue" | "exclude-overdue" | undefined;
|
|
523
523
|
cursor?: string | undefined;
|
|
@@ -551,7 +551,7 @@ declare const tools: {
|
|
|
551
551
|
daysCount: number;
|
|
552
552
|
limit: number;
|
|
553
553
|
labels?: string[] | undefined;
|
|
554
|
-
labelsOperator?: "
|
|
554
|
+
labelsOperator?: "or" | "and" | undefined;
|
|
555
555
|
startDate?: string | undefined;
|
|
556
556
|
overdueOption?: "overdue-only" | "include-overdue" | "exclude-overdue" | undefined;
|
|
557
557
|
cursor?: string | undefined;
|
|
@@ -567,8 +567,8 @@ declare const tools: {
|
|
|
567
567
|
parameters: {
|
|
568
568
|
labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString>>;
|
|
569
569
|
labelsOperator: import('zod').ZodOptional<import('zod').ZodEnum<{
|
|
570
|
-
and: "and";
|
|
571
570
|
or: "or";
|
|
571
|
+
and: "and";
|
|
572
572
|
}>>;
|
|
573
573
|
getBy: import('zod').ZodDefault<import('zod').ZodEnum<{
|
|
574
574
|
due: "due";
|
|
@@ -623,7 +623,7 @@ declare const tools: {
|
|
|
623
623
|
getBy: "due" | "completion";
|
|
624
624
|
limit: number;
|
|
625
625
|
labels?: string[] | undefined;
|
|
626
|
-
labelsOperator?: "
|
|
626
|
+
labelsOperator?: "or" | "and" | undefined;
|
|
627
627
|
since?: string | undefined;
|
|
628
628
|
until?: string | undefined;
|
|
629
629
|
workspaceId?: string | undefined;
|
|
@@ -662,7 +662,7 @@ declare const tools: {
|
|
|
662
662
|
getBy: "due" | "completion";
|
|
663
663
|
limit: number;
|
|
664
664
|
labels?: string[] | undefined;
|
|
665
|
-
labelsOperator?: "
|
|
665
|
+
labelsOperator?: "or" | "and" | undefined;
|
|
666
666
|
workspaceId?: string | undefined;
|
|
667
667
|
projectId?: string | undefined;
|
|
668
668
|
sectionId?: string | undefined;
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { f as s, s as a, l as e, m as t, a as d, u as o, r, d as i, b as c, c as n, e as l, h as m, i as f, j as p, k, n as g, o as j, p as u, q as T, t as h, v, w as P, x as A, y as S, z as b, A as y, B as C, C as F, D as E, E as w, F as x, G as H, H as I, I as L, J as M, K as O, L as z, M as B } from "./mcp-server-
|
|
2
|
-
import { N as G, g as J } from "./mcp-server-
|
|
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 c, c as n, e as l, h as m, i as f, j as p, k, n as g, o as j, p as u, q as T, t as h, v, w as P, x as A, y as S, z as b, A as y, B as C, C as F, D as E, E as w, F as x, G as H, H as I, I as L, J as M, K as O, L as z, M as B } from "./mcp-server-CWvR4g_x.js";
|
|
2
|
+
import { N as G, g as J } from "./mcp-server-CWvR4g_x.js";
|
|
3
3
|
const N = {
|
|
4
4
|
// Task management tools
|
|
5
5
|
addTasks: B,
|
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-CWvR4g_x.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-CWvR4g_x.js";
|
|
5
5
|
function p() {
|
|
6
6
|
const e = process.env.TODOIST_BASE_URL, r = process.env.TODOIST_API_KEY;
|
|
7
7
|
if (!r)
|