@browserstack/mcp-server 1.5.0-beta.4 → 1.5.0-beta.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -329,11 +329,17 @@
|
|
|
329
329
|
"name": "hadSlaBreach",
|
|
330
330
|
"type": "boolean",
|
|
331
331
|
"description": "Filter to runs that did / did not breach SLA."
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
"name": "tag",
|
|
335
|
+
"type": "string",
|
|
336
|
+
"description": "Filter to runs carrying this tag (a run's own tags, or the tags it inherits from its test when it has none of its own)."
|
|
332
337
|
}
|
|
333
338
|
],
|
|
334
339
|
"intent": "List the execution history across every load test in a project — newest first, paginated. Use for 'what ran last week in this project?' or to find runs across tests to compare.",
|
|
335
340
|
"guidance": [
|
|
336
341
|
"Returns run metadata only, not metrics — use getLoadTestRunReport for a run's KPIs.",
|
|
342
|
+
"Each run carries a tags array — its own run-level tags if set (via updateLoadTest with runId), otherwise the tags inherited from its test. Filter with the tag query param.",
|
|
337
343
|
"Page with cursor + limit; nextCursor is opaque.",
|
|
338
344
|
"For a single test's history use /loadTests/{testId}/runs; for currently-live runs use /loadTests/runs/active.",
|
|
339
345
|
"One call returns the page of run history — reuse it for follow-ups and page with cursor only when more rows are needed; do not re-list the same window."
|
|
@@ -388,12 +394,18 @@
|
|
|
388
394
|
"name": "userId",
|
|
389
395
|
"type": "integer",
|
|
390
396
|
"description": "Restrict to runs started by a user."
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
"name": "tag",
|
|
400
|
+
"type": "string",
|
|
401
|
+
"description": "Filter to runs carrying this tag (a run's own tags, or the tags it inherits from its test when it has none of its own)."
|
|
391
402
|
}
|
|
392
403
|
],
|
|
393
404
|
"intent": "List load-test runs currently executing — use this for 'what's running right now?' or to find a runId to stop or monitor.",
|
|
394
405
|
"guidance": [
|
|
395
406
|
"Returns non-terminal runs across the account.",
|
|
396
407
|
"runId here is the UUID needed by getLoadTestRunStatus and stopLoadTestRun.",
|
|
408
|
+
"Each run carries a tags array — its own run-level tags if set, otherwise the tags inherited from its test. Filter with the tag query param.",
|
|
397
409
|
"vuHoursBurnedSoFar reflects consumption at the moment of the call."
|
|
398
410
|
],
|
|
399
411
|
"returns": [
|
|
@@ -879,11 +891,17 @@
|
|
|
879
891
|
"name": "framework",
|
|
880
892
|
"type": "string",
|
|
881
893
|
"required": true,
|
|
894
|
+
"description": "PLU (protocol) frameworks: k6, jmeter, gatling, locust. BLU (browser) frameworks: playwright, selenium, webdriverio, nightwatch, lcncnightwatch. Must match testType — a PLU framework for testType plu, a BLU framework for testType blu (the backend rejects a mismatched pair).",
|
|
882
895
|
"values": [
|
|
883
896
|
"k6",
|
|
884
897
|
"jmeter",
|
|
885
898
|
"gatling",
|
|
886
|
-
"locust"
|
|
899
|
+
"locust",
|
|
900
|
+
"playwright",
|
|
901
|
+
"selenium",
|
|
902
|
+
"webdriverio",
|
|
903
|
+
"nightwatch",
|
|
904
|
+
"lcncnightwatch"
|
|
887
905
|
]
|
|
888
906
|
},
|
|
889
907
|
{
|
|
@@ -1104,11 +1122,17 @@
|
|
|
1104
1122
|
"name": "hadSlaBreach",
|
|
1105
1123
|
"type": "boolean",
|
|
1106
1124
|
"description": "Only runs that breached an SLA."
|
|
1125
|
+
},
|
|
1126
|
+
{
|
|
1127
|
+
"name": "tag",
|
|
1128
|
+
"type": "string",
|
|
1129
|
+
"description": "Filter to runs carrying this tag (a run's own tags, or the tags it inherits from the test when it has none of its own)."
|
|
1107
1130
|
}
|
|
1108
1131
|
],
|
|
1109
1132
|
"intent": "List the execution history of a test — use this to find past runs of a specific test or to get a runId.",
|
|
1110
1133
|
"guidance": [
|
|
1111
1134
|
"testId is numeric; runId values returned are UUIDs.",
|
|
1135
|
+
"Each run carries a tags array — its own run-level tags if set (via updateLoadTest with runId), otherwise the tags inherited from the test. Filter with the tag query param.",
|
|
1112
1136
|
"Filter with status / verdict / date range; page with cursor + limit.",
|
|
1113
1137
|
"One call returns this test's run history — reuse it and page with cursor when needed; do not re-list the same window."
|
|
1114
1138
|
],
|