omnifocus-mcp-server 1.0.0 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +55 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -38,6 +38,61 @@ Or add to `.claude/settings.json`:
38
38
  }
39
39
  ```
40
40
 
41
+ ### Cursor
42
+
43
+ Add to `.cursor/mcp.json` in your project or `~/.cursor/mcp.json` globally:
44
+
45
+ ```json
46
+ {
47
+ "mcpServers": {
48
+ "omnifocus": {
49
+ "command": "npx",
50
+ "args": ["-y", "omnifocus-mcp-server"]
51
+ }
52
+ }
53
+ }
54
+ ```
55
+
56
+ ### Windsurf
57
+
58
+ Add to `~/.codeium/windsurf/mcp_config.json`:
59
+
60
+ ```json
61
+ {
62
+ "mcpServers": {
63
+ "omnifocus": {
64
+ "command": "npx",
65
+ "args": ["-y", "omnifocus-mcp-server"]
66
+ }
67
+ }
68
+ }
69
+ ```
70
+
71
+ ### Codex CLI
72
+
73
+ Add to `~/.codex/config.toml`:
74
+
75
+ ```toml
76
+ [mcp_servers.omnifocus]
77
+ command = "npx"
78
+ args = ["-y", "omnifocus-mcp-server"]
79
+ ```
80
+
81
+ ### Gemini CLI
82
+
83
+ Add to `~/.gemini/settings.json`:
84
+
85
+ ```json
86
+ {
87
+ "mcpServers": {
88
+ "omnifocus": {
89
+ "command": "npx",
90
+ "args": ["-y", "omnifocus-mcp-server"]
91
+ }
92
+ }
93
+ }
94
+ ```
95
+
41
96
  ## Requirements
42
97
 
43
98
  - macOS (OmniFocus is macOS-only)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "omnifocus-mcp-server",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "MCP server for OmniFocus via Omni Automation API",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",