Aerostack
electrical_services

Monday.com MCP Server — Hosted Devops Integration

MCP Server shield Key Required

Boards, items, columns, groups, updates, subitems, workspaces via Monday.com's official MCP

aerostack @aerostack verified
v1.0.0 MIT Updated May 13, 2026
robot_2

Use with AI AssistantsMCP

Connect Claude, Cursor, or any MCP-compatible client — then call tools directly

① Add This MCP Server

Paste into your AI client config — then all its tools are available instantly.

.claude/mcp.json
{
  "mcpServers": {
    "monday.com-work-management": {
      "url": "https://mcp.aerostack.dev/s/aerostack/mcp-monday",
      "headers": {
        "Authorization": "Bearer YOUR_AEROSTACK_TOKEN"
      }
    }
  }
}

Replace YOUR_AEROSTACK_TOKEN with your API token from the dashboard.

② Call a Tool

Ask your AI assistant to call a specific tool, or send raw JSON-RPC:

Natural Language Prompt

“Use the list_boards tool to list all accessible monday.com boards with name, columns, groups, and board metadata

Using a Workspace?

Add this MCP to your Workspace — your team shares one token, secrets are stored securely, and every AI agent in the workspace can call it without per-user setup.

add_circleAdd to Workspace

description Overview

Monday.com Work Management MCP

Official proxy MCP — Boards, items, columns, groups, updates, subitems, workspaces via Monday.com's official MCP

Live endpoint: https://mcp.aerostack.dev/s/aerostack/mcp-monday


Overview

Monday.com Work Management is a proxy MCP server that forwards requests directly to the official Monday.com MCP endpoint at https://mcp.monday.com/mcp. All tools are maintained by Monday.com — new tools are available immediately without any Aerostack update.

Type: Proxy (hosted by Monday.com)
Auth: Bearer token via MONDAY_ACCESS_TOKEN

Prerequisite: A Monday.com workspace admin must install the Monday MCP app from the Monday marketplace before tokens can be used.

Available Tools

  • list_boards — List all accessible boards with name, columns, groups, and board metadata
  • get_board_items — Retrieve all items (rows) from a board with column values, subitems, and updates
  • create_item — Create a new item on a board with column values and optional group assignment
  • update_item — Update column values of an existing item
  • create_update — Post an update (comment) on an item with rich text body

Configuration

Variable Required Description How to Get
MONDAY_ACCESS_TOKEN Yes Monday.com API Token (personal or OAuth2) monday.com → Avatar (bottom-left) → Developers → My access tokens → Show

Setup

Add to Aerostack Workspace
  1. Go to app.aerostack.dev/workspacesCreate Workspace
  2. Inside your workspace → Add Server → search "Monday.com Work Management"
  3. Enter your MONDAY_ACCESS_TOKEN when prompted — stored encrypted, injected automatically

Once added, every AI agent in your workspace can use Monday.com tools automatically.

Usage

Example Prompts
"List all boards in my workspace and summarize their status"
"Create a new item on the Sprint Board: Fix login timeout bug, assign to me, due Friday"
"Get all items from the Roadmap board that are in the 'In Progress' group"
Direct API Call
curl -X POST https://mcp.aerostack.dev/s/aerostack/mcp-monday \
  -H 'Content-Type: application/json' \
  -H 'X-Mcp-Secret-MONDAY-ACCESS-TOKEN: your-token' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_boards","arguments":{}}}'

License

MIT

terminal Tools (5)

Available tools on this MCP server. Each tool can be called directly from any AI agent.

terminal
list_boards #1

List all accessible Monday.com boards with name, columns, groups, and board metadata

terminal
get_board_items #2

Retrieve all items (rows) from a specific board with column values, subitems, and updates

terminal
create_item #3

Create a new item (row) on a Monday.com board with column values and optional group assignment

terminal
update_item #4

Update column values of an existing item on a Monday.com board

terminal
create_update #5

Post an update (comment) on a Monday.com item with rich text body

Details

upgrade Version 1.0.0
gavel License MIT
wifi Transport http-sse
lock Access Key Required
category Category Devops
terminal Tools 5

Publisher

aerostack
@aerostack verified

Pre-built functions for the most common MCP tool patterns. Clone, extend, and deploy.

Tags

Browse more servers

Frequently asked questions

What is the Monday.com MCP server and what can it do? +

The Monday.com MCP server is hosted on Aerostack and exposes these tools to your AI agent: `list_boards`, `get_board_items`, `create_item`, `update_item`, `create_update`. You get one hosted URL — no self-hosting — that works from Claude, Cursor, ChatGPT, Gemini, VS Code, or any MCP-compatible client, and you can share it with your team or combine it with other MCP servers in a workspace.

Is the Monday.com MCP server hosted, or do I have to run it myself? +

It's hosted on Aerostack's edge infrastructure — you don't deploy or maintain anything. Add it to a workspace and you get one authenticated URL, with secrets encrypted, that any AI agent or editor can connect to. Use it solo or share the same URL across your whole team.

Which AI agents and editors can use the Monday.com MCP server? +

Any MCP client: Claude and Claude Code, Cursor, ChatGPT, Gemini, Windsurf, Cline, VS Code, and custom agents. Because it's one hosted URL, the same Monday.com MCP server works everywhere — and you can compose it with other MCP servers, skills, and functions behind a single workspace URL.

How do I install the Monday.com MCP server in Claude Desktop? +

Add the following to your Claude Desktop config (`claude_desktop_config.json`): ```json { "mcpServers": { "@aerostack/mcp-monday": { "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-monday"] } } } ``` Then restart Claude Desktop and the tools will appear automatically.

How do I use the Monday.com MCP server in Cursor? +

In Cursor, open **Settings → MCP** and add: ```json { "name": "@aerostack/mcp-monday", "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-monday"] } ``` Save and reload Cursor. The MCP tools will be available in Agent mode.

Does Monday.com MCP require authentication? +

Yes. Monday.com uses Bearer token authentication. Set your token as a workspace secret in the Aerostack dashboard.