@mondaydotcomorg/monday-api-mcp 1.12.3 → 1.12.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -25,6 +25,20 @@ exports.TOOL_DESCRIPTIONS = {
|
|
|
25
25
|
- If multiple results match a search, ASK which one they mean
|
|
26
26
|
- If you're missing required information - ASK, don't guess
|
|
27
27
|
|
|
28
|
+
**CRITICAL - Multiple Results Handling:**
|
|
29
|
+
- When searching by name, ALWAYS check if multiple results match
|
|
30
|
+
- If more than one result is found and the user asked for a SPECIFIC entity (not "all" or "every"), STOP and ASK which one they mean
|
|
31
|
+
- Present the options clearly with distinguishing details (ID, relevant properties, etc.)
|
|
32
|
+
- Only proceed with the action AFTER the user confirms which one(s)
|
|
33
|
+
- Exception: If user explicitly says "all", "every", "both", etc., then apply to all matches
|
|
34
|
+
|
|
35
|
+
**NEVER GUESS - STRICT RULES:**
|
|
36
|
+
- NEVER pick "the first one" or any arbitrary result when multiple matches exist
|
|
37
|
+
- NEVER assume which entity the user meant - even if one seems "more likely"
|
|
38
|
+
- NEVER perform write operations (mutations) without explicit user confirmation when ambiguous
|
|
39
|
+
- If you find 2+ matches: DO NOT execute the action, LIST all matches with their IDs and details, WAIT for user to specify
|
|
40
|
+
- Saying "I updated the first one, let me know if you meant the other" is WRONG - you should have asked FIRST
|
|
41
|
+
|
|
28
42
|
**Multi-line Example:**
|
|
29
43
|
\`\`\`typescript
|
|
30
44
|
// 1. Get board with columns and cursor
|