@doist/todoist-mcp 12.5.3 → 12.5.4
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.js +3 -3
- package/dist/main-http.js +2 -2
- package/dist/main.js +1 -1
- package/dist/{mcp-server-9sgQGVw_.js → mcp-server-BxS0NkIc.js} +2 -2
- package/dist/{require-valid-todoist-token-26-h3alF.js → require-valid-todoist-token-D0hjlcRK.js} +1 -1
- package/package.json +4 -3
- package/scripts/eval-instructions.ts +6 -2
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { t as s } from "./mcp-server-
|
|
2
|
-
import { F as r, a as d, b as i, c as n, d as c, e as l, f as m, h as p, i as f, j as T, k as j, l as g, m as k, n as u, o as v, p as P, q as h, r as b, s as S, u as y, v as A, w as C, x as R, y as x, z as F, g as M, A as O, B as E, C as L, D as w, E as H, G as I, H as W, I as q, J as z, K as B, L as D, M as N, N as U, O as V, P as G, Q as J, R as K, S as Q, T as X, U as Y, V as _, W as Z, X as $, Y as ss } from "./mcp-server-
|
|
3
|
-
import { r as es, v as ts } from "./require-valid-todoist-token-
|
|
1
|
+
import { t as s } from "./mcp-server-BxS0NkIc.js";
|
|
2
|
+
import { F as r, a as d, b as i, c as n, d as c, e as l, f as m, h as p, i as f, j as T, k as j, l as g, m as k, n as u, o as v, p as P, q as h, r as b, s as S, u as y, v as A, w as C, x as R, y as x, z as F, g as M, A as O, B as E, C as L, D as w, E as H, G as I, H as W, I as q, J as z, K as B, L as D, M as N, N as U, O as V, P as G, Q as J, R as K, S as Q, T as X, U as Y, V as _, W as Z, X as $, Y as ss } from "./mcp-server-BxS0NkIc.js";
|
|
3
|
+
import { r as es, v as ts } from "./require-valid-todoist-token-D0hjlcRK.js";
|
|
4
4
|
const e = s;
|
|
5
5
|
export {
|
|
6
6
|
r as FEATURE_NAMES,
|
package/dist/main-http.js
CHANGED
|
@@ -3,8 +3,8 @@ import { isIP as p } from "node:net";
|
|
|
3
3
|
import O from "dotenv";
|
|
4
4
|
import { StreamableHTTPServerTransport as S } from "@modelcontextprotocol/sdk/server/streamableHttp.js";
|
|
5
5
|
import m from "express";
|
|
6
|
-
import { g as v } from "./mcp-server-
|
|
7
|
-
import { r as w } from "./require-valid-todoist-token-
|
|
6
|
+
import { g as v } from "./mcp-server-BxS0NkIc.js";
|
|
7
|
+
import { r as w } from "./require-valid-todoist-token-D0hjlcRK.js";
|
|
8
8
|
function f(t) {
|
|
9
9
|
return t.startsWith("[") && t.endsWith("]") ? t.slice(1, -1) : t;
|
|
10
10
|
}
|
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-BxS0NkIc.js";
|
|
5
5
|
function p() {
|
|
6
6
|
const e = process.env.TODOIST_BASE_URL, r = process.env.TODOIST_API_KEY;
|
|
7
7
|
if (!r)
|
|
@@ -371,7 +371,7 @@ function or(e) {
|
|
|
371
371
|
const t = Ve(e);
|
|
372
372
|
return t ? sr(t) : Bt(e);
|
|
373
373
|
}
|
|
374
|
-
const nr = "12.5.
|
|
374
|
+
const nr = "12.5.4", ar = {
|
|
375
375
|
version: nr
|
|
376
376
|
}, C = {
|
|
377
377
|
/** Default limit for task listings */
|
|
@@ -4991,7 +4991,7 @@ const ui = {
|
|
|
4991
4991
|
structuredContent: {
|
|
4992
4992
|
workspaceId: n.workspaceId,
|
|
4993
4993
|
workspaceName: n.workspaceName,
|
|
4994
|
-
folderId: a.folderId,
|
|
4994
|
+
folderId: a.folderId ?? null,
|
|
4995
4995
|
projectInsights: i
|
|
4996
4996
|
}
|
|
4997
4997
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@doist/todoist-mcp",
|
|
3
|
-
"version": "12.5.
|
|
3
|
+
"version": "12.5.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -54,6 +54,7 @@
|
|
|
54
54
|
"setup": "cp .env.example .env && npm install && npm run build",
|
|
55
55
|
"tool": "tsx scripts/run-tool.ts",
|
|
56
56
|
"tool:list": "tsx scripts/run-tool.ts --list",
|
|
57
|
+
"eval": "tsx scripts/eval-instructions.ts",
|
|
57
58
|
"test:executable": "npm run build && node scripts/test-executable.cjs",
|
|
58
59
|
"type-check": "npx tsc --noEmit",
|
|
59
60
|
"format:check": "oxlint src scripts && oxfmt --check",
|
|
@@ -64,7 +65,7 @@
|
|
|
64
65
|
"prepare": "husky"
|
|
65
66
|
},
|
|
66
67
|
"dependencies": {
|
|
67
|
-
"@doist/todoist-sdk": "
|
|
68
|
+
"@doist/todoist-sdk": "13.0.2",
|
|
68
69
|
"@modelcontextprotocol/ext-apps": "1.2.2",
|
|
69
70
|
"date-fns": "4.1.0",
|
|
70
71
|
"dompurify": "3.3.3",
|
|
@@ -84,7 +85,7 @@
|
|
|
84
85
|
"@types/dompurify": "3.2.0",
|
|
85
86
|
"@types/express": "5.0.6",
|
|
86
87
|
"@types/morgan": "1.9.10",
|
|
87
|
-
"@types/node": "22.20.
|
|
88
|
+
"@types/node": "22.20.1",
|
|
88
89
|
"@types/react": "19.2.17",
|
|
89
90
|
"@types/react-dom": "19.2.3",
|
|
90
91
|
"@vitejs/plugin-react": "5.2.0",
|
|
@@ -18,8 +18,12 @@
|
|
|
18
18
|
* inspected — so this touches no Todoist data and needs no Todoist token. It
|
|
19
19
|
* does spend money on model calls; see --repeats and --models.
|
|
20
20
|
*
|
|
21
|
-
* Auth
|
|
22
|
-
*
|
|
21
|
+
* Auth uses the Anthropic SDK's standard credential chain: either
|
|
22
|
+
* ANTHROPIC_API_KEY (a key from the Anthropic Console at platform.claude.com),
|
|
23
|
+
* or an OAuth profile created with `ant auth login` — `ant` being Anthropic's
|
|
24
|
+
* CLI, from https://github.com/anthropics/anthropic-cli. A set
|
|
25
|
+
* ANTHROPIC_API_KEY silently overrides a profile; `ant auth status` shows which
|
|
26
|
+
* one is in use. See AGENTS.md for install steps.
|
|
23
27
|
*
|
|
24
28
|
* Usage:
|
|
25
29
|
* npx tsx scripts/eval-instructions.ts [--label NAME] [--repeats N]
|