Sponsored by Deepsite.site

🚀 monday.com MCP

Created By
mondaycom7 months ago
Enable AI agents to work reliably - giving them secure access to structured data, tools to take action, and the context needed to make smart decisions.
Content

🚀 monday.com MCP

npm version MIT License GitHub Stars Node.js Version MCP Compatible Claude Ready OpenAI Compatible TypeScript

Enable AI agents to operate reliably within real workflows. This MCP is monday.com’s open framework for connecting agents into your work OS - giving them secure access to structured data, tools to take action, and the context needed to make smart decisions.

🌟 Overview

This repository, maintained by the monday.com AI team, provides a comprehensive set of tools for AI agent developers who want to integrate with monday.com. Whether you're building AI assistants, automations, or custom integrations, our tools make it easy to connect to the monday.com platform.

https://github.com/user-attachments/assets/ed8d24e1-256b-4f6b-9d84-38e54a8703fd

🔑 What is monday.com?

monday.com is a work operating system that powers teams to run processes, projects, and everyday work. Teams use monday.com to plan, track, and manage their work in one centralized platform. It provides a visual, intuitive interface where teams can:

  • Create and manage projects with customizable boards
  • Track tasks through different stages with status columns
  • Collaborate with team members through updates and mentions
  • Automate workflows and integrate with other tools
  • Visualize data with dashboards and reports

📦 What's Inside

💻 monday API MCP Server

The @mondaydotcomorg/monday-api-mcp package provides a plug-and-play server implementation for the Model Context Protocol (MCP). It allows AI agents to interact with the monday.com API without needing to build complex integrations.

🤖 Agent Toolkit

The @mondaydotcomorg/agent-toolkit package provides a powerful set of tools and utilities for building AI agents that interact with the monday.com API, supporting both OpenAI and Model Context Protocol (MCP) implementations.

🏁 Complete Installation Guide

Step 1: Create a monday.com Account

If you don't already have a monday.com account:

  1. Go to monday.com and sign up for an account
  2. Create your first workspace and board to get started

Step 2: Generate an API Token

To interact with monday.com's API, you'll need an API token:

  1. Log in to your monday.com account
  2. Click on your avatar in the bottom-left corner
  3. Select "Developers"
  4. Click "My access tokens" on the left menu
  5. Copy your personal access token

Step 3: Configure Your MCP Client

For Claude Desktop

  1. Open Claude Desktop
  2. Go to Settings → MCP Servers
  3. Add a new server with this configuration:
{
  "mcpServers": {
    "monday-api-mcp": {
      "command": "npx",
      "args": [
        "@mondaydotcomorg/monday-api-mcp",
        "-t",
        "your_monday_api_token"
      ]
    }
  }
}

For Cursor or Other MCP Clients

Add to your settings:

{
  "mcpServers": {
    "monday-api-mcp": {
      "command": "npx",
      "args": [
        "@mondaydotcomorg/monday-api-mcp",
        "-t",
        "your_monday_api_token"
      ],
      "env": {}
    }
  }
}

Step 5: Test Your Integration

  1. Ask Claude or your AI assistant a question like:

    • "What items do I have in board 123?"
    • "Can you create a board to manage my project?"
  2. Your assistant should now be able to interact with your monday.com account!

🧰 Available Tools

Our MCP server provides a rich set of tools that give AI assistants the ability to interact with monday.com:

CategoryToolDescription
Item Operationscreate_itemCreate a new item in a monday.com board with specified column values
delete_itemDelete an item from a board permanently
get_board_items_by_nameSearch for items by board ID and term/name
create_updateAdd an update/comment to a specific item
change_item_column_valuesModify the column values of an existing item
move_item_to_groupMove an item to a different group within the same board
Board Operationscreate_boardCreate a new monday.com board with specified columns
get_board_schemaRetrieve the structure of columns and groups for a board
create_columnAdd a new column to an existing board
delete_columnRemove a column from a board
Account Operationsget_users_by_nameRetrieve user information by name or partial name

🔮 Dynamic API Tools (Beta)

Our Dynamic API Tools feature represents a significant advancement in how AI agents can interact with monday.com. While our standard tools cover common operations, Dynamic API Tools unlock the full potential of the monday.com GraphQL API.

What are Dynamic API Tools?

Dynamic API Tools provide AI agents with complete, adaptable access to monday.com's entire API surface. This means your AI assistant can:

  1. Access any API endpoint - Not just the predefined operations we've built
  2. Generate custom GraphQL queries - Create exactly the query needed for any situation
  3. Dynamically explore monday.com's schema - Understand all available data types and their relationships

Key Dynamic API Tools

ToolDescription
all_monday_apiGenerate and execute any GraphQL query or mutation dynamically
get_graphql_schemaFetch monday.com's GraphQL schema to understand available operations
get_type_detailsRetrieve detailed information about specific GraphQL types

Unlocked Possibilities

With Dynamic API Tools, your AI assistants can:

  • Create complex reports spanning multiple boards, items, and data points
  • Perform batch operations across many items simultaneously
  • Integrate deeply with monday.com's advanced features like docs, workspaces, and activity logs
  • Discover new capabilities as monday.com adds features to their API

