MCP Connector

Integrate Monday.com with MCP Clients

Community MCP server for monday.com: manage boards, items, groups, updates, and documents via API token.

Works with monday.com

Maintainer of this project? Claim this page to edit the listing.


90
Spark score
out of 100
Updated 10 months ago
Version 0.3.0
Models
universal

Add to Favorites

Why it matters

Connect your MCP clients to Monday.com to programmatically manage boards, items, updates, and documents. Automate tasks and streamline project management workflows by interacting directly with your Monday.com data.

Outcomes

What it gets done

01

Create and manage Monday.com boards, groups, and items.

02

Update, move, delete, and archive items and sub-items.

03

Post comments and retrieve updates for items.

04

Manage Monday.com documents, including creation and content retrieval.

Install

Add it to your toolbox

Run in your project directory:

curl -fsSL https://spark.entire.vc/get/vb-monday-com-unofficial | bash

Capabilities

Tools your agent gets

monday-create-item

Creates a new item or sub-item on 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 on 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 on a Monday.com board

+7 tools

Overview

Monday.com (Unofficial) MCP Server

A community MCP server for monday.com exposing 16 tools to create and manage boards, groups, items, updates, and documents. Use to have Claude manage monday.com boards, items, and docs conversationally. Community-maintained, not official; includes destructive delete/archive tools with no built-in confirmation.

What it does

Monday.com MCP Server is a community MCP server that lets MCP clients interact with monday.com boards, items, updates, and documents directly. It implements sixteen tools covering the full board-management surface: monday-list-boards and monday-create-board for board-level operations, monday-get-board-groups and monday-create-board-group for groups, monday-create-item, monday-move-item-to-group, monday-delete-item, and monday-archive-item for item lifecycle management, monday-list-items-in-groups and monday-list-subitems-in-items for browsing board contents, monday-create-update and monday-get-item-updates for comments/activity on items, and monday-get-docs, monday-get-doc-content, monday-create-doc, and monday-add-doc-block for monday.com's document feature.

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

Setup requires a personal API token created in monday.com's developer settings, plus the workspace name taken from the workspace URL (e.g. "myworkspace" from myworkspace.monday.com). The server can also be accessed via Rube, a hosted MCP gateway supporting Cursor, Claude, VS Code, and Windsurf, which handles authentication and lets you execute monday.com actions like creating items, posting updates, and moving items without running the server yourself.

When to use - and when NOT to

Use this connector when you want Claude to manage monday.com boards conversationally - creating and organizing items and groups, posting updates, moving items through workflow stages, or reading and writing monday.com documents.

This is a community-maintained server, not monday.com's own official integration, so it depends on the maintainer keeping pace with monday.com API changes. It includes destructive operations (monday-delete-item, monday-archive-item) with no built-in confirmation step, so review actions before letting an agent run them autonomously against a production workspace.

Capabilities

Boards: list, create. Groups: get board groups, create group, move items between groups. Items: create item/sub-item, list items in groups, list sub-items, delete, archive. Updates: create update/comment on an item, retrieve an item's updates. Documents: list docs (optionally by folder), retrieve doc content, create doc, add a block to an existing doc.

How to install

Create a monday.com personal API token and note your workspace name, then configure via uvx (mcp-server-monday with MONDAY_API_KEY and MONDAY_WORKSPACE_NAME env vars) or Docker (sakce/mcp-server-monday image with the same environment variables) in Claude Desktop's claude_desktop_config.json. Alternatively, install Rube in your MCP client and authenticate through it to access monday.com actions without self-hosting the server. For debugging, run via the MCP Inspector (npx @modelcontextprotocol/inspector uv run mcp-server-monday).

Who it's for

Teams and individuals using monday.com for project or work management who want Claude to create, organize, and update boards, items, and documents directly.

Source README

Monday.com MCP server

MCP Server for monday.com, enabling MCP clients to interact with Monday.com boards, items, updates, and documents.

Components

Tools

The server implements the following 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

Setup

  1. Create and save a personal API Token in Monday.com by following the instructions here.
  2. Get the Workspace Name from the URL of your Monday.com workspace. For example, if the URL is https://myworkspace.monday.com/, the workspace name is myworkspace.

Quickstart

Using Rube

  1. Go to (Rube.app)[https://rube.app/]
  2. Install Rube in your preferred client including Cursor, Claude, VS Code, Windsurf etc.,
  3. Complete authentication with Rube
  4. You can now execute actions on Monday.com like creating items, posting updates, moving items

Install

Claude Desktop

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

On Windows: %APPDATA%/Claude/claude_desktop_config.json

Using uvx
"mcpServers": {
  "monday": {
    "command": "uvx",
    "args": [
      "mcp-server-monday"
    ],
    "env": {
      "MONDAY_API_KEY": "your-monday-api-key",
      "MONDAY_WORKSPACE_NAME": "your-monday-workspace-name"
    }
  }
}
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"
    ]
  }
}

Development

Building and Publishing

To prepare the package for distribution:

  1. Sync dependencies and update lockfile:
uv sync
  1. Build package distributions:
uv build

This will create source and wheel distributions in the dist/ directory.

  1. Publish to PyPI:
uv publish

Note: You'll need to set PyPI credentials via environment variables or command flags:

  • Token: --token or UV_PUBLISH_TOKEN
  • Or username/password: --username/UV_PUBLISH_USERNAME and --password/UV_PUBLISH_PASSWORD

Debugging

Since MCP servers run over stdio, debugging can be challenging. For the best debugging
experience, we strongly recommend using the MCP Inspector.

You can launch the MCP Inspector via npm with this command:

npx @modelcontextprotocol/inspector uv run mcp-server-monday

Upon launching, the Inspector will display a URL that you can access in your browser to begin debugging.

FAQ

Common questions

Discussion

Questions & comments · 0

Sign In Sign in to leave a comment.