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
- Go to Auth Developer Portal
- Create a new OAuth application
- Configure your redirect URI
- 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
Prop
Type
Tools
monday_me
Me
No parameters.
monday_list_workspaces
List workspaces
No parameters.
monday_list_boards
List boards
Prop
Type
monday_get_board
Get board
Prop
Type
monday_list_board_items
List board items
Prop
Type
monday_next_items_page
Next items page
Prop
Type
monday_get_items
Get items
Prop
Type
monday_create_item
Create item
Prop
Type
monday_update_item_columns
Update item columns
Prop
Type
monday_create_update
Create update
Prop
Type
monday_delete_item
Delete item
Prop
Type
Notes
- Category: Productivity
- Authentication mode: OAuth