KosmoKrator

productivity

Monday.com MCP Integration for Vercel AI SDK

Connect Monday.com to Vercel AI SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.

7 functions 6 read 1 write API token auth

Connect Monday.com to Vercel AI SDK

Use KosmoKrator as a local integration gateway for Vercel AI SDK agents and scripts.

Create an MCP client that starts or connects to the KosmoKrator gateway for the selected integration. The gateway is local, scoped to this integration, and starts with --write=deny so Vercel AI SDK can inspect read-capable tools without receiving write access by default.

Monday.com MCP Config for Vercel AI SDK

Prefer CLI JSON calls when a workflow only needs one deterministic integration operation.

{
  "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

Scoped tools

Expose only Monday.com instead of a broad multi-service tool list.

Local credentials

Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.

Write policy

Start read-only, then opt into ask or allow for trusted workspaces.

Monday.com Tools Visible to Vercel AI SDK

Vercel AI SDK sees stable MCP tool names generated from the Monday.com integration catalog.

MCP toolSource functionTypeDescription
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.

Related Monday.com Pages