@torsday/omnifocus-mcp 1.2.2 → 1.3.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +43 -0
  2. package/dist/index.js +1144 -624
  3. package/package.json +7 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@torsday/omnifocus-mcp",
3
- "version": "1.2.2",
3
+ "version": "1.3.0",
4
4
  "description": "MCP server exposing the full OmniFocus surface to LLM agents — 80 typed tools spanning tasks, projects, tags, folders, perspectives, forecast, review, notes, attachments, and sync, with a strict typed-error taxonomy and per-tool circuit breakers, rate limiter, and idempotency-key support. macOS-only; talks to OmniFocus 4 via JXA + OmniJS.",
5
5
  "keywords": [
6
6
  "mcp",
@@ -47,14 +47,14 @@
47
47
  },
48
48
  "dependencies": {
49
49
  "@modelcontextprotocol/sdk": "^1.4.0",
50
- "lru-cache": "^11.3.5",
50
+ "lru-cache": "^11.3.6",
51
51
  "pino": "^10.3.1",
52
52
  "ulid": "^3.0.2",
53
- "zod": "^4.3.6",
53
+ "zod": "^4.4.3",
54
54
  "zod-to-json-schema": "^3.25.2"
55
55
  },
56
56
  "devDependencies": {
57
- "@biomejs/biome": "^2.4.13",
57
+ "@biomejs/biome": "^2.4.14",
58
58
  "@stryker-mutator/core": "^9.6.1",
59
59
  "@stryker-mutator/typescript-checker": "^9.6.1",
60
60
  "@stryker-mutator/vitest-runner": "^9.6.1",
@@ -85,9 +85,11 @@
85
85
  "format": "biome format --write .",
86
86
  "test": "vitest run",
87
87
  "test:watch": "vitest",
88
- "test:integration": "OMNIFOCUS_INTEGRATION=1 vitest run tests/integration",
88
+ "test:integration": "OMNIFOCUS_INTEGRATION=1 vitest run tests/integration --testTimeout=90000",
89
89
  "test:perf": "OMNIFOCUS_PERF=1 vitest run tests/perf",
90
90
  "test:e2e": "OMNIFOCUS_E2E=1 vitest run tests/e2e",
91
+ "test:bench:tokens": "OMNIFOCUS_BENCH=1 vitest run tests/benchmark/token-cost",
92
+ "bench:tokens": "tsx tests/benchmark/token-cost/cli.ts",
91
93
  "mutation": "stryker run"
92
94
  }
93
95
  }