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
| Name | Type | Required | Description |
|---|---|---|---|
_apiKey | string | yes | Monday.com API token |
board_id | string | yes | Board ID |
group_id | string | yes | Group ID within the board |
item_name | string | yes | Name for the new item |
column_values | string | no | JSON 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
| Field | Type | Description |
|---|---|---|
id | string | Created item ID |
name | string | Item name |
created_at | string | Item 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.