@torsday/omnifocus-mcp 1.3.0 → 1.5.3

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 (4) hide show
  1. package/CHANGELOG.md +205 -22
  2. package/README.md +30 -727
  3. package/dist/index.js +406 -264
  4. package/package.json +11 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@torsday/omnifocus-mcp",
3
- "version": "1.3.0",
3
+ "version": "1.5.3",
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",
@@ -77,13 +77,20 @@
77
77
  "build:calendar-bridge:all": "bash scripts/build-calendar-bridge.sh --all",
78
78
  "dev": "tsx watch src/index.ts",
79
79
  "typecheck": "tsc --noEmit",
80
- "docs:generate": "tsx scripts/generate-tool-docs.ts",
81
- "docs:check": "tsx scripts/generate-tool-docs.ts --check",
82
- "lint": "biome check . && tsx scripts/lint-custom.ts && tsx scripts/verify-nl-quality.ts && pnpm run docs:check",
80
+ "docs:generate": "tsx scripts/generate-tool-docs.ts && tsx scripts/generate-tool-index.ts && tsx scripts/generate-scripts-index.ts",
81
+ "docs:generate-index": "tsx scripts/generate-tool-index.ts",
82
+ "docs:generate-scripts": "tsx scripts/generate-scripts-index.ts",
83
+ "docs:check": "tsx scripts/generate-tool-docs.ts --check && tsx scripts/generate-tool-index.ts --check && tsx scripts/generate-scripts-index.ts --check",
84
+ "docs:check-index": "tsx scripts/generate-tool-index.ts --check",
85
+ "docs:check-scripts": "tsx scripts/generate-scripts-index.ts --check",
86
+ "lint": "biome check . && tsx scripts/lint-custom.ts && tsx scripts/verify-nl-quality.ts && tsx scripts/lint-doc-sizes.ts && pnpm run docs:check",
83
87
  "lint:custom": "tsx scripts/lint-custom.ts",
88
+ "lint:docs": "tsx scripts/lint-doc-sizes.ts",
84
89
  "lint:nl-quality": "tsx scripts/verify-nl-quality.ts",
85
90
  "format": "biome format --write .",
86
91
  "test": "vitest run",
92
+ "test:quiet": "VITEST_REPORTER=dot vitest run",
93
+ "test:loud": "VITEST_REPORTER=verbose vitest run",
87
94
  "test:watch": "vitest",
88
95
  "test:integration": "OMNIFOCUS_INTEGRATION=1 vitest run tests/integration --testTimeout=90000",
89
96
  "test:perf": "OMNIFOCUS_PERF=1 vitest run tests/perf",