Integrate Monday.com with MCP Clients
Community MCP server for monday.com: manage boards, items, groups, updates, and documents via API token.
Maintainer of this project? Claim this page to edit the listing.
0.3.0Add to Favorites
Why it matters
Connect your MCP clients to Monday.com to programmatically manage boards, items, updates, and documents. Automate tasks and streamline project management workflows by interacting directly with your Monday.com data.
Outcomes
What it gets done
Create and manage Monday.com boards, groups, and items.
Update, move, delete, and archive items and sub-items.
Post comments and retrieve updates for items.
Manage Monday.com documents, including creation and content retrieval.
Install
Add it to your toolbox
Run in your project directory:
curl -fsSL https://spark.entire.vc/get/vb-monday-com-unofficial | bash Capabilities
Tools your agent gets
Creates a new item or sub-item on a Monday.com board
Retrieves all groups from a specified Monday.com board
Creates a comment/update on a Monday.com item
Lists all available Monday.com boards
Lists all items in specified groups on a Monday.com board
Lists all sub-items for given Monday.com items
Creates a new Monday.com board
Creates a new group on a Monday.com board
Overview
Monday.com (Unofficial) MCP Server
A community MCP server for monday.com exposing 16 tools to create and manage boards, groups, items, updates, and documents. Use to have Claude manage monday.com boards, items, and docs conversationally. Community-maintained, not official; includes destructive delete/archive tools with no built-in confirmation.
What it does
Monday.com MCP Server is a community MCP server that lets MCP clients interact with monday.com boards, items, updates, and documents directly. It implements sixteen tools covering the full board-management surface: monday-list-boards and monday-create-board for board-level operations, monday-get-board-groups and monday-create-board-group for groups, monday-create-item, monday-move-item-to-group, monday-delete-item, and monday-archive-item for item lifecycle management, monday-list-items-in-groups and monday-list-subitems-in-items for browsing board contents, monday-create-update and monday-get-item-updates for comments/activity on items, and monday-get-docs, monday-get-doc-content, monday-create-doc, and monday-add-doc-block for monday.com's document feature.
"mcpServers": {
"monday": {
"command": "uvx",
"args": [
"mcp-server-monday"
],
"env": {
"MONDAY_API_KEY": "your-monday-api-key",
"MONDAY_WORKSPACE_NAME": "your-monday-workspace-name"
}
}
}
Setup requires a personal API token created in monday.com's developer settings, plus the workspace name taken from the workspace URL (e.g. "myworkspace" from myworkspace.monday.com). The server can also be accessed via Rube, a hosted MCP gateway supporting Cursor, Claude, VS Code, and Windsurf, which handles authentication and lets you execute monday.com actions like creating items, posting updates, and moving items without running the server yourself.
When to use - and when NOT to
Use this connector when you want Claude to manage monday.com boards conversationally - creating and organizing items and groups, posting updates, moving items through workflow stages, or reading and writing monday.com documents.
This is a community-maintained server, not monday.com's own official integration, so it depends on the maintainer keeping pace with monday.com API changes. It includes destructive operations (monday-delete-item, monday-archive-item) with no built-in confirmation step, so review actions before letting an agent run them autonomously against a production workspace.
Capabilities
Boards: list, create. Groups: get board groups, create group, move items between groups. Items: create item/sub-item, list items in groups, list sub-items, delete, archive. Updates: create update/comment on an item, retrieve an item's updates. Documents: list docs (optionally by folder), retrieve doc content, create doc, add a block to an existing doc.
How to install
Create a monday.com personal API token and note your workspace name, then configure via uvx (mcp-server-monday with MONDAY_API_KEY and MONDAY_WORKSPACE_NAME env vars) or Docker (sakce/mcp-server-monday image with the same environment variables) in Claude Desktop's claude_desktop_config.json. Alternatively, install Rube in your MCP client and authenticate through it to access monday.com actions without self-hosting the server. For debugging, run via the MCP Inspector (npx @modelcontextprotocol/inspector uv run mcp-server-monday).
Who it's for
Teams and individuals using monday.com for project or work management who want Claude to create, organize, and update boards, items, and documents directly.
Source README
Monday.com MCP server
MCP Server for monday.com, enabling MCP clients to interact with Monday.com boards, items, updates, and documents.
Components
Tools
The server implements the following tools:
monday-create-item: Creates a new item or sub-item in a Monday.com boardmonday-get-board-groups: Retrieves all groups from a specified Monday.com boardmonday-create-update: Creates a comment/update on a Monday.com itemmonday-list-boards: Lists all available Monday.com boardsmonday-list-items-in-groups: Lists all items in specified groups of a Monday.com boardmonday-list-subitems-in-items: Lists all sub-items for given Monday.com itemsmonday-create-board: Creates a new Monday.com boardmonday-create-board-group: Creates a new group in a Monday.com boardmonday-move-item-to-group: Moves a Monday.com item to a different groupmonday-delete-item: Deletes a Monday.com itemmonday-archive-item: Archives a Monday.com itemmonday-get-item-updates: Retrieves updates/comments for a specific itemmonday-get-docs: Lists documents in Monday.com, optionally filtered by foldermonday-get-doc-content: Retrieves the content of a specific documentmonday-create-doc: Creates a new document in Monday.commonday-add-doc-block: Adds a block to an existing document
Setup
- Create and save a personal API Token in Monday.com by following the instructions here.
- Get the Workspace Name from the URL of your Monday.com workspace. For example, if the URL is
https://myworkspace.monday.com/, the workspace name ismyworkspace.
Quickstart
Using Rube
- Go to (Rube.app)[https://rube.app/]
- Install Rube in your preferred client including Cursor, Claude, VS Code, Windsurf etc.,
- Complete authentication with Rube
- You can now execute actions on Monday.com like creating items, posting updates, moving items
Install
Claude Desktop
On MacOS: ~/Library/Application\ Support/Claude/claude_desktop_config.json
On Windows: %APPDATA%/Claude/claude_desktop_config.json
Using uvx
"mcpServers": {
"monday": {
"command": "uvx",
"args": [
"mcp-server-monday"
],
"env": {
"MONDAY_API_KEY": "your-monday-api-key",
"MONDAY_WORKSPACE_NAME": "your-monday-workspace-name"
}
}
}
Using Docker
"mcpServers": {
"monday-docker": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"-e",
"MONDAY_API_KEY=your-monday-api-key",
"-e",
"MONDAY_WORKSPACE_NAME=your-monday-workspace-name",
"sakce/mcp-server-monday"
]
}
}
Development
Building and Publishing
To prepare the package for distribution:
- Sync dependencies and update lockfile:
uv sync
- Build package distributions:
uv build
This will create source and wheel distributions in the dist/ directory.
- Publish to PyPI:
uv publish
Note: You'll need to set PyPI credentials via environment variables or command flags:
- Token:
--tokenorUV_PUBLISH_TOKEN - Or username/password:
--username/UV_PUBLISH_USERNAMEand--password/UV_PUBLISH_PASSWORD
Debugging
Since MCP servers run over stdio, debugging can be challenging. For the best debugging
experience, we strongly recommend using the MCP Inspector.
You can launch the MCP Inspector via npm with this command:
npx @modelcontextprotocol/inspector uv run mcp-server-monday
Upon launching, the Inspector will display a URL that you can access in your browser to begin debugging.
FAQ
Common questions
Discussion
Questions & comments · 0
Sign In Sign in to leave a comment.