Skip to content

Summary

monday.com's official MCP server — read and write items, boards, columns and WorkForms, either via the hosted endpoint or a local npm package.

Features

  • Create, update, delete and search board items with type-aware column values
  • Create boards and modify board schema, not just populate existing ones
  • Retrieve users and teams so assignment and mentions resolve correctly
  • WorkForms operations
  • Hosted OAuth endpoint at mcp.monday.com requiring no local install
  • Self-hosted npm package for network-boundary or version-pinned deployments

Installation

Set up this MCP server in your favorite AI agent — copy a ready-made configuration below.

Any MCP-compatible agent

Most agents (Claude, Cursor, Windsurf, VS Code, and more) read a standard mcpServers configuration.

  1. Open your agent's MCP configuration file.
  2. Merge the snippet below into it, filling in the environment variables with your own values.
  3. Restart the agent — the "monday.com MCP" tools will be available.
{
  "mcpServers": {
    "monday-mcp": {
      "command": "npx",
      "args": [
        "@mondaydotcomorg/monday-api-mcp@latest"
      ],
      "env": {
        "MONDAY_TOKEN": "your_monday_api_token"
      }
    }
  }
}

Description

The official MCP server for monday.com, built by the monday.com AI team. It gives an agent structured access to a workspace rather than a scraped view of it: real board schemas, real column types, and write access that respects the account's permissions.

What an agent can do with it
  • Items — create, update, delete and search, including column-value updates that respect each column's type rather than dumping strings into it.
  • Boards — create boards and modify board schema, so an agent can stand up a tracker rather than only fill one in.
  • Account — retrieve users and teams, which is what makes assignment and mention behaviour correct.
  • WorkForms — operate on monday.com's form product.

The practical value is that monday.com is where a lot of teams keep the state of their work. An agent that can read a board understands what is actually in flight; one that can write to it can close the loop after doing the work.

Two ways to connect

The hosted endpoint at https://mcp.monday.com/mcp is the recommended path — nothing to install, OAuth-based, and maintained by monday.com. Alternatively run it locally from npm as @mondaydotcomorg/monday-api-mcp, authenticating with a monday.com API token passed as MONDAY_TOKEN (or -t on the command line). The local route is the one to pick when you want the server inside your own network boundary or pinned to a specific version.

MIT-licensed, subject to monday.com's Developer Terms.

Related MCP Servers

MCP: Vanta

by Vanta

New

Vanta's official remote MCP server — query controls, tests, vendors, vulnerabilities and policies across SOC 2 and ISO 27001, and remediate failing tests from your agent.

New

Attio's official hosted MCP server — search, read and write your CRM records, lists, notes, tasks, meetings and emails from any MCP client over OAuth.

1 views

MCP: Fireflies.ai

by Fireflies.ai

New

Fireflies.ai's official remote MCP server — 19 tools for searching meeting transcripts and summaries, pulling action items and analytics, and cutting soundbites from recorded calls.

5 views

MCP: ClickUp

by ClickUp

New

ClickUp's official remote MCP server — around 40 tools across tasks, search, Docs, Chat and time tracking, over OAuth 2.1 with PKCE.

2 views
Browse all MCP servers →