2.5 KiB
2.5 KiB
| name | description | homepage | metadata | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| monday | Access monday.com work management platform via MCP. Use for creating/managing items, boards, groups, columns, and users. Triggers on "monday", "monday.com", "work items", "project board", or requests to manage tasks and workflows in monday.com. | https://monday.com |
|
monday.com Work Management
Access monday.com boards, items, and workflows via the official MCP server.
Setup
- Get your API token from monday.com: Account → Developers → My access tokens
- Set the environment variable:
export MONDAY_API_TOKEN="your-api-token"
MCP Server
Hosted (recommended):
{
"mcpServers": {
"monday": {
"url": "https://mcp.monday.com/mcp"
}
}
}
Local via npx:
{
"mcpServers": {
"monday": {
"command": "npx",
"args": ["@mondaydotcomorg/monday-api-mcp@latest", "-t", "${MONDAY_API_TOKEN}"]
}
}
}
Optional flags:
--read-only/-ro- Enable read-only mode--mode apps- Use apps mode for app-specific tools--enable-dynamic-api-tools- Enable beta GraphQL tools
Available Tools
Item Operations
create_item- Create a new item on a boarddelete_item- Delete an itemget_board_items_by_name- Search items by namecreate_update- Add an update/comment to an itemchange_item_column_values- Update item column valuesmove_item_to_group- Move item to a different group
Board Operations
create_board- Create a new boardget_board_schema- Get board structure and columnscreate_group- Create a group within a boardcreate_column- Add a column to a boarddelete_column- Remove a column from a board
Account Operations
list_users_and_teams- List workspace users and teams
WorkForms Operations
create_form- Create a new WorkFormget_form- Retrieve form details
Dynamic API Tools (Beta)
all_monday_api- Execute arbitrary GraphQL queriesget_graphql_schema- Retrieve API schemaget_type_details- Get details for specific types
Example Queries
- "Create a new item on my Tasks board"
- "Show me all items in the Marketing board"
- "Move the website redesign task to Done"
- "Add a comment to the Q4 planning item"
- "List all users in my workspace"
Notes
- Requires Node.js v20+ for local installation
- API token permissions determine available operations
- Use
--read-onlyflag for safer exploration