Skip to content

Commit 0bf1850

Browse files
waleedlatif1claude
andcommitted
fix(monday): align list_boards limit description with code (max 500)
The param description said "max 100" but sanitizeLimit caps at 500, which is what Monday.com's API supports for boards. Updated both the tool description and docs to say "max 500". Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 24a5c8a commit 0bf1850

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/docs/content/docs/en/tools/monday.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ List boards from your Monday.com account
2626

2727
| Parameter | Type | Required | Description |
2828
| --------- | ---- | -------- | ----------- |
29-
| `limit` | number | No | Maximum number of boards to return \(default 25, max 100\) |
29+
| `limit` | number | No | Maximum number of boards to return \(default 25, max 500\) |
3030
| `page` | number | No | Page number for pagination \(starts at 1\) |
3131

3232
#### Output

apps/sim/tools/monday/list_boards.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export const mondayListBoardsTool: ToolConfig<MondayListBoardsParams, MondayList
2929
type: 'number',
3030
required: false,
3131
visibility: 'user-or-llm',
32-
description: 'Maximum number of boards to return (default 25, max 100)',
32+
description: 'Maximum number of boards to return (default 25, max 500)',
3333
},
3434
page: {
3535
type: 'number',

0 commit comments

Comments
 (0)