Loading...
Loading...
Monday integration. Manage project management data, records, and workflows. Use when the user wants to interact with Monday data.
npx skill4agent add membranedev/application-skills mondaymembranenpm install -g @membranehq/climembrane login --tenantmembrane login complete <code>membrane search monday --elementType=connector --jsonoutput.items[0].element?.idmembrane connect --connectorId=CONNECTOR_ID --jsonmembrane connection list --jsonconnectionIdmembrane action list --intent=QUERY --connectionId=CONNECTION_ID --json| Name | Key | Description |
|---|---|---|
| List Boards | list-boards | Retrieves a list of boards from Monday.com |
| List Items | list-items | Retrieves items from a board with pagination support |
| List Users | list-users | Retrieves a list of users in the account |
| List Updates | list-updates | List updates (comments) for a specific item or across boards |
| Get Board | get-board | Retrieves a specific board by ID with its groups and columns |
| Get Item | get-item | Retrieves a specific item by ID |
| Get Item Updates | get-item-updates | Get updates (comments) for a specific item |
| Get Current User | get-current-user | Retrieves the current authenticated user's information |
| Create Board | create-board | Creates a new board in Monday.com |
| Create Item | create-item | Creates a new item on a board |
| Create Group | create-group | Creates a new group on a board |
| Create Update | create-update | Create an update (comment) on an item |
| Create Column | create-column | Creates a new column on a board |
| Update Board | update-board | Updates board attributes like name or description |
| Update Item Column Values | update-item-column-values | Updates multiple column values on an item |
| Update Group | update-group | Updates a group's title, color, or position |
| Delete Board | delete-board | Permanently deletes a board from Monday.com |
| Delete Item | delete-item | Permanently deletes an item from a board |
| Delete Group | delete-group | Permanently deletes a group and all its items |
| Delete Update | delete-update | Delete an update (comment) |
membrane action run --connectionId=CONNECTION_ID ACTION_ID --jsonmembrane action run --connectionId=CONNECTION_ID ACTION_ID --json --input "{ \"key\": \"value\" }"membrane request CONNECTION_ID /path/to/endpoint| Flag | Description |
|---|---|
| HTTP method (GET, POST, PUT, PATCH, DELETE). Defaults to GET |
| Add a request header (repeatable), e.g. |
| Request body (string) |
| Shorthand to send a JSON body and set |
| Send the body as-is without any processing |
| Query-string parameter (repeatable), e.g. |
| Path parameter (repeatable), e.g. |
membrane action list --intent=QUERY