TopRank Skills

Home / Claw Skills / API 集成 / monday
Official OpenClaw rules 54%

monday

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.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 monday 技能。 若已安装,则直接安装 monday 技能。

Overview

Skill Key
codeninja23/native-monday
Author
codeninja23
Source Repo
openclaw/skills
Version
-
Source Path
skills/codeninja23/native-monday
Latest Commit SHA
15145b77b823276401e318df3797e0029f6adaf0

Extracted Content

SKILL.md excerpt

# Monday.com

Read boards, items, and workspaces directly via `api.monday.com` (GraphQL).

## Setup (one-time)

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

## Commands

### Get your account info
```bash
python3 /mnt/skills/user/monday/scripts/monday.py me
```

### List all boards
```bash
python3 /mnt/skills/user/monday/scripts/monday.py list-boards
python3 /mnt/skills/user/monday/scripts/monday.py list-boards --limit 50
```

### Get board details (columns, groups)
```bash
python3 /mnt/skills/user/monday/scripts/monday.py get-board <board_id>
```

### List items on a board
```bash
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 50
```

### List workspaces
```bash
python3 /mnt/skills/user/monday/scripts/monday.py list-workspaces
```

### List users
```bash
python3 /mnt/skills/user/monday/scripts/monday.py list-users
```

## Notes

- 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`.

Related Claw Skills