monday_list_items
Pack: monday · Endpoint: https://gateway.pipeworx.io/monday/mcp
List items in a board (e.g., board ID “12345”). Returns item ID, name, group, column values, and created date.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
_apiKey | string | yes | Monday.com API token |
board_id | string | yes | Board ID |
limit | number | no | Number of items to return (default 20, max 50) |
Example call
Arguments
{
"_apiKey": "your-monday-api-key",
"board_id": "12345"
}
curl
curl -X POST https://gateway.pipeworx.io/monday/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"monday_list_items","arguments":{"_apiKey":"your-monday-api-key","board_id":"12345"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('monday_list_items', {
"_apiKey": "your-monday-api-key",
"board_id": "12345"
});
More examples
{
"_apiKey": "your-monday-api-key",
"board_id": "12345",
"limit": 30
}
Response shape
Always returns: items
| Field | Type | Description |
|---|---|---|
items | array | Items in the board |
Full JSON Schema
{
"type": "object",
"properties": {
"items": {
"type": "array",
"description": "Items in the board",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Item ID"
},
"name": {
"type": "string",
"description": "Item name"
},
"group": {
"type": "object",
"description": "Item group",
"properties": {
"id": {
"type": "string",
"description": "Group ID"
},
"title": {
"type": "string",
"description": "Group title"
}
}
},
"column_values": {
"type": "array",
"description": "Column values for the item",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Column ID"
},
"text": {
"type": "string",
"description": "Column value text"
},
"type": {
"type": "string",
"description": "Column type"
}
}
}
},
"created_at": {
"type": "string",
"description": "Item creation timestamp"
},
"updated_at": {
"type": "string",
"description": "Last update timestamp"
}
}
}
}
},
"required": [
"items"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"monday": {
"url": "https://gateway.pipeworx.io/monday/mcp"
}
}
}
See Getting Started for client-specific install steps.