Fire in da houseTop Tip:Paying $100+ per month for Perplexity, MidJourney, Runway, ChatGPT and other tools is crazy - get all your AI tools in one site starting at $15 per month with Galaxy AI Fire in da houseCheck it out free

mcp-server-monday

MCP.Pizza Chef: sakce

The mcp-server-monday is an MCP server that allows MCP clients to interact programmatically with Monday.com boards, items, updates, and documents. It exposes tools for creating items and sub-items, listing boards and groups, adding updates, and retrieving detailed board data, enabling real-time, structured access to Monday.com workflows within MCP-enabled applications.

Use This MCP server To

Create and manage Monday.com items and sub-items programmatically Retrieve and list all boards and groups from Monday.com Add comments or updates to Monday.com items via MCP clients Fetch all items within specific groups on Monday.com boards List sub-items associated with Monday.com items for detailed views Integrate Monday.com data into AI workflows for task automation Enable real-time collaboration by syncing Monday.com updates with LLMs

README

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.

mcp-server-monday FAQ

How do I authenticate the mcp-server-monday with my Monday.com account?
You authenticate by providing your Monday.com API token during server setup, enabling secure access to your boards and items.
Can I create sub-items on Monday.com boards using this MCP server?
Yes, the server supports creating both items and sub-items on Monday.com boards through its tools.
Does mcp-server-monday support retrieving updates or comments on items?
Yes, it can create and retrieve updates (comments) on Monday.com items, facilitating communication tracking.
Is it possible to list all boards and groups available in my Monday.com workspace?
Yes, the server provides tools to list all boards and their groups accessible with your credentials.
Can this MCP server be used with different LLM providers like OpenAI, Claude, or Gemini?
Yes, it is provider-agnostic and works with any MCP client connected to models like OpenAI, Claude, or Gemini.
How does mcp-server-monday handle rate limits or API errors from Monday.com?
The server includes error handling and respects Monday.com API rate limits to ensure stable operation.
Can I integrate this MCP server into existing AI workflows or automation pipelines?
Absolutely, it is designed to be integrated into AI-enhanced workflows for task automation and data synchronization.
What kind of data can I retrieve from Monday.com using this server?
You can retrieve boards, groups, items, sub-items, and updates, providing comprehensive access to your Monday.com data.