MCP ExplorerExplorer

Monday.com

@sakceon 13 days ago
30 MIT
FreeCommunity
Productivity
#monday.com#API
MCP Server to interact with Monday.com boards and items.

Overview

What is Monday.com

The Monday.com MCP Server is a middleware that allows MCP clients to interact with Monday.com boards, items, updates, and documents through a set of defined API tools.

Use cases

It can be used for various task management operations such as creating and managing items, groups, and updates on Monday.com boards, enabling automation and effective collaboration within teams.

How to use

To use the server, you must set up a personal API token in Monday.com and specify the workspace name. You can install the server using environment configurations for tools like Claude Desktop or Docker, or automate installation via Smithery.

Key features

Key features include creating and deleting items and boards, retrieving item updates and document content, managing document blocks, and archiving items in Monday.com. The server supports several API operations linked to boards and items.

Where to use

This MCP server can be utilized in project management, team collaboration platforms, or any environment where tasks and updates need to be managed through the Monday.com interface.

Content

Monday.com MCP server

smithery badge

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

Monday.com Server MCP server

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

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"
    ]
  }
}

Using Smithery

To install Monday.com MCP Server for Claude Desktop automatically via Smithery:

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

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.

Tools

monday-create-item
Create a new item in a Monday.com Board. Optionally, specify the parent Item ID to create a Sub-item.
monday-get-items-by-id
Fetch specific Monday.com item by its ID
monday-update-item
Update a Monday.com item's or sub-item's column values.
monday-get-board-columns
Get the Columns of a Monday.com Board.
monday-get-board-groups
Get the Groups of a Monday.com Board.
monday-create-update
Create an update (comment) on a Monday.com Item or Sub-item.
monday-list-boards
Get all Boards from Monday.com
monday-list-items-in-groups
List all items in the specified groups of a Monday.com board
monday-list-subitems-in-items
List all Sub-items of a list of Monday.com Items
monday-create-board
Create a new Monday.com board
monday-create-board-group
Create a new group in a Monday.com board
monday-move-item-to-group
Move an item to a group in a Monday.com board
monday-delete-item
Delete an item from a Monday.com board
monday-archive-item
Archive an item from a Monday.com board
monday-get-item-updates
Get updates for a specific item in Monday.com
monday-get-docs
Get a list of documents from Monday.com, optionally filtered by folder
monday-get-doc-content
Get the content of a specific document by ID
monday-create-doc
Create a new document in Monday.com
monday-add-doc-block
Add a block to a document
monday-get-item-files
Get files (PDFs, documents, images, etc.) attached to a Monday.com item
monday-get-update-files
Get files (PDFs, documents, images, etc.) attached to a specific update in Monday.com

Comments