All integrations

Monday.com

Boards, items, column updates, and comments on Monday.com workspaces.

OAuth 8 tools

Overview

Connect Monday.com to give AI clients access to your boards, items, column values, and item updates (comments).

Prerequisites

  • A Monday.com account with boards you want AI to access
  • A stackgate.ai account

Getting credentials

  1. Sign in to stackgate.ai.
  2. Go to Integrations and open Monday.com.
  3. Click Activate, then Connect Monday.com.
  4. Approve the OAuth prompt on Monday.com — stackgate.ai stores your access token securely.

No manual API keys are required for the standard connect flow.

Using with AI clients

  • Dedicated endpoint: POST /mcp/monday with a Sanctum bearer token
  • Private gateway: one config for all integrations — use monday__* namespaced tools

See Documentation for HTTP authentication and private gateway setup.

Troubleshooting

  • 422 integration not configured — complete the OAuth connect flow in My Integrations.
  • Auth errors after connecting — disconnect and reconnect Monday.com from the integration page (tokens are invalidated when the OAuth app is uninstalled).
  • Rate limit errors — Monday.com enforces daily and per-minute API limits based on your account plan. Reduce request volume or upgrade your Monday.com plan.

Available tools

  • get_me

    Return the connected Monday.com user and account metadata.

  • list_boards

    List Monday.com boards accessible to the connected account.

  • get_board

    Get a Monday.com board with columns and groups. Call this before creating or updating items on an unfamiliar board.

  • list_board_items

    List items on a Monday.com board. Use cursor from the response to paginate through large boards.

  • get_item

    Get one or more Monday.com items by ID with column values. Maximum 100 item IDs per call.

  • create_item

    Create a new item on a Monday.com board. Use get_board first to find column IDs and group IDs. column_values must be a JSON string keyed by column ID.

  • update_item_column_values

    Update column values on an existing Monday.com item. column_values must be a JSON string keyed by column ID with type-specific values.

  • create_item_update

    Post a comment (update) on a Monday.com item. Body supports HTML formatting; do not use @ mentions in the body text.

MCP endpoint: https://stackgate.ai/mcp/monday (HTTP) or via the private gateway.