monday MCP Server
monday MCP Server
README
<div align="center">
🚀 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.
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:
- 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",
"-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
-
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!
🧰 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_column | Add a new column to an existing board | |
| delete_column | Remove a column from a board | |
| Account Operations | get_users_by_name | Retrieve 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:
- 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:
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
| Argument | Flags | Description | Required | Default |
|---|---|---|---|---|
| monday API Token | --token, -t |
monday.com API token | Yes | - |
| API Version | --version, -v |
monday.com API version | No | current |
| 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:
- Command line argument:
-t your_monday_api_token - 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:
- Node.js v20 or higher installed
- NPM v5.2.0 or higher installed
- 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.
- 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.
<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>
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。