productivity
Monday.com MCP Integration for LangGraph
Connect Monday.com to LangGraph through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Monday.com to LangGraph
Run KosmoKrator integration calls from LangGraph nodes while preserving local credentials and permissions.
Use a graph node that calls the KosmoKrator CLI for deterministic steps or an MCP client for dynamic tool selection. The gateway is local, scoped to this integration, and starts with
--write=deny so LangGraph can inspect read-capable tools without receiving write access by default.
Monday.com MCP Config for LangGraph
Headless CLI calls fit repeatable graph edges; MCP fits exploratory agent nodes.
{
"mcpServers": {
"kosmokrator-monday": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=monday",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=monday --write=deny Why Use KosmoKrator Here
Expose only Monday.com instead of a broad multi-service tool list.
Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.
Start read-only, then opt into ask or allow for trusted workspaces.
Monday.com Tools Visible to LangGraph
LangGraph sees stable MCP tool names generated from the Monday.com integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__monday__monday_list_boards | monday.monday_list_boards | Read | 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. |
integration__monday__monday_get_board | monday.monday_get_board | Read | 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. |
integration__monday__monday_list_items | monday.monday_list_items | Read | 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. |
integration__monday__monday_get_item | monday.monday_get_item | Read | Get a single Monday.com item by ID. Returns full item details including all column values, board info, group, and creator. |
integration__monday__monday_create_item | monday.monday_create_item | Write | 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. |
integration__monday__monday_list_workspaces | monday.monday_list_workspaces | Read | 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. |
integration__monday__monday_get_current_user | monday.monday_get_current_user | Read | Get the currently authenticated Monday.com user's profile, including ID, name, email, avatar URL, title, location, and timezone. |