@recapt/mcp 0.0.42 → 0.0.43

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@recapt/mcp",
3
- "version": "0.0.42",
3
+ "version": "0.0.43",
4
4
  "description": "MCP exposing recapt behavioral intelligence to AI coding agents",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -47,7 +47,7 @@ Investigate the specific issue:
47
47
 
48
48
  - Search: "console errors" → `get_console_errors` (often the culprit)
49
49
  - Search: "dead clicks" → `get_dead_clicks` (broken interactions)
50
- - Search: "investigate issue" `investigate_issue`
50
+ - Search: "investigate issue" to discover available investigation tools
51
51
 
52
52
  ### 5. Examine Sessions
53
53
 
@@ -114,7 +114,7 @@ Once you've identified the cause:
114
114
  | Scope | "element friction" | `get_element_friction` |
115
115
  | Root cause | "console errors" | `get_console_errors` |
116
116
  | Root cause | "dead clicks" | `get_dead_clicks` |
117
- | Root cause | "investigate issue" | `investigate_issue` |
117
+ | Root cause | "investigate issue" | Use `search_tools` to discover investigation tools |
118
118
  | Sessions | "session details" | `search_sessions`, `get_session_details` |
119
119
  | Fix | "propose fix" | `propose_fix` |
120
120
  | Track | "deployment" | `confirm_deployment`, `evaluate_fix` |
@@ -301,7 +301,7 @@ The organization will review issues in their dashboard and manually:
301
301
 
302
302
  For each high-priority issue or opportunity, search for investigation tools:
303
303
 
304
- - Search: "investigate issue" `investigate_issue`, `validate_issue`
304
+ - Search: "investigate issue" to discover available investigation and validation tools
305
305
  - This provides detailed context: affected sessions, element interactions, timing patterns
306
306
 
307
307
  For flow opportunities, also consider:
@@ -383,11 +383,7 @@ You are running in Fix Mode with GitHub connected. Use the organization's GitHub
383
383
 
384
384
  #### 1. Investigate the Issue
385
385
 
386
- Get detailed context about the issue:
387
-
388
- ```
389
- investigate_issue({ issue_id: "<issue_id>" })
390
- ```
386
+ Use `search_tools` to find relevant investigation tools and perform a thorough investigation of the issue.
391
387
 
392
388
  This provides:
393
389
 
@@ -398,24 +394,13 @@ This provides:
398
394
 
399
395
  #### 2. Check Similar Fixes
400
396
 
401
- Before implementing, check if similar issues have been fixed before:
402
-
403
- ```
404
- get_similar_fixes({
405
- page_path: "<page_path>",
406
- category: "<issue_category>"
407
- })
408
- ```
397
+ Before implementing, use `search_tools` to find remediation history tools and check if similar issues have been fixed before.
409
398
 
410
399
  Learn from past attempts - what worked, what didn't.
411
400
 
412
401
  #### 3. Validate the Issue
413
402
 
414
- Confirm the issue is still occurring and worth fixing:
415
-
416
- ```
417
- validate_issue({ issue_id: "<issue_id>" })
418
- ```
403
+ Use `search_tools` to find validation tools and confirm the issue is still occurring and worth fixing.
419
404
 
420
405
  If the issue has resolved itself or has very low occurrence, you may skip fixing it.
421
406
 
@@ -605,8 +590,8 @@ If the user agrees:
605
590
  | Flows | "analyze flow" | `analyze_flow`, `get_flow_friction` |
606
591
  | Personas | "personas" | `discover_personas` |
607
592
  | Compare | "compare cohorts" | `compare_cohorts` |
608
- | Investigate | "investigate issue" | `investigate_issue`, `validate_issue` |
593
+ | Investigate | "investigate issue" | Use `search_tools` to discover available investigation and validation tools |
609
594
  | Triage | "dismiss issue" | `dismiss_issue`, `mark_intended_behavior` |
610
- | Fix | "propose fix" | `propose_fix`, `get_similar_fixes`, `get_fix_history` |
595
+ | Fix | "propose fix" | `propose_fix` |
611
596
  | Track | "deployment" | `confirm_deployment`, `evaluate_fix`, `list_pending_fixes` |
612
597
  | Learn | "site knowledge" | `get_site_knowledge`, `add_site_knowledge` |