@mondaydotcomorg/monday-api-mcp 1.12.1 → 1.12.2

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 +6 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -56,6 +56,8 @@ npx @mondaydotcomorg/monday-api-mcp@latest -t abcd123 -m atp
56
56
  | Environment Variable | Description | Required |
57
57
  |---------------------|-------------|----------|
58
58
  | `MONDAY_ATP_PORT` | Specify a fixed port for the ATP server (1-65535). If not set, a random available port will be used. | No |
59
+ | `NODE_OPTIONS` | Node.js runtime options. Set to `--no-node-snapshot` for compatibility. | Yes |
60
+ | `ATP_JWT_SECRET` | JWT secret for ATP authentication. Must be set but currently not used (e.g., `ignore`). | Yes |
59
61
 
60
62
  ### Cursor Integration (ATP Mode)
61
63
 
@@ -71,7 +73,10 @@ npx @mondaydotcomorg/monday-api-mcp@latest -t abcd123 -m atp
71
73
  "-m",
72
74
  "atp"
73
75
  ],
74
- "env": {}
76
+ "env": {
77
+ "NODE_OPTIONS": "--no-node-snapshot",
78
+ "ATP_JWT_SECRET": "ignore"
79
+ }
75
80
  }
76
81
  }
77
82
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mondaydotcomorg/monday-api-mcp",
3
- "version": "1.12.1",
3
+ "version": "1.12.2",
4
4
  "description": "MCP server for using the monday.com API",
5
5
  "mcpName": "com.monday/monday.com",
6
6
  "license": "MIT",