Developer docs

Monday MCP integration

monday.com is a work management platform for organizing projects, workflows,…

Updated June 2026 36 actions available

Provider
monday_mcp
Category
Other
Setup
See setup section below
Actions
36 available

Quick start

Call Monday MCP from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Monday MCP's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.

// In your generated app's worker handler:
const composio = composioClient(env);

const result = await composio.execute(
  "MONDAY_MCP_ACTION_NAME",
  { /* action parameters — see Actions section below */ }
);

return new Response(JSON.stringify(result), {
  headers: { "Content-Type": "application/json" }
});

Replace ACTION_NAME with one of the slugs listed in the Actions section below. The composio client handles auth + rate limits automatically — no API key is exposed to user code.

Setup

Setup details for Monday MCP aren't published yet. If you need this integration in production, contact the OverSkill team and we'll prioritize it.

Available actions

36 actions exposed via the Monday MCP integration. Each maps to a callable slug — pass it to composio.execute(...) in your worker code.

Show all 36 actions
  • MONDAY_MCP_CREATE_UPDATE
  • MONDAY_MCP_CREATE_WIDGET
  • MONDAY_MCP_CREATE_WORKSPACE
  • MONDAY_MCP_FORM_QUESTIONS_EDITOR
  • MONDAY_MCP_GET_BOARD_ACTIVITY
  • MONDAY_MCP_GET_BOARD_INFO
  • MONDAY_MCP_GET_BOARD_ITEMS_PAGE
  • MONDAY_MCP_GET_COLUMN_TYPE_INFO
  • MONDAY_MCP_GET_FORM
  • MONDAY_MCP_GET_GRAPHQL_SCHEMA
  • MONDAY_MCP_GET_MONDAY_DEV_SPRINTS_BOARDS
  • MONDAY_MCP_GET_SPRINTS_METADATA
  • MONDAY_MCP_GET_SPRINT_SUMMARY
  • MONDAY_MCP_GET_TYPE_DETAILS
  • MONDAY_MCP_GET_USER_CONTEXT
  • MONDAY_MCP_LIST_USERS_AND_TEAMS
  • MONDAY_MCP_LIST_WORKSPACES
  • MONDAY_MCP_MOVE_OBJECT
  • MONDAY_MCP_READ_DOCS
  • MONDAY_MCP_SEARCH
  • MONDAY_MCP_UPDATE_FOLDER
  • MONDAY_MCP_UPDATE_FORM
  • MONDAY_MCP_UPDATE_WORKSPACE
  • MONDAY_MCP_WORKSPACE_INFO

Build with Monday MCP

Open OverSkill, describe what you want to build, and reference Monday MCP in your prompt — the AI will wire up the integration automatically.