Creates a new item or sub-item in 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 of a Monday.com board
Lists all sub-items for given Monday.com items
Creates a new Monday.com board
Creates a new group in a Monday.com board
Moves a Monday.com item to a different group
Deletes a Monday.com item
Archives a Monday.com item
Retrieves updates/comments for a specific item
Lists documents in Monday.com, optionally filtered by folder
Retrieves the content of a specific document
Creates a new document in Monday.com
Adds a block to an existing document
This MCP server provides a comprehensive interface to Monday.com's functionality, allowing you to manage boards, items, updates, and documents directly through Claude. Create and manage boards, add items and sub-items, organize content into groups, and work with Monday.com documents - all without leaving your AI assistant. With this integration, you can automate Monday.com workflows, quickly retrieve information from your workspace, and maintain your project management system efficiently. The server supports a wide range of operations from basic item creation to document management, making it a powerful tool for teams using Monday.com.
The Monday.com MCP server enables Claude to interact with your Monday.com workspace, providing access to boards, items, updates, and documents. This integration streamlines project management workflows by allowing you to manage your Monday.com content directly through Claude.
Before using this MCP server, you'll need:
Your workspace name is in the URL of your Monday.com workspace. For example, if your Monday.com URL is https://mycompany.monday.com/
, your workspace name is mycompany
.
Add the following to your Claude Desktop configuration file:
On MacOS: ~/Library/Application\ Support/Claude/claude_desktop_config.json
On Windows: %APPDATA%/Claude/claude_desktop_config.json
"mcpServers": {
"monday": {
"command": "uvx",
"args": [
"mcp-server-monday"
],
"env": {
"MONDAY_API_KEY": "your-monday-api-key",
"MONDAY_WORKSPACE_NAME": "your-monday-workspace-name"
}
}
}
"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"
]
}
}
For an automated installation process, you can use Smithery:
npx -y @smithery/cli install @sakce/mcp-server-monday --client claude
Once installed, you can ask Claude to perform various Monday.com operations. Here are some examples:
If you encounter issues with the Monday.com MCP server:
npx @modelcontextprotocol/inspector uv run mcp-server-monday