Skip to content

Commit 78e4843

Browse files
resolve conflicts
2 parents 980e3c9 + 620303b commit 78e4843

24 files changed

+2483
-2233
lines changed

browserbase/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,20 +46,20 @@ This server supports Browserbase's Contexts feature, which allows persisting coo
4646
4747
1. **Creating a Context**:
4848
```
49-
browserbase_create_context: Creates a new context, optionally with a friendly name
49+
browserbase_context_create: Creates a new context, optionally with a friendly name
5050
```
5151
5252
2. **Using a Context with a Session**:
5353
```
54-
browserbase_create_session: Now accepts a 'context' parameter with:
54+
browserbase_session_create: Now accepts a 'context' parameter with:
5555
- id: The context ID to use
5656
- name: Alternative to ID, the friendly name of the context
5757
- persist: Whether to save changes (cookies, cache) back to the context (default: true)
5858
```
5959
6060
3. **Deleting a Context**:
6161
```
62-
browserbase_delete_context: Deletes a context when you no longer need it
62+
browserbase_context_delete: Deletes a context when you no longer need it
6363
```
6464
6565
Contexts make it much easier to:
@@ -73,17 +73,17 @@ This server also provides direct cookie management capabilities:
7373
7474
1. **Adding Cookies**:
7575
```
76-
browserbase_add_cookies: Add cookies to the current browser session with full control over properties
76+
browserbase_cookies_add: Add cookies to the current browser session with full control over properties
7777
```
7878
7979
2. **Getting Cookies**:
8080
```
81-
browserbase_get_cookies: View all cookies in the current session (optionally filtered by URLs)
81+
browserbase_cookies_get: View all cookies in the current session (optionally filtered by URLs)
8282
```
8383
8484
3. **Deleting Cookies**:
8585
```
86-
browserbase_delete_cookies: Delete specific cookies or clear all cookies from the session
86+
browserbase_cookies_delete: Delete specific cookies or clear all cookies from the session
8787
```
8888
8989
These tools are useful for:

browserbase/package-lock.json

Lines changed: 21 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

browserbase/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,9 @@
2222
"dependencies": {
2323
"@browserbasehq/sdk": "^2.0.0",
2424
"@modelcontextprotocol/sdk": "^1.10.2",
25+
"playwright-core": "^1.45.3",
2526
"puppeteer-core": "^23.9.0",
26-
"playwright-core": "^1.45.3"
27+
"zod": "^3.24.3"
2728
},
2829
"devDependencies": {
2930
"shx": "^0.3.4",

0 commit comments

Comments
 (0)