monday_create_item

Pack: monday · Endpoint: https://gateway.pipeworx.io/monday/mcp

Create a new item in a board (e.g., board ID “12345”, name “New Task”). Returns created item ID and name.

Parameters

NameTypeRequiredDescription
_apiKeystringyesMonday.com API token
board_idstringyesBoard ID
group_idstringyesGroup ID within the board
item_namestringyesName for the new item
column_valuesstringnoJSON string of column values to set (e.g., {“status”:“Working on it”})

Example call

Arguments

{
  "_apiKey": "your-monday-api-key",
  "board_id": "12345",
  "group_id": "group_1",
  "item_name": "New Task"
}

curl

curl -X POST https://gateway.pipeworx.io/monday/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"monday_create_item","arguments":{"_apiKey":"your-monday-api-key","board_id":"12345","group_id":"group_1","item_name":"New Task"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('monday_create_item', {
  "_apiKey": "your-monday-api-key",
  "board_id": "12345",
  "group_id": "group_1",
  "item_name": "New Task"
});

More examples

{
  "_apiKey": "your-monday-api-key",
  "board_id": "12345",
  "group_id": "group_1",
  "item_name": "Bug Fix",
  "column_values": "{\"status\":\"Working on it\",\"priority\":\"High\"}"
}

Response shape

FieldTypeDescription
idstringCreated item ID
namestringItem name
created_atstringItem creation timestamp
Full JSON Schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Created item ID"
    },
    "name": {
      "type": "string",
      "description": "Item name"
    },
    "created_at": {
      "type": "string",
      "description": "Item creation timestamp"
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "monday": {
      "url": "https://gateway.pipeworx.io/monday/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026