This commit is contained in:
Josh at WLTechBlog
2025-08-19 06:15:55 -05:00
parent 58e361ba70
commit 36adab7878
9 changed files with 506 additions and 46 deletions

View File

@@ -35,9 +35,9 @@ web_navigate_cremotemcp:
Interact with web elements through various actions.
**Parameters:**
- `action` (required): One of "click", "fill", "submit", "upload"
- `action` (required): One of "click", "fill", "submit", "upload", "select"
- `selector` (required): CSS selector for the target element
- `value` (optional): Value for fill/upload actions
- `value` (optional): Value for fill/upload/select actions
- `tab` (optional): Specific tab ID to use
- `timeout` (optional): Timeout in seconds (default: 5)
@@ -51,6 +51,11 @@ web_interact_cremotemcp:
action: "fill"
selector: "input[name='email']"
value: "user@example.com"
web_interact_cremotemcp:
action: "select"
selector: "#country"
value: "United States"
```
### 3. `web_extract_cremotemcp`