monday_list_boards
Pack: monday · Endpoint: https://gateway.pipeworx.io/monday/mcp
List all boards in your account. Returns board ID, name, state, and item count to discover available boards.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
_apiKey | string | yes | Monday.com API token |
limit | number | no | Number of boards to return (default 20, max 50) |
Example call
Arguments
{
"_apiKey": "your-monday-api-key"
}
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_boards","arguments":{"_apiKey":"your-monday-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('monday_list_boards', {
"_apiKey": "your-monday-api-key"
});
More examples
{
"_apiKey": "your-monday-api-key",
"limit": 50
}
Response shape
Always returns: boards
| Field | Type | Description |
|---|---|---|
boards | array | List of boards in the account |
Full JSON Schema
{
"type": "object",
"properties": {
"boards": {
"type": "array",
"description": "List of boards in the account",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Board ID"
},
"name": {
"type": "string",
"description": "Board name"
},
"state": {
"type": "string",
"description": "Board state"
},
"board_kind": {
"type": "string",
"description": "Kind of board"
},
"items_count": {
"type": "number",
"description": "Number of items in board"
},
"updated_at": {
"type": "string",
"description": "Last update timestamp"
}
}
}
}
},
"required": [
"boards"
]
}
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.