You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: prompts/mcp/readmes/hyperbrowser.md
+24Lines changed: 24 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,10 @@ Best suited use cases include:
46
46
47
47
Provide detailed task instructions, relevant context, and clearly specify the desired outcome for best results. Returns the completed result or an error message if issues arise.
48
48
1.**`crawl_webpages`**: Crawl a website starting from a URL and explore linked pages. This tool allows systematic collection of content from multiple pages within a domain. Use this for larger data collection tasks, content indexing, or site mapping.
49
+
1.**`create_profile`**: Creates a new persistent Hyperbrowser profile.
50
+
1.**`delete_profile`**: Deletes an existing persistent Hyperbrowser profile.
49
51
1.**`extract_structured_data`**: Extract structured data from a webpage. This tool allows you to extract structured data from a webpage using a schema.
52
+
1.**`list_profiles`**: Lists existing persistent Hyperbrowser profiles, with optional pagination.
50
53
1.**`openai_computer_use_agent`**: This tool utilizes OpenAI's model to autonomously execute general-purpose browser-based tasks with balanced performance and reliability using a cloud browser. It handles complex interactions effectively with practical reasoning and clear execution.
51
54
52
55
Optimal for tasks requiring:
@@ -129,6 +132,18 @@ Crawl a website starting from a URL and explore linked pages. This tool allows s
129
132
|`maxPages`|`integer`*optional*||
130
133
|`sessionOptions`|`object`*optional*| Options for the browser session. Avoid setting these if not mentioned explicitly |
131
134
135
+
### Tool: **`create_profile`**
136
+
137
+
Creates a new persistent Hyperbrowser profile.
138
+
139
+
### Tool: **`delete_profile`**
140
+
141
+
Deletes an existing persistent Hyperbrowser profile.
142
+
143
+
| Parameter | Type | Description |
144
+
| - | - | - |
145
+
|`profileId`|`string`| ID of the profile to delete |
146
+
132
147
### Tool: **`extract_structured_data`**
133
148
134
149
Extract structured data from a webpage. This tool allows you to extract structured data from a webpage using a schema.
@@ -140,6 +155,15 @@ Extract structured data from a webpage. This tool allows you to extract structur
140
155
|`schema`|`string`*optional*| The json schema to use for the extraction. Must provide an object describing a spec compliant json schema, any other types are invalid. |
141
156
|`sessionOptions`|`object`*optional*| Options for the browser session. Avoid setting these if not mentioned explicitly |
142
157
158
+
### Tool: **`list_profiles`**
159
+
160
+
Lists existing persistent Hyperbrowser profiles, with optional pagination.
161
+
162
+
| Parameter | Type | Description |
163
+
| - | - | - |
164
+
|`limit`|`integer`*optional*| Number of profiles per page (optional) |
165
+
|`page`|`integer`*optional*| Page number for pagination (optional) |
166
+
143
167
### Tool: **`openai_computer_use_agent`**
144
168
145
169
This tool utilizes OpenAI's model to autonomously execute general-purpose browser-based tasks with balanced performance and reliability using a cloud browser. It handles complex interactions effectively with practical reasoning and clear execution.
Copy file name to clipboardExpand all lines: prompts/mcp/readmes/veyrax.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,6 +50,10 @@ You can use this tool to get the list of tools, method names and parameters, and
50
50
This method also returns all flows with name and id that user has access to (if any).
51
51
"
52
52
53
+
| Parameter | Type | Description |
54
+
| - | - | - |
55
+
|`question`|`string`| Query question that you want find answer for. Try to ALWAYS provide this field based on conversation with user. Could be your reasoning for calling tool. |
56
+
53
57
### Tool: **`tool_call`**
54
58
55
59
"Use this tool to execute a specific method of another tool with the provided parameters based on get-tools tool response.
@@ -60,6 +64,7 @@ You need to specify the tool name, method name, and any required parameters for
60
64
|`method`|`string`| The method of the tool to call (e.g., 'get_messages', 'send_message', 'list_events') |
61
65
|`tool`|`string`| The name of the tool to call (e.g., 'gmail', 'google-calendar', 'slack') |
62
66
|`parameters`|`object`*optional*| The parameters required by the specific tool method being called, it is MUST HAVE field. |
67
+
|`question`|`string`*optional*| User question that you want find answer for. Try to ALWAYS provide this field based on conversation with user. Could be your reasoning for calling tool. |
0 commit comments