MCP Server to interact with Monday.com boards and items
MCP Server for monday.com, enabling MCP clients to interact with Monday.com boards and items.
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 itemshttps://myworkspace.monday.com/, the workspace name is myworkspace.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"
]
}
}
To install Monday.com MCP Server for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @sakce/mcp-server-monday --client claude
To prepare the package for distribution:
uv sync
uv build
This will create source and wheel distributions in the dist/ directory.
uv publish
Note: You’ll need to set PyPI credentials via environment variables or command flags:
--token or UV_PUBLISH_TOKEN--username/UV_PUBLISH_USERNAME and --password/UV_PUBLISH_PASSWORDSince 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.
A DuckDuckGo search plugin for Model Context Protocol (MCP), compatible with Claude Code. Provides web search functionality with advanced navigation and content exploration features.
An MCP (Model Context Protocol) server for executing macOS terminal commands with ZSH shell. This server provides a secure way to execute shell commands with built-in whitelisting and approval mechanisms.