M
Monday.com
community
other
MCP Server to interact with Monday.com boards and items.
Monday.com MCP server
MCP Server for monday.com, enabling MCP clients to interact with Monday.com boards, items, updates, and documents.
<a href="https://glama.ai/mcp/servers/vobfpuod5x">
<img width="380" height="200" src="https://glama.ai/mcp/servers/vobfpuod5x/badge" alt="Monday.com Server MCP server" />
</a>
Components
Tools
The server implements the following tools:
: Creates a new item or sub-item in a Monday.com boardmonday-create-item
: Retrieves all groups from a specified Monday.com boardmonday-get-board-groups
: Creates a comment/update on a Monday.com itemmonday-create-update
: Lists all available Monday.com boardsmonday-list-boards
: Lists all items in specified groups of a Monday.com boardmonday-list-items-in-groups
: Lists all sub-items for given Monday.com itemsmonday-list-subitems-in-items
: Creates a new Monday.com boardmonday-create-board
: Creates a new group in a Monday.com boardmonday-create-board-group
: Moves a Monday.com item to a different groupmonday-move-item-to-group
: Deletes a Monday.com itemmonday-delete-item
: Archives a Monday.com itemmonday-archive-item
: Retrieves updates/comments for a specific itemmonday-get-item-updates
: Lists documents in Monday.com, optionally filtered by foldermonday-get-docs
: Retrieves the content of a specific documentmonday-get-doc-content
: Creates a new document in Monday.commonday-create-doc
: Adds a block to an existing documentmonday-add-doc-block
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
, the workspace name ishttps://myworkspace.monday.com/
.myworkspace
Quickstart
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" ] } }
Using Smithery
To install Monday.com MCP Server for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @sakce/mcp-server-monday --client claude
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:
or--token
UV_PUBLISH_TOKEN
- Or username/password:
/--username
andUV_PUBLISH_USERNAME
/--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.
Related Servers
S
Sequential Thinking
reference
Dynamic and reflective problem-solving through thought sequences
View Details