com.monday/monday.com
平台与服务by mondaycom
用于集成 monday.com 的 MCP server,便于通过统一协议访问与操作工作流数据。
把 monday.com 工作流数据接入统一 MCP 协议,减少集成与操作成本,让自动化和 AI 协作更顺手。
什么是 com.monday/monday.com?
用于集成 monday.com 的 MCP server,便于通过统一协议访问与操作工作流数据。
README
🚀 monday.com MCP
<p> <a href="https://npmjs.com/package/@mondaydotcomorg/monday-api-mcp"><img src="https://img.shields.io/npm/v/@mondaydotcomorg/monday-api-mcp.svg?style=flat" alt="npm version"></a> <a href="https://github.com/mondaycom/mcp/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-MIT-blue.svg" alt="MIT License"></a> <a href="https://github.com/mondaycom/mcp"><img src="https://img.shields.io/github/stars/mondaycom/mcp.svg?style=social" alt="GitHub Stars"></a> <img src="https://img.shields.io/badge/Node.js-v20+-green.svg" alt="Node.js Version"> <img src="https://img.shields.io/badge/MCP-Compatible-blueviolet" alt="MCP Compatible"> <img src="https://img.shields.io/badge/Claude-Ready-orange" alt="Claude Ready"> <img src="https://img.shields.io/badge/OpenAI-Compatible-lightgrey" alt="OpenAI Compatible"> <img src="https://img.shields.io/badge/TypeScript-Powered-blue" alt="TypeScript"> </p>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.
</div>🌟 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.
👉 New to monday MCP? Start here: monday.com/w/mcp
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.
🚀 Quick Start: Hosted MCP (Recommended)
The fastest, most robust, and reliable way to connect to monday.com. Our hosted MCP service handles all the infrastructure for you - no local setup, automatic updates, and improved performance.
📚 Integration Guides
Get started with your favorite AI platform:
- Get Started Guide - First time using monday MCP?
- Claude Integration - Connect with Claude Desktop
- Cursor Integration - Integrate with Cursor IDE
- ChatGPT Integration - Connect with ChatGPT
- MS Copilot Integration - Integrate with Microsoft Copilot Studio
- Mistral Integration - Connect with Mistral AI's le Chat
- Ready-to-Use Prompts - Example prompts to get started
Quick Setup with Hosted MCP
For Cursor
Simply add this to your MCP settings:
{
"mcpServers": {
"monday-mcp": {
"url": "https://mcp.monday.com/mcp"
}
}
}
Why Use the Hosted MCP?
- ✅ No local installation - Works immediately without setup
- ✅ Automatic updates - Always get the latest features
- ✅ Better performance - Optimized infrastructure
- ✅ OAuth authentication - Secure token management
- ✅ Workspace controls - Limit access to specific workspaces
- ✅ Higher reliability - Enterprise-grade uptime
When to Use This Repository Instead
You might want to run the MCP locally or use the agent toolkit if you need to:
- 🔧 Customize the MCP server - Modify the source code for specific needs
- 🛠️ Build custom agents - Use the agent toolkit for OpenAI or custom implementations
- 🔌 Work offline - Develop without internet connectivity
- 🧪 Contribute to development - Help improve the MCP server or toolkit
🏁 Local Installation Guide
Step 1: Create a monday.com Account
If you don't already have a monday.com account:
- Go to monday.com and sign up for an account
- 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:
- Log in to your monday.com account
- Click on your avatar in the bottom-left corner
- Select "Developers"
- Click "My access tokens" on the left menu
- Copy your personal access token
Step 3: Configure Your MCP Client
For Claude Desktop
- Open Claude Desktop
- Go to Settings → MCP Servers
- Add a new server with this configuration:
{
"mcpServers": {
"monday-api-mcp": {
"command": "npx",
"args": [
"@mondaydotcomorg/monday-api-mcp@latest"
],
"env": {
"MONDAY_TOKEN": "your_monday_api_token"
}
}
}
}
For Gemini CLI
To get started with Gemini CLI, you can use the official Gemini CLI extension for monday.com.
The Gemini CLI extension bundles the monday.com MCP server with a context file and custom commands that teaches Gemini how to use the monday.com tools for powerful workflows.
To install the extension run the following command in your terminal:
gemini extensions install https://github.com/mondaycom/mcp
If you prefer to use the MCP server directly without the extension, you can add it with this command:
gemini mcp add -t http monday https://mcp.monday.com/mcp
Once you have either the extension installed or the MCP server added, start Gemini CLI by running:
gemini
Then, authenticate with your monday.com account by running the following command inside Gemini CLI:
/mcp auth monday
This will open a browser window to complete the authentication process. After authenticating, all the monday.com tools and custom commands will be available.
A few custom command to try out for the extension:
/monday:create-itemcreate item in board 123 for "Update the UI"/monday:sprint-summarysprint summary for sprint 853
For Cursor or Other MCP Clients (Local Setup)
Add to your settings:
{
"mcpServers": {
"monday-api-mcp": {
"command": "npx",
"args": [
"@mondaydotcomorg/monday-api-mcp@latest"
],
"env": {
"MONDAY_TOKEN": "your_monday_api_token"
}
}
}
}
Step 5: Test Your Integration
-
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?"
-
Your assistant should now be able to interact with your monday.com account!
⚙️ Advanced Hosted MCP Configuration
Using Authorization Headers
To specify a custom authorization header and API version with the hosted MCP:
{
"mcpServers": {
"monday-api-mcp-hosted": {
"command": "npx",
"args": [
"-p",
"node@20",
"mcp-remote",
"https://mcp.monday.com/mcp",
"--header",
"Authorization:${AUTH_HEADER}"
],
"env": {
"AUTH_HEADER": "Bearer <your_token>"
}
}
}
}
Specifying API Version
You can specify the API version you want to use with the --header parameter:
{
"mcpServers": {
"monday-api-mcp-hosted": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.monday.com/mcp",
"--header",
"Api-Version:${API_VERSION}"
],
"env": {
"API_VERSION": "2025-07"
}
}
}
}
Installing the Monday MCP App
For OAuth authentication and workspace controls, install the Monday MCP app from the marketplace:
- Visit monday MCP app in the marketplace
- Click "Install" and follow the instructions to add it to your account
🧰 Available Tools
Our MCP server provides a rich set of tools that give AI assistants the ability to interact with monday.com:
| Category | Tool | Description |
|---|---|---|
| Item Operations | create_item | Create a new item in a monday.com board with specified column values |
| delete_item | Delete an item from a board permanently | |
| get_board_items_by_name | Search for items by board ID and term/name | |
| create_update | Add an update/comment to a specific item | |
| change_item_column_values | Modify the column values of an existing item | |
| move_item_to_group | Move an item to a different group within the same board | |
| Board Operations | create_board | Create a new monday.com board with specified columns |
| get_board_schema | Retrieve the structure of columns and groups for a board | |
| create_group | Create a new group in a monday.com board | |
| create_column | Add a new column to an existing board | |
| delete_column | Remove a column from a board | |
| Account Operations | list_users_and_teams | Retrieve user or team's details by id, name or by searching the account |
| WorkForms Operations | create_form | Create a new monday.com form |
| get_form | Get a form by its token |
🎨 monday.com Apps Framework Tools
Looking to build custom monday.com apps with AI assistance? The Apps Framework Tools provide AI agents with complete access to monday.com's app development platform, enabling you to create, manage, and deploy custom apps directly through AI assistants.
📖 View Full Apps Framework Tools Documentation
🔮 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:
- Access any API endpoint - Not just the predefined operations we've built
- Generate custom GraphQL queries - Create exactly the query needed for any situation
- Dynamically explore monday.com's schema - Understand all available data types and their relationships
Key Dynamic API Tools
| Tool | Description |
|---|---|
| all_monday_api | Generate and execute any GraphQL query or mutation dynamically |
| get_graphql_schema | Fetch monday.com's GraphQL schema to understand available operations |
| get_type_details | Retrieve 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:
MONDAY_TOKEN=your_monday_api_token npx @mondaydotcomorg/monday-api-mcp@latest --enable-dynamic-api-tools true
You can also use the 'only' mode to exclusively enable Dynamic API Tools:
MONDAY_TOKEN=your_monday_api_token npx @mondaydotcomorg/monday-api-mcp@latest --enable-dynamic-api-tools only
When 'only' mode is enabled, the server will provide just the Dynamic API Tools, filtering out all other standard tools. This is useful for advanced users who want to work directly with the GraphQL API.
⚠️ Note: Dynamic API Tools require full API access and are not compatible with read-only mode.
🖥️ MCP Server Configuration
| Argument | Flags | Description | Required | Default |
|---|---|---|---|---|
| monday.com API Token | --token, -t | monday.com API token | Yes | - |
| API Version | --version, -v | monday.com API version | No | current |
| Mode | --mode, -m | Tool mode: default for standard platform tools, apps for Apps Framework tools | No | default |
| Read Only Mode | --read-only, -ro | Enable read-only mode | No | false |
| Dynamic API Tools | --enable-dynamic-api-tools, -edat | Enable dynamic API tools | No | false |
🔐 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:
- Environment variable:
MONDAY_TOKEN=your_monday_api_token - Command line argument:
-t 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
🌐 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:
- Node.js v20 or higher installed
- NPM v5.2.0 or higher installed
- A monday.com API token
🛠️ How to develop in the repo
To develop for the repo:
- Clone the repository
- Install dependencies:
yarn install - Build the project:
yarn build - Copy the path of the dist/index.js file in the of the
monday-api-mcppackage. - Change the config to work locally
"monday-api-mcp": {
"command": "node",
"args": [
"<your_full_path_to_the_package>/dist/index.js",
"--enable-dynamic-api-tools",
"true"
],
"env": {
"MONDAY_TOKEN": "your_monday_api_token"
}
}
🤝 Contributing
We welcome contributions from the community! Whether it's fixing bugs, improving documentation, or adding new features, your help is appreciated.
- Fork the repository
- Create your feature branch:
git checkout -b feature/amazing-feature - Commit your changes:
git commit -m 'Add some amazing feature' - Push to the branch:
git push origin feature/amazing-feature - Open a Pull Request
📄 License
This project is licensed under the MIT License - see the LICENSE file for details.
It is clarified that the server uses the monday.com API, which is subject to monday.com's Developer Terms
<div align="center"> <p>Built with ❤️ by the monday.com AI Team</p> <p> <a href="https://monday.com">monday.com</a> | <a href="https://developer.monday.com">Developer Platform</a> | <a href="https://github.com/mondaycom/mcp">GitHub</a> </p> </div>
常见问题
com.monday/monday.com 是什么?
用于集成 monday.com 的 MCP server,便于通过统一协议访问与操作工作流数据。
相关 Skills
Slack动图
by anthropics
面向Slack的动图制作Skill,内置emoji/消息GIF的尺寸、帧率和色彩约束、校验与优化流程,适合把创意或上传图片快速做成可直接发送的Slack动画。
✎ 帮你快速做出适配 Slack 的动图,内置约束规则和校验工具,少踩上传与播放坑,做表情包和演示都更省心。
MCP构建
by anthropics
聚焦高质量 MCP Server 开发,覆盖协议研究、工具设计、错误处理与传输选型,适合用 FastMCP 或 MCP SDK 对接外部 API、封装服务能力。
✎ 想让 LLM 稳定调用外部 API,就用 MCP构建:从 Python 到 Node 都有成熟指引,帮你更快做出高质量 MCP 服务器。
接口测试套件
by alirezarezvani
扫描 Next.js、Express、FastAPI、Django REST 的 API 路由,自动生成覆盖鉴权、参数校验、错误码、分页、上传与限流场景的 Vitest 或 Pytest 测试套件。
✎ 帮你把API与集成测试自动化跑顺,减少回归漏测;能力全面,尤其适合复杂接口场景的QA团队。
相关 MCP Server
Slack 消息
编辑精选by Anthropic
Slack 是让 AI 助手直接读写你的 Slack 频道和消息的 MCP 服务器。
✎ 这个服务器解决了团队协作中需要 AI 实时获取 Slack 信息的痛点,特别适合开发团队让 Claude 帮忙汇总频道讨论或发送通知。不过,它目前只是参考实现,文档有限,不建议在生产环境直接使用——更适合开发者学习 MCP 如何集成第三方服务。
by netdata
io.github.netdata/mcp-server 是让 AI 助手实时监控服务器指标和日志的 MCP 服务器。
✎ 这个工具解决了运维人员需要手动检查系统状态的痛点,最适合 DevOps 团队让 Claude 自动分析性能数据。不过,它依赖 NetData 的现有部署,如果你没用过这个监控平台,得先花时间配置。
by d4vinci
Scrapling MCP Server 是专为现代网页设计的智能爬虫工具,支持绕过 Cloudflare 等反爬机制。
✎ 这个工具解决了爬取动态网页和反爬网站时的头疼问题,特别适合需要批量采集电商价格或新闻数据的开发者。不过,它依赖外部浏览器引擎,资源消耗较大,不适合轻量级任务。