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
@@ -144,7 +187,7 @@ export default function addRCATools(
144
187
145
188
tools.fetchRCA=server.tool(
146
189
"fetchRCA",
147
-
"Fetch AI Root Cause Analysis for failed BrowserStack Automate/App-Automate tests. Suggests fixes only; never auto-apply, require explicit user approval.",
190
+
"Fetch AI Root Cause Analysis for the current user's failed BrowserStack Automate/App-Automate tests. Suggests fixes only; never auto-apply, require explicit user approval.",
148
191
FETCH_RCA_PARAMS,
149
192
async(args)=>{
150
193
try{
@@ -163,7 +206,7 @@ export default function addRCATools(
163
206
164
207
tools.getBuildId=server.tool(
165
208
"getBuildId",
166
-
"Get the BrowserStack build ID for a given project and build name.",
209
+
"Get the BrowserStack build ID for a given project and build name, scoped to the current user's builds.",
167
210
GET_BUILD_ID_PARAMS,
168
211
async(args)=>{
169
212
try{
@@ -180,6 +223,25 @@ export default function addRCATools(
180
223
},
181
224
);
182
225
226
+
tools.listBuildId=server.tool(
227
+
"listBuildId",
228
+
"Get the latest build ID for a project and build name, across all users (no user filter).",
0 commit comments