OpenClaw skill for Monday.com. Reads boards, items, workspaces, and users directly via the Monday.com GraphQL API. No third-party proxy.
- 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
- Python 3 (stdlib only, no pip dependencies)
- A Monday.com account (free tier works)
- A Monday.com personal API token
- In Monday.com, click your profile picture (top right)
- Select Developers — opens the Developer Center in a new tab
- Click API token → Show
- Copy your personal token
- Set the environment variable:
export MONDAY_API_TOKEN=your_token_here# 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-usersclaw install monday