productivity
Monday.com MCP, CLI, and Lua Integration for AI Agents
Monday.com integration docs for AI agents: MCP gateway setup, Monday.com CLI commands, Lua API reference, credentials, and function schemas.
7 functions 6 read 1 write API token auth
Monday.com for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Machine-Readable Metadata
- integration_slug
monday- route_slug
monday- package
monday- auth_strategy
api_tokenAPI token- cli_setup_supported
true- cli_runtime_supported
true- mcp_gateway_supported
true- lua_supported
true- supports_multi_account
true
Quick Links
Lua APIAgent-facing namespace and function reference. Monday.com CLIHeadless setup and direct function calls. Monday.com MCPMCP gateway setup for external clients. Submit feedbackReport missing tools, auth problems, wrong docs, or runtime issues. ContributeAdd tools or improve metadata in the integrations repo.
Monday.com MCP Client Matrix
Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Monday.com.
Claude Code Monday.com MCP setup for Claude Code. Cursor Monday.com MCP setup for Cursor. Codex Monday.com MCP setup for Codex. OpenAI Agents Monday.com MCP setup for OpenAI Agents SDK. Claude Agent SDK Monday.com MCP setup for Claude Agent SDK. Vercel AI SDK Monday.com MCP setup for Vercel AI SDK. LangChain Monday.com MCP setup for LangChain. LangGraph Monday.com MCP setup for LangGraph. CrewAI Monday.com MCP setup for CrewAI. MCP clients Monday.com MCP setup for Generic MCP Clients.
Monday.com CLI Matrix
Use these pages for direct Monday.com CLI workflows in scripts, CI, cron, and agent wrappers.
CI Monday.com CLI for CI. Cron Jobs Monday.com CLI for cron jobs. Shell Scripts Monday.com CLI for shell scripts. Headless Automation Monday.com CLI for headless automation. Coding Agents Monday.com CLI for coding agents.
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
monday.monday_list_boards | Read read | 2 | List Monday.com boards the authenticated user has access to. Optionally filter by workspace. Returns board name, kind, workspace, owner, and item count. Use monday_list_workspaces to discover workspace IDs. |
monday.monday_get_board | Read read | 1 | Get a single Monday.com board by ID. Returns full board details including all columns (with types) and groups. Use monday_list_boards to discover board IDs. |
monday.monday_list_items | Read read | 3 | List items on a Monday.com board with pagination. Returns item name, state, group, creator, and timestamps. Use monday_list_boards or monday_get_board to discover board IDs. |
monday.monday_get_item | Read read | 1 | Get a single Monday.com item by ID. Returns full item details including all column values, board info, group, and creator. |
monday.monday_create_item | Write write | 4 | Create a new item on a Monday.com board. Requires a board ID and item name. Optionally set a group and initial column values. Use monday_get_board to discover group IDs and column IDs. |
monday.monday_list_workspaces | Read read | 1 | List Monday.com workspaces the authenticated user has access to. Returns workspace name, kind, description, and subscriber counts. Use workspace IDs to filter boards in monday_list_boards. |
monday.monday_get_current_user | Read read | 0 | Get the currently authenticated Monday.com user's profile, including ID, name, email, avatar URL, title, location, and timezone. |