P

mcp-server-monday

...
Created 2/21/2025bysakce

Language:

Python

Stars:

3

Forks:

0

Monday.com MCP server

smithery badge

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

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

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](https://smithery.ai/server/@sakce/mcp-server-monday):
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.

Last updated: 3/5/2025

Publisher info

sakce's avatar

Jovan Sakovic

Data Engineer @ Tasman Analytics

@TasmanAnalytics
London, UK
4
followers
11
following
12
repos

More MCP servers built with Python

mcp-logo-gen

By sshtunnelvision137
ledger-mcp-server

MCP Server for my ledger

By mprokopov1
clickhouse_mcp_server

A MCP server for ClickHouse

By ThomAub1