- name
- monday
- description
- Read and query Monday.com boards, items, workspaces, and users directly via the Monday.com GraphQL API. Use when you need project/task data, board contents, or team info. Calls api.monday.com directly with no third-party proxy.
- metadata
- openclaw
- requires
- env
- bins
- primaryEnv
- MONDAY_API_TOKEN
- files
Monday.com
Read boards, items, and workspaces directly via api.monday.com (GraphQL).
Setup (one-time)
- In Monday.com, click your profile picture (top right)
- Select Developers — this opens the Developer Center
- Click API token → Show
- Copy your personal token
- Set the environment variable:
MONDAY_API_TOKEN=your_token_hereCommands
Get your account info
python3 /mnt/skills/user/monday/scripts/monday.py meList all boards
python3 /mnt/skills/user/monday/scripts/monday.py list-boards
python3 /mnt/skills/user/monday/scripts/monday.py list-boards --limit 50Get board details (columns, groups)
python3 /mnt/skills/user/monday/scripts/monday.py get-board <board_id>List items on a board
python3 /mnt/skills/user/monday/scripts/monday.py list-items <board_id>
python3 /mnt/skills/user/monday/scripts/monday.py list-items <board_id> --limit 50List workspaces
python3 /mnt/skills/user/monday/scripts/monday.py list-workspacesList users
python3 /mnt/skills/user/monday/scripts/monday.py list-usersNotes
- Free plan: 2 seats, unlimited boards. API access works on free.
- Board IDs are numeric — find them in the board URL or via
list-boards. - Monday uses GraphQL only (single endpoint). No REST API.
- API version pinned to
2024-04.