monday_list_boards

Pack: monday · Endpoint: https://gateway.pipeworx.io/monday/mcp

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/monday_list_boards for the schema, then POST the same URL with its arguments for the data.

List all boards in your account. Returns board ID, name, state, and item count to discover available boards.

Parameters

NameTypeRequiredDescription
_apiKeystringyesMonday.com API token
limitnumbernoNumber 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

FieldTypeDescription
boardsarrayList 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.

Regenerated from source · build September 22, 2026