Community MCP server for Monday.com work operating system. Agents can create and update boards, manage items and subitems, modify column values, handle groups, and query workspace data via Monday.com's GraphQL API. Suitable for teams using Monday.com for project management, CRM, and operational workflows.
npx -y monday-mcp
{
"mcpServers": {
"monday": {
"env": {
"MONDAY_API_TOKEN": "your-api-token"
},
"args": [
"-y",
"monday-mcp"
],
"command": "npx"
}
}
}Create Monday.com board item
{
"type": "object",
"required": [
"board_id",
"item_name"
],
"properties": {
"board_id": {
"type": "integer"
},
"item_name": {
"type": "string"
}
}
}// Input
{
"board_id": 123,
"item_name": "Feature request"
}// Output
{
"id": "987",
"name": "Feature request"
}List Monday.com boards
{
"type": "object",
"required": [],
"properties": {
"limit": {
"type": "integer"
}
}
}// Input
{
"limit": 10
}// Output
{
"boards": [
{
"id": "123",
"name": "Sprint Board"
}
]
}Community MCP server for Monday.com work operating system. Agents can create and update boards, manage items and subitems, modify column values, handle groups, and query workspace data via Monday.com's GraphQL API. Suitable for teams using Monday.com for project management, CRM, and operational workflows.
Monday.com provides 2 tools including create_item, get_boards.
Monday.com offers a free tier with 300 calls per month. For higher usage, paid plans start at €0/month.
You can install Monday.com using the following command: npx -y monday-mcp. After installation, add the provided config snippet to your Claude Desktop or Cursor configuration.
Monday.com is listed under the Productivity category in the AgentForge MCP registry.
Monday.com has a current uptime of 99.72% with an average response time of 260ms.
To connect Monday.com, click the "Connect Agent" button on this page to get the configuration snippet. Add it to your MCP client (Claude Desktop, Cursor, or any MCP-compatible tool). Your AI agent will then have access to all of Monday.com's tools via the Model Context Protocol.