KosmoKrator

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_token API token
cli_setup_supported
true
cli_runtime_supported
true
mcp_gateway_supported
true
lua_supported
true
supports_multi_account
true

Quick Links

Monday.com MCP Client Matrix

Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Monday.com.

Monday.com CLI Matrix

Use these pages for direct Monday.com CLI workflows in scripts, CI, cron, and agent wrappers.

Function Catalog

FunctionTypeParametersDescription
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.