How to Enable

Dynamic API Tools are in beta and disabled by default. Enable them with:

npx @mondaydotcomorg/monday-api-mcp -t your_token --enable-dynamic-api-tools true

⚠️ Note: Dynamic API Tools require full API access and are not compatible with read-only mode.

🖥️ MCP Server Configuration

ArgumentFlagsDescriptionRequiredDefault
monday API Token--token, -tmonday.com API tokenYes-
API Version--version, -vmonday.com API versionNocurrent
Read Only Mode--read-only, -roEnable read-only modeNofalse
Dynamic API Tools--enable-dynamic-api-tools, -edatEnable dynamic API toolsNofalse

🔐 Authentication & Security

The server requires a monday.com API token to authenticate with the monday.com API. You can provide this token in two ways:

  1. Command line argument: -t your_monday_api_token
  2. Environment variable: monday_token=your_monday_api_token

Security Best Practices

  • Never share your API token in public repositories or discussions
  • Consider using read-only mode (--read-only) when you only need to retrieve data
  • Regularly rotate your API tokens for enhanced security

📚 Example Use Cases

Here are some examples of what you can build with our tools:

1. AI Assistant for Project Management

  • Create and manage tasks in monday.com boards
  • Get updates on project status
  • Move items between groups as they progress

2. Data Analysis & Reporting

  • Extract data from monday.com boards
  • Generate reports and insights
  • Create new boards for reporting

3. Automated Workflows

  • Create items based on external triggers
  • Update item statuses based on conditions
  • Link related items across boards

🌐 Community & Support

  • GitHub Issues: For bug reports and feature requests
  • Discussions: For questions and community discussions
  • monday.com Developer Documentation: Learn more about the monday.com API

📚 Documentation

📋 Prerequisites

Before using these tools, make sure you have:

  1. Node.js v20 or higher installed
  2. NPM v5.2.0 or higher installed
  3. A monday.com API token

🤝 Contributing

We welcome contributions from the community! Whether it's fixing bugs, improving documentation, or adding new features, your help is appreciated.

  1. Fork the repository
  2. Create your feature branch: git checkout -b feature/amazing-feature
  3. Commit your changes: git commit -m 'Add some amazing feature'
  4. Push to the branch: git push origin feature/amazing-feature
  5. Open a Pull Request

📄 License

This project is licensed under the MIT License - see the LICENSE file for details.


Built with ❤️ by the monday.com AI Team

monday.com | Developer Platform | GitHub

Recommend Servers
TraeBuild with Free GPT-4.1 & Claude 3.7. Fully MCP-Ready.
Tavily Mcp
WindsurfThe new purpose-built IDE to harness magic
Context7Context7 MCP Server -- Up-to-date code documentation for LLMs and AI code editors
CursorThe AI Code Editor
Playwright McpPlaywright MCP server
Serper MCP ServerA Serper MCP Server
DeepChatYour AI Partner on Desktop
Jina AI MCP ToolsA Model Context Protocol (MCP) server that integrates with Jina AI Search Foundation APIs.
Howtocook Mcp基于Anduin2017 / HowToCook (程序员在家做饭指南)的mcp server,帮你推荐菜谱、规划膳食,解决“今天吃什么“的世纪难题; Based on Anduin2017/HowToCook (Programmer's Guide to Cooking at Home), MCP Server helps you recommend recipes, plan meals, and solve the century old problem of "what to eat today"
MiniMax MCPOfficial MiniMax Model Context Protocol (MCP) server that enables interaction with powerful Text to Speech, image generation and video generation APIs.
TimeA Model Context Protocol server that provides time and timezone conversion capabilities. This server enables LLMs to get current time information and perform timezone conversions using IANA timezone names, with automatic system timezone detection.
EdgeOne Pages MCPAn MCP service designed for deploying HTML content to EdgeOne Pages and obtaining an accessible public URL.
ChatWiseThe second fastest AI chatbot™
Visual Studio Code - Open Source ("Code - OSS")Visual Studio Code
Baidu Map百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Amap Maps高德地图官方 MCP Server
MCP AdvisorMCP Advisor & Installation - Use the right MCP server for your needs
Zhipu Web SearchZhipu Web Search MCP Server is a search engine specifically designed for large models. It integrates four search engines, allowing users to flexibly compare and switch between them. Building upon the web crawling and ranking capabilities of traditional search engines, it enhances intent recognition capabilities, returning results more suitable for large model processing (such as webpage titles, URLs, summaries, site names, site icons, etc.). This helps AI applications achieve "dynamic knowledge acquisition" and "precise scenario adaptation" capabilities.
AiimagemultistyleA Model Context Protocol (MCP) server for image generation and manipulation using fal.ai's Stable Diffusion model.
BlenderBlenderMCP connects Blender to Claude AI through the Model Context Protocol (MCP), allowing Claude to directly interact with and control Blender. This integration enables prompt assisted 3D modeling, scene creation, and manipulation.