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.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/codeninja23/native-mondayMonday.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_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.
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-codeninja23-native-monday": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
sentry
Read Sentry issues, events, and production errors via the Sentry REST API. Use when the user wants to inspect errors, list recent issues, get stack traces, or summarize production health. Requires SENTRY_AUTH_TOKEN with read-only scopes.
hubspot
Query and manage HubSpot CRM data via the HubSpot API. Use when you need to search or manage contacts, companies, deals, tickets, or pipelines. Supports creating, updating, and associating CRM objects. Calls api.hubapi.com directly with no third-party proxy.
clawpod
Read any website or search Google, even when sites block bots or are geo-restricted. Handles CAPTCHAs, JavaScript rendering, and anti-bot protection server-side via residential proxies. Returns HTML or structured JSON.
stripe
Query and manage Stripe data via the Stripe API. Use when you need to list charges, customers, invoices, subscriptions, payment intents, refunds, products, or prices. Supports filtering, pagination, and creating/updating customers and refunds. Calls api.stripe.com directly with no third-party proxy.
google-analytics
Query Google Analytics 4 (GA4) data directly via the Analytics Data API. Use when you need website analytics like top pages, traffic sources, sessions, users, conversions, bounce rate, or any GA4 metrics and dimensions. Supports custom date ranges, filtering, and multi-metric queries. Calls analyticsdata.googleapis.com directly with no third-party proxy.