Superglue tools for Monday.com: boards, items, groups, columns (GraphQL).
Use the Download Config or Copy Config buttons in the table below (placeholders for now). Paste or save the JSON into your project.
We use API keys, not OAuth, for this integration. Create an API token in your Monday.com Account > Admin > API. Add MONDAY_API_TOKEN and optionally MONDAY_API_URL to your environment variables. Set Authorization: ${MONDAY_API_TOKEN} header. See official docs: Monday.com API Authentication
npm install @superglue/client
The SDK executes the JSON workflow locally with your env credentials; no additional API key UI needed.
The SDK runs the downloaded JSON config locally (GraphQL endpoint https://api.monday.com/v2 with Bearer token).
import { SuperglueClient } from "@superglue/client";
import config from "./monday_list_boards.json"; // or paste JSON string
const client = new SuperglueClient();
async function run() {
const result = await client.run(config, {
env: {
MONDAY_API_TOKEN: process.env.MONDAY_API_TOKEN!,
MONDAY_API_URL: process.env.MONDAY_API_URL || "https://api.monday.com/v2",
SUPERGLUE_REDIRECT_URI: process.env.SUPERGLUE_REDIRECT_URI || "https://app.superglue.cloud/api/auth/callback"
}
});
console.log(JSON.stringify(result, null, 2));
}
run();
| Tool | Actions |
|---|---|
![]() monday_list_boardsList all boards. 👥 1,160 users
|
|
![]() monday_get_board_itemsFetch items for a board (paginated). 👥 1,128 users
|
|
![]() monday_create_itemCreate an item in board/group. 👥 1,095 users
|
|
![]() monday_update_itemUpdate item column values. 👥 1,052 users
|
|
![]() monday_list_groupsList groups in a board. 👥 1,018 users
|
|
![]() monday_get_column_valuesGet board column metadata. 👥 998 users
|
|
![]() monday_archive_itemArchive an item. 👥 971 users
|
|