Monday.com MCP server
MCP Server to interact with Monday.com boards and items
Overview
MCP Server for Monday.com is a server that enables MCP clients to interact with Monday.com boards and items, facilitating seamless integration and management of tasks.
To use the MCP Server, you need to create a personal API Token in Monday.com, set up your workspace name, and configure the server with your API key and workspace name.
- Create new items or sub-items in Monday.com boards. - Retrieve all groups from a specified board. - Create comments or updates on items. - List all available boards and items in specified groups. - List sub-items for given items.
- Automating task creation in Monday.com boards.
- Managing project updates and comments programmatically.
- Integrating Monday.com with other applications for enhanced workflow.
Add to your AI client
Use these steps to connect Monday.com MCP server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-server-monday-sakce": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-monday-sakce"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-server-monday-sakce": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-monday-sakce"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-server-monday-sakce": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-monday-sakce"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-server-monday-sakce": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-monday-sakce"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-server-monday-sakce": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-monday-sakce"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-server-monday-sakce": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-monday-sakce"
]
}
}
}FAQ
How do I get my API Token?
You can create and save a personal API Token by following the instructions in the Monday.com API documentation.
Can I use this server for multiple workspaces?
Yes! You can configure the server for different workspaces by changing the workspace name and API key accordingly.
Is there a debugging tool available?
Yes, the MCP Inspector can be used for debugging the MCP servers.