Skip to content

monday.com

Manage boards, items, and workflows in monday.com.

FamilyCategorySub-typeAuth typeTrending score
Productivityproductivitywork-mgmtapi_key74

Overview

Product URLAPI docsSupported features
https://monday.com/https://developer.monday.com/api-reference/tool_discovery, health_check, approval_gated_writes

Setup

  1. Install the connector instance.
  2. Store the provider token or connection secret.
  3. Sync the tools and test the connection.
  4. Review approval-gated write tools before running them.

Auth & Configuration

  • Use a monday.com API key with access to the target boards.

Available Tools

ToolRequires approvalDescription
list_boardsNoList monday.com boards.
list_board_itemsNoList items for a monday.com board.
get_itemNoRetrieve a monday.com item by ID.
create_itemYesCreate a monday.com item.
update_itemYesUpdate an existing monday.com item.

Use list_boards for the main execution example below because it is safe to run without approval.

Examples

Install

bash
chainabit connectors install monday --name "monday.com"
bash
curl -X POST "$BASE_URL/connectors/instances" \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
  "connectorKey": "monday",
  "displayName": "monday.com"
}'
javascript
const response = await fetch(`${BASE_URL}/connectors/instances`, {
  method: 'POST',
  headers: {
    Authorization: `Bearer ${TOKEN}`,
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
  "connectorKey": "monday",
  "displayName": "monday.com"
}),
});

Credentials

bash
chainabit connectors auth <instance-id>
bash
curl -X POST "$BASE_URL/connectors/instances/<instance-id>/credentials" \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
  "credType": "api_key",
  "credentials": {
    "apiKey": "YOUR_API_KEY"
  }
}'
javascript
await fetch(`${BASE_URL}/connectors/instances/<instance-id>/credentials`, {
  method: 'POST',
  headers: {
    Authorization: `Bearer ${TOKEN}`,
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
  "credType": "api_key",
  "credentials": {
    "apiKey": "YOUR_API_KEY"
  }
}),
});

Execute

bash
chainabit connectors exec <instance-id> list_boards --input '{}'
bash
curl -X POST "$BASE_URL/connectors/instances/<instance-id>/tools/tool_list_boards/execute" \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
  "input": {}
}'
javascript
const response = await fetch(
  `${BASE_URL}/connectors/instances/<instance-id>/tools/tool_list_boards/execute`,
  {
    method: 'POST',
    headers: {
      Authorization: `Bearer ${TOKEN}`,
      'Content-Type': 'application/json',
    },
    body: JSON.stringify({
  "input": {}
}),
  },
);

Security Notes

  • Keep tokens, API keys, and connection strings in the encrypted credentials vault.
  • Do not allow arbitrary server URLs for remote MCP connectors.
  • Mutating tools are approval-gated. Review the payload before executing them.
  • Use a monday.com API key with access to the target boards.

Troubleshooting

  • If the health check fails, verify the token scope or credential payload and try again.
  • If the tool list is empty, re-run sync-tools after storing the latest credentials.

Back to the catalog

Built with purpose.