View as Markdown

Monday.com Integration

Manage Monday.com boards, items, columns, and updates

The Monday.com integration provides access to manage Monday.com boards, items, columns, and updates through the Integrate MCP server.

Installation

The Monday.com integration is included with the SDK:

import { mondayIntegration } from "integrate-sdk/server";

Setup

1. Create a Monday.com OAuth App

  1. Go to Auth Developer Portal
  2. Create a new OAuth application
  3. Configure your redirect URI
  4. Note your Client ID and Client Secret

2. Configure the Integration on Your Server

Add the Monday.com integration to your server configuration. The integration automatically reads MONDAY_CLIENT_ID and MONDAY_CLIENT_SECRET from your environment variables:

import { createMCPServer, mondayIntegration } from "integrate-sdk/server";
 
export const { client: serverClient } = createMCPServer({
  apiKey: process.env.INTEGRATE_API_KEY,
  integrations: [
    mondayIntegration({
    }),
  ],
});

You can override the environment variables by passing explicit values:

mondayIntegration({
  clientId: process.env.CUSTOM_MONDAY_ID,
  clientSecret: process.env.CUSTOM_MONDAY_SECRET,
});

3. Client-Side Usage

The default client automatically includes all integrations. You can use it directly:

import { client } from "integrate-sdk";
 
await client.authorize("monday");
const result = await client.monday.me({});
 
console.log(result);

If you're using a custom client, add the integration to the integrations array:

import { createMCPClient, mondayIntegration } from "integrate-sdk";
 
const customClient = createMCPClient({
  integrations: [mondayIntegration()],
});

Configuration Options

export interface MondayIntegrationConfig {
  /** OAuth client ID (defaults to MONDAY_CLIENT_ID) */
  clientId?: string;

Tools

monday_me

Me

No parameters.

monday_list_workspaces

List workspaces

No parameters.

monday_list_boards

List boards

export interface MondayListBoardsParams { workspace_ids?: string;

monday_get_board

Get board

export interface MondayGetBoardParams { board_id: string }

monday_list_board_items

List board items

export interface MondayListBoardItemsParams { board_id: string;

monday_next_items_page

Next items page

export interface MondayNextItemsPageParams { cursor: string }

monday_get_items

Get items

export interface MondayGetItemsParams { item_ids: string }

monday_create_item

Create item

export interface MondayCreateItemParams {
    board_id: string;

monday_update_item_columns

Update item columns

export interface MondayUpdateItemColumnsParams {
    board_id: string;

monday_create_update

Create update

export interface MondayCreateUpdateParams { item_id: string;

monday_delete_item

Delete item

export interface MondayDeleteItemParams { item_id: string }

Notes

  • Category: Productivity
  • Authentication mode: OAuth