Work operating system
## Monday.com MCP Server: Work OS The **Monday.com MCP Server** integrates Monday.com's Work OS into Google Antigravity, enabling developers to manage boards, automate workflows, and collaborate on projects through AI-assisted productivity. ### Why Monday.com MCP? - **Flexible Boards**: Customize boards for any workflow or process - **Visual Dashboards**: Create dashboards with charts and widgets - **Automations**: No-code automations for routine tasks - **Integrations**: 200+ integrations with other tools - **Workdocs**: Collaborative documents linked to work items ### Key Features #### 1. Item and Board Management ```javascript // Create item const item = await monday.createItem({ boardId: "board_123", groupId: "group_456", itemName: "Implement user authentication", columnValues: { status: "Working on it", person: { personsAndTeams: [{ id: 123, kind: "person" }] }, date: { date: "2024-12-20" }, numbers: 8 // Story points } }); // Query items with GraphQL const items = await monday.query(` query { boards(ids: [board_123]) { items_page { items { id name column_values { id value } } } } } `); // Update item await monday.changeColumnValue({ boardId: "board_123", itemId: item.id, columnId: "status", value: { label: "Done" } }); ``` #### 2. Automation and Updates ```javascript // Add update (comment) await monday.createUpdate({ itemId: item.id, body: "OAuth implementation complete. Ready for review." }); // Create subitem await monday.createSubitem({ parentItemId: item.id, itemName: "Write unit tests" }); // Move item to group await monday.moveItemToGroup({ itemId: item.id, groupId: "done_group" }); ``` ### Configuration ```json { "mcpServers": { "monday": { "command": "npx", "args": ["-y", "@anthropic/mcp-monday"], "env": { "MONDAY_API_TOKEN": "your-api-token" } } } } ``` ### Use Cases **Sprint Management**: Track development sprints with custom status columns and automations. **Project Tracking**: Manage projects with Gantt views, dependencies, and milestones. **Team Dashboards**: Create real-time dashboards showing team progress and metrics. The Monday.com MCP Server brings flexible work management to your development workflow.
{
"mcpServers": {
"monday": {
"mcpServers": {
"monday": {
"env": {
"MONDAY_API_KEY": "your-api-key"
},
"args": [
"-y",
"monday-mcp-server"
],
"command": "npx"
}
}
}
}
}