Back to MCP Catalog

Monday.com Integration MCP Server

Customer Data PlatformsPython
Interact with Monday.com boards, items, updates, and documents
Available Tools

monday-create-item

Creates a new item or sub-item in a Monday.com board

monday-get-board-groups

Retrieves all groups from a specified Monday.com board

monday-create-update

Creates a comment/update on a Monday.com item

monday-list-boards

Lists all available Monday.com boards

monday-list-items-in-groups

Lists all items in specified groups of a Monday.com board

monday-list-subitems-in-items

Lists all sub-items for given Monday.com items

monday-create-board

Creates a new Monday.com board

monday-create-board-group

Creates a new group in a Monday.com board

monday-move-item-to-group

Moves a Monday.com item to a different group

monday-delete-item

Deletes a Monday.com item

monday-archive-item

Archives a Monday.com item

monday-get-item-updates

Retrieves updates/comments for a specific item

monday-get-docs

Lists documents in Monday.com, optionally filtered by folder

monday-get-doc-content

Retrieves the content of a specific document

monday-create-doc

Creates a new document in Monday.com

monday-add-doc-block

Adds a block to an existing document

This MCP server provides a comprehensive interface to Monday.com's functionality, allowing you to manage boards, items, updates, and documents directly through Claude. Create and manage boards, add items and sub-items, organize content into groups, and work with Monday.com documents - all without leaving your AI assistant. With this integration, you can automate Monday.com workflows, quickly retrieve information from your workspace, and maintain your project management system efficiently. The server supports a wide range of operations from basic item creation to document management, making it a powerful tool for teams using Monday.com.

Overview

The Monday.com MCP server enables Claude to interact with your Monday.com workspace, providing access to boards, items, updates, and documents. This integration streamlines project management workflows by allowing you to manage your Monday.com content directly through Claude.

Prerequisites

Before using this MCP server, you'll need:

  1. A Monday.com account with an active workspace
  2. A Monday.com API token (personal access token)
  3. Your Monday.com workspace name

Getting Your API Token

  1. Log in to your Monday.com account
  2. Go to your avatar in the bottom-left corner and select "Developers"
  3. Navigate to the "API v2 Token" section
  4. Generate and copy your personal API token

Finding Your Workspace Name

Your workspace name is in the URL of your Monday.com workspace. For example, if your Monday.com URL is https://mycompany.monday.com/, your workspace name is mycompany.

Installation

For Claude Desktop

Option 1: Using uvx (Recommended)

Add the following to your Claude Desktop configuration file:

On MacOS: ~/Library/Application\ Support/Claude/claude_desktop_config.json On Windows: %APPDATA%/Claude/claude_desktop_config.json

"mcpServers": {
  "monday": {
    "command": "uvx",
    "args": [
      "mcp-server-monday"
    ],
    "env": {
      "MONDAY_API_KEY": "your-monday-api-key",
      "MONDAY_WORKSPACE_NAME": "your-monday-workspace-name"
    }
  }
}

Option 2: Using Docker

"mcpServers": {
  "monday-docker": {
    "command": "docker",
    "args": [
      "run",
      "--rm",
      "-i",
      "-e",
      "MONDAY_API_KEY=your-monday-api-key",
      "-e",
      "MONDAY_WORKSPACE_NAME=your-monday-workspace-name",
      "sakce/mcp-server-monday"
    ]
  }
}

Using Smithery

For an automated installation process, you can use Smithery:

npx -y @smithery/cli install @sakce/mcp-server-monday --client claude

Usage

Once installed, you can ask Claude to perform various Monday.com operations. Here are some examples:

  • "Show me all my Monday.com boards"
  • "Create a new item in my Project Management board"
  • "List all items in the Development group of my Sprint board"
  • "Add a comment to item #123"
  • "Move item #456 to the Done group"
  • "Show me all documents in my workspace"
  • "Create a new document titled 'Meeting Notes'"

Troubleshooting

If you encounter issues with the Monday.com MCP server:

  1. Verify your API token is correct and has the necessary permissions
  2. Confirm your workspace name is entered correctly
  3. Check that the environment variables are properly set in your configuration
  4. For more detailed debugging, use the MCP Inspector:
    npx @modelcontextprotocol/inspector uv run mcp-server-monday
    

Additional Resources

Related MCPs

Maton API Integration
Customer Data PlatformsTypeScript

Connect to various SaaS platforms through Maton's unified API

Apache Unomi Profile Manager
Customer Data PlatformsJavaScript

Connect Claude to Apache Unomi CDP for persistent user profile management

Attio
Customer Data PlatformsJavaScript

Connect to Attio CRM to manage company records and notes

About Model Context Protocol

Model Context Protocol (MCP) allows AI models to access external tools and services, extending their capabilities beyond their training data.

Generate Cursor Documentation

Save time on coding by generating custom documentation and prompts for Cursor IDE.