@@ -46,20 +46,20 @@ This server supports Browserbase's Contexts feature, which allows persisting coo
46
46
47
47
1. **Creating a Context**:
48
48
```
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
50
50
```
51
51
52
52
2. **Using a Context with a Session**:
53
53
```
54
- browserbase_create_session : Now accepts a ' context' parameter with:
54
+ browserbase_session_create : Now accepts a ' context' parameter with:
55
55
- id: The context ID to use
56
56
- name: Alternative to ID, the friendly name of the context
57
57
- persist: Whether to save changes (cookies, cache) back to the context (default: true)
58
58
```
59
59
60
60
3. **Deleting a Context**:
61
61
```
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
63
63
```
64
64
65
65
Contexts make it much easier to:
@@ -73,17 +73,17 @@ This server also provides direct cookie management capabilities:
73
73
74
74
1. **Adding Cookies**:
75
75
```
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
77
77
```
78
78
79
79
2. **Getting Cookies**:
80
80
```
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)
82
82
```
83
83
84
84
3. **Deleting Cookies**:
85
85
```
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
87
87
```
88
88
89
89
These tools are useful for:
0 commit comments