Skip to content

Latest commit

 

History

History
58 lines (41 loc) · 1.27 KB

File metadata and controls

58 lines (41 loc) · 1.27 KB

openclaw-monday

OpenClaw skill for Monday.com. Reads boards, items, workspaces, and users directly via the Monday.com GraphQL API. No third-party proxy.

What it does

  • List all boards and their item counts
  • Get board details including columns and groups
  • List items on a board with column values
  • List workspaces
  • List account users

Requirements

  • Python 3 (stdlib only, no pip dependencies)
  • A Monday.com account (free tier works)
  • A Monday.com personal API token

Setup

  1. In Monday.com, click your profile picture (top right)
  2. Select Developers — opens the Developer Center in a new tab
  3. Click API token → Show
  4. Copy your personal token
  5. Set the environment variable:
export MONDAY_API_TOKEN=your_token_here

Usage

# Account info
python3 scripts/monday.py me

# List boards
python3 scripts/monday.py list-boards
python3 scripts/monday.py list-boards --limit 50

# Board details (columns, groups)
python3 scripts/monday.py get-board <board_id>

# List items on a board
python3 scripts/monday.py list-items <board_id>

# List workspaces
python3 scripts/monday.py list-workspaces

# List users
python3 scripts/monday.py list-users

Install via OpenClaw

claw install monday