monday.com MCP Server

Productivitystdiohttp-streamingv1.0.0
Repository

Official monday.com MCP server. Lets AI agents read and update boards, items, and columns, create new items, and run queries against the monday.com Work OS so teams can manage work directly from AI-powered tools.

Connect

Add this configuration to .claude/mcp.json

Transport:
{
  "mcpServers": {
    "monday": {
      "command": "npx",
      "args": [
        "-y",
        "@mondaydotcomorg/monday-api-mcp"
      ],
      "env": {
        "MONDAY_API_TOKEN": "<YOUR_MONDAY_API_TOKEN>"
      }
    }
  }
}

Tools (2)

create_item

Create a new item on a monday.com board with column values.

{
  "type": "object",
  "required": [
    "board_id",
    "item_name"
  ],
  "properties": {
    "board_id": {
      "type": "string",
      "description": "ID of the board"
    },
    "item_name": {
      "type": "string",
      "description": "Name of the new item"
    },
    "column_values": {
      "type": "object",
      "description": "Column values keyed by column ID"
    }
  }
}

get_board_items

Retrieve items and their column values from a monday.com board.

{
  "type": "object",
  "required": [
    "board_id"
  ],
  "properties": {
    "limit": {
      "type": "integer",
      "description": "Maximum number of items to return"
    },
    "board_id": {
      "type": "string",
      "description": "ID of the board to read"
    }
  }
}

Resources

This server does not expose any resources.

Prompts

This server does not expose any prompts.

Server Information

Author
monday.com (@mondaycom)
Repository
https://github.com/mondaycom/mcp
License
MIT
Version
1.0.0
Stars
289
Last Updated
July 9, 2026
monday.com MCP Server - MCP Server | OpenModels