Native Monday

v0.1.0

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

3· 521·3 current·3 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for codeninja23/native-monday.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Native Monday" (codeninja23/native-monday) from ClawHub.
Skill page: https://clawhub.ai/codeninja23/native-monday
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required env vars: MONDAY_API_TOKEN
Required binaries: python3
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install native-monday

ClawHub CLI

Package manager switcher

npx clawhub@latest install native-monday
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description: direct Monday.com GraphQL access. Declared requirements: python3 and MONDAY_API_TOKEN. The script only calls api.monday.com and exposes board/workspace/user queries — these requirements are proportionate to the stated purpose.
Instruction Scope
SKILL.md instructs running the included Python script against api.monday.com and to set MONDAY_API_TOKEN. The script only reads that env var, issues GraphQL requests, and prints results. It does not read unrelated files, other env vars, or transmit data to external endpoints beyond api.monday.com.
Install Mechanism
No install spec (instruction-only with an included script). No downloads or external package installs — lowest-risk distribution method.
Credentials
Only MONDAY_API_TOKEN is required and is used as the Authorization header for calls to api.monday.com. No unrelated credentials, secrets, or config paths are requested.
Persistence & Privilege
always is false and the skill does not request persistent or system-wide privileges. It does not modify other skills or system configs.
Assessment
This skill appears to do exactly what it says: run a small Python script that uses your MONDAY_API_TOKEN to query api.monday.com. Before installing, confirm you are comfortable providing a Monday personal/API token to the agent (tokens grant access to your account data). Use a token with least privilege possible, rotate/revoke it if needed, and run the skill in an environment where network traffic to api.monday.com is allowed and monitored. If you need stronger assurance, review the included scripts/monday.py yourself (it is short and readable) or run it locally rather than granting the agent autonomous access.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

Binspython3
EnvMONDAY_API_TOKEN
Primary envMONDAY_API_TOKEN
latestvk970qe01mqeha6j5hmw5y7seh181r1ve
521downloads
3stars
1versions
Updated 2mo ago
v0.1.0
MIT-0

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

python3 /mnt/skills/user/monday/scripts/monday.py me

List all boards

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)

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 50

List workspaces

python3 /mnt/skills/user/monday/scripts/monday.py list-workspaces

List users

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.

Comments

Loading comments...