🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

@robinpath/monday

Package Overview
Dependencies
Maintainers
4
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@robinpath/monday

monday.com GraphQL API v2 — boards, items, columns. Uses the encrypted credential vault for Personal API tokens.

latest
npmnpm
Version
0.3.0
Version published
Weekly downloads
20
122.22%
Maintainers
4
Weekly downloads
 
Created
Source

@robinpath/monday

Monday.com module for RobinPath.

Category Functions Auth License

Why use this module?

The monday module lets you:

  • listBoards
  • getBoard
  • createBoard
  • listItems
  • getItem

All functions are callable directly from RobinPath scripts with a simple, consistent API.

Installation

robinpath add @robinpath/monday

Quick Start

1. Set up credentials

monday.setCredentials "your-credentials"

2. listBoards

monday.listBoards

Available Functions

FunctionDescription
monday.setCredentialsConfigure monday credentials.
monday.listBoardslistBoards
monday.getBoardgetBoard
monday.createBoardcreateBoard
monday.listItemslistItems
monday.getItemgetItem
monday.createItemcreateItem
monday.updateItemupdateItem
monday.deleteItemdeleteItem
monday.listGroupslistGroups
monday.createGroupcreateGroup
monday.listColumnslistColumns
monday.createColumncreateColumn
monday.addUpdateaddUpdate
monday.listUpdateslistUpdates
monday.listWorkspaceslistWorkspaces
monday.createSubitemcreateSubitem
monday.moveItemToGroupmoveItemToGroup
monday.archiveItemarchiveItem

Examples

listBoards

monday.listBoards

getBoard

monday.getBoard

createBoard

monday.createBoard

Integration with RobinPath

import { RobinPath } from "@wiredwp/robinpath";
import Module from "@robinpath/monday";

const rp = new RobinPath();
rp.registerModule(Module.name, Module.functions);
rp.registerModuleMeta(Module.name, Module.functionMetadata);

const result = await rp.executeScript(`
  monday.setCredentials "your-credentials"
  monday.listBoards
`);

Full API Reference

See MODULE.md for complete documentation including all parameters, return types, error handling, and advanced examples.

License

MIT

Keywords

monday

FAQs

Package last updated on 06 May 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts