monday-automation
Automatiza flujos de trabajo de Monday.com con Rube MCP
Deja de gestionar manualmente tableros y elementos de Monday.com. Esta habilidad automatiza la creación de tableros, actualizaciones de elementos y flujos de trabajo del equipo a través de integración directa con la API.
下載技能 ZIP
在 Claude 中上傳
前往 設定 → 功能 → 技能 → 上傳技能
開啟並開始使用
測試它
正在使用「monday-automation」。 Create a board called 'Sprint 23' with status and date columns
預期結果:
Board 'Sprint 23' created successfully with ID 1234567890. Added status column 'status_1' with labels ['Working on it', 'Done', 'Stuck'] and date column 'date0'. Board is ready for items.
正在使用「monday-automation」。 Update item 'API Integration' to status 'Done'
預期結果:
Updated item ID 9876543210 status column 'status_1' to 'Done'. Change applied successfully.
安全審計
安全Static analysis detected 191 'external_commands' patterns in SKILL.md, but these are all backtick-enclosed tool names (e.g., `MONDAY_LIST_BOARDS`, `RUBE_SEARCH_TOOLS`) used as markdown code references in documentation. No actual code execution or shell commands present. Network reference is a legitimate HTTPS URL for Rube MCP server endpoint. This is documentation-only content with no executable code.
風險因素
⚙️ 外部命令 (1)
🌐 網路存取 (1)
品質評分
你能建構什麼
Configuración de Tablero de Proyecto
Los gerentes de proyecto crean nuevos tableros de Monday.com con columnas predefinidas, grupos y flujos de trabajo de estado para nuevas iniciativas
Automatización de Estado de Tareas
Los líderes de equipo actualizan masivamente estados de elementos, asignan miembros del equipo y establecen fechas límite en múltiples elementos de Monday.com
Integración de Flujos de Trabajo
Los desarrolladores integran Monday.com con sistemas externos creando elementos, actualizando columnas y agregando comentarios basados en disparadores
試試這些提示
Create a Monday.com board called 'Q1 Marketing Campaign' in my default workspace with columns for Status, Due Date, and Assignee.
Find all items in the 'Development' group on board 'Product Roadmap' and update their status to 'Done'.
Add 5 new items to board 'Content Calendar' in group 'February' with title 'Blog Post 1' through 'Blog Post 5', status 'To Do', and assigned to user ID 12345.
List all items from board 'Backlog' that have status 'Blocked', then move them to the 'Priority Review' group and add an update comment requesting assessment.
最佳實務
- Always call RUBE_SEARCH_TOOLS first to get current schemas before using Monday.com tools
- Resolve display names to IDs before operations—use MONDAY_LIST_BOARDS to find board_id, MONDAY_LIST_COLUMNS for column_id
- Use MONDAY_CHANGE_SIMPLE_COLUMN_VALUE for text/status/dropdown updates and MONDAY_UPDATE_ITEM for complex types like timeline or people
- Test workflows on a test board first to verify column value formats before applying to production boards
避免
- Do not use column titles (e.g., 'Status') directly—always resolve to column IDs (e.g., 'status_1') from tool responses
- Do not mix up ID formats—board and item IDs are integers, but group IDs and column IDs are strings
- Do not use MONDAY_CREATE_ITEM for subitems—subitems require GraphQL mutations through MONDAY_CREATE_OBJECT
- Do not skip connection verification—always confirm Monday.com connection shows ACTIVE before running workflows