monday.com MCP Server

Productivitystdiohttp-streamingv1.0.0
代码仓库

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.

连接

将此配置添加到 .claude/mcp.json

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

工具 (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"
    }
  }
}

资源

此服务器未提供任何资源。

提示词

此服务器未提供任何提示词。

服务器信息

作者
monday.com (@mondaycom)
代码仓库
https://github.com/mondaycom/mcp
许可证
MIT
版本
1.0.0
星标
289
最后更新
2026年7月9日