@mondaydotcomorg/monday-api-mcp 1.7.0 → 1.9.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.
- package/README.md +1 -0
- package/dist/utils/args/args.config.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -33,6 +33,7 @@ The monday.com API token can also be provided via the `monday_token` environment
|
|
|
33
33
|
| monday.com API Token | `--token`, `-t` | monday.com API token (can also be provided via `monday_token` environment variable) | Yes | - |
|
|
34
34
|
| API Version | `--version`, `-v` | monday.com API version | No | `current` |
|
|
35
35
|
| Read Only Mode | `--read-only`, `-ro` | Enable read-only mode | No | `false` |
|
|
36
|
+
| Monday apps Tools | `--mode`, `-m` | Set the mode for tool selection: "api" - API tools only, "apps" - (Beta) Monday Apps tools only | No | `api` |
|
|
36
37
|
| Dynamic API Tools | `--enable-dynamic-api-tools`, `-edat` | (Beta) Enable dynamic API tools (Mode that includes the whole API schema, not supported when using read-only mode) | No | `false` |
|
|
37
38
|
|
|
38
39
|
## 💻 Claude Desktop Integration
|
|
@@ -25,7 +25,7 @@ exports.ARG_CONFIGS = [
|
|
|
25
25
|
{
|
|
26
26
|
name: 'mode',
|
|
27
27
|
flags: ['--mode', '-m'],
|
|
28
|
-
description: 'Set the mode for tool selection: "api"
|
|
28
|
+
description: 'Set the mode for tool selection: "api" - API tools only, "apps" - (Beta) Monday Apps tools only',
|
|
29
29
|
required: false,
|
|
30
30
|
defaultValue: 'api',
|
|
31
31
|
},
|