@mondaydotcomorg/monday-api-mcp 1.12.7 → 1.12.8
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/dist/domains/atp/atp.consts.js +1 -0
- package/dist/lib.js +2 -0
- package/package.json +2 -1
|
@@ -54,6 +54,7 @@ const statusCol = board.columns.find(c => c.title === 'Status')?.id;
|
|
|
54
54
|
// 3. Paginate items
|
|
55
55
|
let cursor = board.items_page.cursor;
|
|
56
56
|
const allItems = [];
|
|
57
|
+
// if need to get all the items, use while loop instead
|
|
57
58
|
for (let page = 0; page < 20; page++) {
|
|
58
59
|
if (!cursor) break;
|
|
59
60
|
const result = await api.monday.query_next_items_page({
|
package/dist/lib.js
ADDED
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mondaydotcomorg/monday-api-mcp",
|
|
3
|
-
"version": "1.12.
|
|
3
|
+
"version": "1.12.8",
|
|
4
4
|
"description": "MCP server for using the monday.com API",
|
|
5
5
|
"mcpName": "com.monday/monday.com",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"bin": {
|
|
8
8
|
"mcp-server-monday-api": "dist/index.js"
|
|
9
9
|
},
|
|
10
|
+
"main": "dist/lib.js",
|
|
10
11
|
"files": [
|
|
11
12
|
"dist"
|
|
12
13
|
],
|