@mondaydotcomorg/monday-api-mcp 1.4.1 → 1.5.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 +9 -9
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
<div align="center" id="top">
|
|
2
2
|
|
|
3
|
-
#
|
|
3
|
+
# monday.com API MCP Server
|
|
4
4
|
|
|
5
5
|
</div>
|
|
6
6
|
|
|
7
|
-
A server implementation for the [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) that provides an interface to interact with
|
|
7
|
+
A server implementation for the [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) that provides an interface to interact with monday.com API.
|
|
8
8
|
|
|
9
9
|
## 💻 Claude Desktop Demo
|
|
10
10
|
|
|
@@ -21,17 +21,17 @@ Before running the MCP server, make sure you have:
|
|
|
21
21
|
## ⚙️ Usage
|
|
22
22
|
|
|
23
23
|
```bash
|
|
24
|
-
npx @mondaydotcomorg/monday-api-mcp -t abcd123
|
|
24
|
+
npx @mondaydotcomorg/monday-api-mcp@latest -t abcd123
|
|
25
25
|
```
|
|
26
26
|
|
|
27
|
-
The
|
|
27
|
+
The monday.com API token can also be provided via the `monday_token` environment variable.
|
|
28
28
|
|
|
29
29
|
### Command Line Arguments
|
|
30
30
|
|
|
31
31
|
| Argument | Flags | Description | Required | Default |
|
|
32
32
|
|----------|-------|-------------|----------|---------|
|
|
33
|
-
|
|
|
34
|
-
| API Version | `--version`, `-v` |
|
|
33
|
+
| monday.com API Token | `--token`, `-t` | monday.com API token (can also be provided via `monday_token` environment variable) | Yes | - |
|
|
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
36
|
| 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
37
|
|
|
@@ -43,7 +43,7 @@ The Monday API token can also be provided via the `monday_token` environment var
|
|
|
43
43
|
"monday-api-mcp": {
|
|
44
44
|
"command": "npx",
|
|
45
45
|
"args": [
|
|
46
|
-
"@mondaydotcomorg/monday-api-mcp",
|
|
46
|
+
"@mondaydotcomorg/monday-api-mcp@latest",
|
|
47
47
|
"-t",
|
|
48
48
|
"abcd123"
|
|
49
49
|
]
|
|
@@ -62,7 +62,7 @@ The Monday API token can also be provided via the `monday_token` environment var
|
|
|
62
62
|
"monday-api-mcp": {
|
|
63
63
|
"command": "npx",
|
|
64
64
|
"args": [
|
|
65
|
-
"@mondaydotcomorg/monday-api-mcp",
|
|
65
|
+
"@mondaydotcomorg/monday-api-mcp@latest",
|
|
66
66
|
"-t",
|
|
67
67
|
"abcd123"
|
|
68
68
|
],
|
|
@@ -80,7 +80,7 @@ The Monday API token can also be provided via the `monday_token` environment var
|
|
|
80
80
|
"monday-api-mcp": {
|
|
81
81
|
"command": "npx",
|
|
82
82
|
"args": [
|
|
83
|
-
"@mondaydotcomorg/monday-api-mcp"
|
|
83
|
+
"@mondaydotcomorg/monday-api-mcp@latest"
|
|
84
84
|
],
|
|
85
85
|
"env": {
|
|
86
86
|
"monday_token": "abcd123"
|
package/package.json
CHANGED