@mondaydotcomorg/monday-api-mcp 0.1.1 → 0.1.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.
- package/CHANGELOG.md +0 -0
- package/README.md +17 -0
- package/package.json +11 -3
package/CHANGELOG.md
ADDED
|
File without changes
|
package/README.md
CHANGED
|
@@ -33,6 +33,23 @@ A server implementation for the [Model Context Protocol (MCP)](https://modelcont
|
|
|
33
33
|
}
|
|
34
34
|
```
|
|
35
35
|
|
|
36
|
+
### Example Integration with Claude Desktop
|
|
37
|
+
|
|
38
|
+
```json
|
|
39
|
+
{
|
|
40
|
+
"mcpServers": {
|
|
41
|
+
"monday-api-mcp": {
|
|
42
|
+
"command": "npx",
|
|
43
|
+
"args": [
|
|
44
|
+
"@mondaydotcomorg/monday-api-mcp",
|
|
45
|
+
"-t",
|
|
46
|
+
"abcd123"
|
|
47
|
+
]
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
```
|
|
52
|
+
|
|
36
53
|
## License
|
|
37
54
|
|
|
38
55
|
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mondaydotcomorg/monday-api-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "MCP server for using the monday.com API",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -13,7 +13,10 @@
|
|
|
13
13
|
"scripts": {
|
|
14
14
|
"build": "tsc && shx chmod +x dist/*.js",
|
|
15
15
|
"watch": "tsc --watch",
|
|
16
|
-
"start": "
|
|
16
|
+
"start": "yarn build && node dist/index.js",
|
|
17
|
+
"test": "node --experimental-vm-modules ../../node_modules/jest/bin/jest.js --config jest.config.js",
|
|
18
|
+
"prettier": "prettier --write \"lib/**/*.ts\" --ignore-path \"../../.prettierignore\"",
|
|
19
|
+
"lint": "eslint --fix \"lib/**/*.ts\" --ignore-path \"../../.eslintignore\""
|
|
17
20
|
},
|
|
18
21
|
"repository": {
|
|
19
22
|
"type": "git",
|
|
@@ -21,10 +24,15 @@
|
|
|
21
24
|
},
|
|
22
25
|
"dependencies": {
|
|
23
26
|
"@modelcontextprotocol/sdk": "^1.7.0",
|
|
24
|
-
"@mondaydotcomorg/agent-toolkit": "
|
|
27
|
+
"@mondaydotcomorg/agent-toolkit": "workspace:*"
|
|
25
28
|
},
|
|
26
29
|
"devDependencies": {
|
|
30
|
+
"@types/jest": "^29.5.12",
|
|
31
|
+
"eslint": "^8.56.0",
|
|
32
|
+
"jest": "^29.7.0",
|
|
33
|
+
"prettier": "^3.2.4",
|
|
27
34
|
"shx": "^0.3.4",
|
|
35
|
+
"ts-jest": "^29.3.1",
|
|
28
36
|
"typescript": "^5.6.2"
|
|
29
37
|
}
|
|
30
38
|
}
|