@browserstack/mcp-server 1.2.0 → 1.2.2

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.
Files changed (36) hide show
  1. package/README.md +6 -1
  2. package/dist/index.d.ts +2 -1
  3. package/dist/index.js +5 -4
  4. package/dist/lib/device-cache.d.ts +1 -0
  5. package/dist/lib/device-cache.js +28 -0
  6. package/dist/oninitialized.js +4 -1
  7. package/dist/server-factory.d.ts +24 -2
  8. package/dist/server-factory.js +55 -22
  9. package/dist/tools/accessibility.d.ts +1 -1
  10. package/dist/tools/accessibility.js +4 -2
  11. package/dist/tools/appautomate-utils/appautomate.d.ts +2 -1
  12. package/dist/tools/appautomate-utils/appautomate.js +12 -9
  13. package/dist/tools/appautomate.d.ts +1 -1
  14. package/dist/tools/appautomate.js +60 -9
  15. package/dist/tools/applive-utils/start-session.d.ts +2 -1
  16. package/dist/tools/applive-utils/start-session.js +17 -6
  17. package/dist/tools/applive.d.ts +3 -2
  18. package/dist/tools/applive.js +24 -18
  19. package/dist/tools/automate.d.ts +1 -1
  20. package/dist/tools/automate.js +3 -1
  21. package/dist/tools/bstack-sdk.d.ts +1 -1
  22. package/dist/tools/bstack-sdk.js +3 -1
  23. package/dist/tools/getFailureLogs.d.ts +1 -1
  24. package/dist/tools/getFailureLogs.js +4 -5
  25. package/dist/tools/live.d.ts +1 -1
  26. package/dist/tools/live.js +17 -5
  27. package/dist/tools/sdk-utils/constants.js +4 -1
  28. package/dist/tools/sdk-utils/types.d.ts +2 -1
  29. package/dist/tools/sdk-utils/types.js +1 -0
  30. package/dist/tools/selfheal.d.ts +1 -1
  31. package/dist/tools/selfheal.js +3 -1
  32. package/dist/tools/testmanagement-utils/create-testcase.d.ts +4 -0
  33. package/dist/tools/testmanagement-utils/create-testcase.js +6 -0
  34. package/dist/tools/testmanagement.d.ts +1 -1
  35. package/dist/tools/testmanagement.js +12 -10
  36. package/package.json +1 -1
package/README.md CHANGED
@@ -25,10 +25,13 @@
25
25
  <img src="assets/thumbnail.webp">
26
26
  </a>
27
27
  </div>
28
+
28
29
 
29
30
  Manage test cases, execute manual or automated tests, debug issues, and even fix code—directly within tools like Cursor, Claude, or any MCP-enabled client, using plain English.
30
31
  #### Test from anywhere:
31
32
  Easily connect the BrowserStack Test Platform to your favourite AI tools, such as IDEs, LLMs, or agentic workflows.
33
+ #### Test with natural language:
34
+ Manage, execute, debug tests, and even fix code using plain English prompts.
32
35
  #### Reduced context switching:
33
36
  Stay in flow—keep all project context in one place and trigger actions directly from your IDE or LLM.
34
37
 
@@ -115,7 +118,7 @@ Create and manage test cases, create test plans and trigger test runs using natu
115
118
  "update test results as passed for Login tests test run from My Demo Project"
116
119
  ```
117
120
 
118
- ### 🧪 Access BrowserStack AI agnets
121
+ ### 🧪 Access BrowserStack AI agents
119
122
 
120
123
  Generate test cases from PRDs, convert manual tests to low-code automation, and auto-heal flaky scripts powered by BrowserStack’s AI agents, seamlessly integrated into your workflow. Below are few example prompts to access Browserstack AI agents
121
124
 
@@ -135,6 +138,8 @@ Generate test cases from PRDs, convert manual tests to low-code automation, and
135
138
 
136
139
  ## 🛠️ Installation
137
140
 
141
+ [![Install in VS Code](https://img.shields.io/badge/VS_Code-Install_Server-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](http://mcp.browserstack.com/one-click-setup?client=vscode) &nbsp; [![Install in Cursor](https://img.shields.io/badge/Cursor-Install_Server-24bfa5?style=flat-square&color=000000&logo=visualstudiocode&logoColor=white)](http://mcp.browserstack.com/one-click-setup?client=cursor)
142
+
138
143
  1. **Create a BrowserStack Account**
139
144
 
140
145
  - Sign up for [BrowserStack](https://www.browserstack.com/users/sign_up) if you don't have an account already.
package/dist/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env node
2
2
  import "dotenv/config";
3
- export { createMcpServer } from "./server-factory.js";
4
3
  export { setLogger } from "./logger.js";
4
+ export { BrowserStackMcpServer } from "./server-factory.js";
5
+ export { trackMCP } from "./lib/instrumentation.js";
package/dist/index.js CHANGED
@@ -5,7 +5,7 @@ const require = createRequire(import.meta.url);
5
5
  const packageJson = require("../package.json");
6
6
  import "dotenv/config";
7
7
  import logger from "./logger.js";
8
- import { createMcpServer } from "./server-factory.js";
8
+ import { BrowserStackMcpServer } from "./server-factory.js";
9
9
  async function main() {
10
10
  logger.info("Launching BrowserStack MCP server, version %s", packageJson.version);
11
11
  const remoteMCP = process.env.REMOTE_MCP === "true";
@@ -22,16 +22,17 @@ async function main() {
22
22
  throw new Error("BROWSERSTACK_ACCESS_KEY environment variable is required");
23
23
  }
24
24
  const transport = new StdioServerTransport();
25
- const server = createMcpServer({
25
+ const mcpServer = new BrowserStackMcpServer({
26
26
  "browserstack-username": username,
27
27
  "browserstack-access-key": accessKey,
28
28
  });
29
- await server.connect(transport);
29
+ await mcpServer.getInstance().connect(transport);
30
30
  }
31
31
  main().catch(console.error);
32
32
  // Ensure logs are flushed before exit
33
33
  process.on("exit", () => {
34
34
  logger.flush();
35
35
  });
36
- export { createMcpServer } from "./server-factory.js";
37
36
  export { setLogger } from "./logger.js";
37
+ export { BrowserStackMcpServer } from "./server-factory.js";
38
+ export { trackMCP } from "./lib/instrumentation.js";
@@ -7,3 +7,4 @@ export declare enum BrowserStackProducts {
7
7
  * Fetches and caches BrowserStack datasets (live + app_live + app_automate) with a shared TTL.
8
8
  */
9
9
  export declare function getDevicesAndBrowsers(type: BrowserStackProducts): Promise<any>;
10
+ export declare function shouldSendStartedEvent(): boolean;
@@ -2,9 +2,11 @@ import fs from "fs";
2
2
  import os from "os";
3
3
  import path from "path";
4
4
  import { apiClient } from "./apiClient.js";
5
+ import config from "../config.js";
5
6
  const CACHE_DIR = path.join(os.homedir(), ".browserstack", "combined_cache");
6
7
  const CACHE_FILE = path.join(CACHE_DIR, "data.json");
7
8
  const TTL_MS = 24 * 60 * 60 * 1000; // 1 day
9
+ const TTL_STARTED_MS = 3 * 60 * 60 * 1000; // 3 Hours
8
10
  export var BrowserStackProducts;
9
11
  (function (BrowserStackProducts) {
10
12
  BrowserStackProducts["LIVE"] = "live";
@@ -49,3 +51,29 @@ export async function getDevicesAndBrowsers(type) {
49
51
  fs.writeFileSync(CACHE_FILE, JSON.stringify(cache), "utf8");
50
52
  return cache[type];
51
53
  }
54
+ // Rate limiter for started event (3H)
55
+ export function shouldSendStartedEvent() {
56
+ try {
57
+ if (config && config.REMOTE_MCP) {
58
+ return false;
59
+ }
60
+ if (!fs.existsSync(CACHE_DIR)) {
61
+ fs.mkdirSync(CACHE_DIR, { recursive: true });
62
+ }
63
+ let cache = {};
64
+ if (fs.existsSync(CACHE_FILE)) {
65
+ const raw = fs.readFileSync(CACHE_FILE, "utf8");
66
+ cache = JSON.parse(raw || "{}");
67
+ const last = parseInt(cache.lastStartedEvent, 10);
68
+ if (!isNaN(last) && Date.now() - last < TTL_STARTED_MS) {
69
+ return false;
70
+ }
71
+ }
72
+ cache.lastStartedEvent = Date.now();
73
+ fs.writeFileSync(CACHE_FILE, JSON.stringify(cache, null, 2), "utf8");
74
+ return true;
75
+ }
76
+ catch {
77
+ return true;
78
+ }
79
+ }
@@ -1,4 +1,5 @@
1
1
  import { trackMCP } from "./lib/instrumentation.js";
2
+ import { shouldSendStartedEvent } from "./lib/device-cache.js";
2
3
  export function setupOnInitialized(server, config) {
3
4
  const nodeVersion = process.versions.node;
4
5
  // Check for Node.js version
@@ -6,6 +7,8 @@ export function setupOnInitialized(server, config) {
6
7
  throw new Error("Node version is not supported. Please upgrade to 18.0.0 or later.");
7
8
  }
8
9
  server.server.oninitialized = () => {
9
- trackMCP("started", server.server.getClientVersion(), undefined, config);
10
+ if (shouldSendStartedEvent()) {
11
+ trackMCP("started", server.server.getClientVersion(), undefined, config);
12
+ }
10
13
  };
11
14
  }
@@ -1,3 +1,25 @@
1
- import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
1
+ import { McpServer, RegisteredTool } from "@modelcontextprotocol/sdk/server/mcp.js";
2
2
  import { BrowserStackConfig } from "./lib/types.js";
3
- export declare function createMcpServer(config: BrowserStackConfig): McpServer;
3
+ /**
4
+ * Wrapper class for BrowserStack MCP Server
5
+ * Stores a map of registered tools by name
6
+ */
7
+ export declare class BrowserStackMcpServer {
8
+ private config;
9
+ server: McpServer;
10
+ tools: Record<string, RegisteredTool>;
11
+ constructor(config: BrowserStackConfig);
12
+ /**
13
+ * Calls each tool-adder function and collects their returned tools
14
+ */
15
+ private registerTools;
16
+ /**
17
+ * Expose the underlying MCP server instance
18
+ */
19
+ getInstance(): McpServer;
20
+ /**
21
+ * Get all registered tools
22
+ */
23
+ getTools(): Record<string, RegisteredTool>;
24
+ getTool(name: string): RegisteredTool | undefined;
25
+ }
@@ -1,4 +1,4 @@
1
- import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
1
+ import { McpServer, } from "@modelcontextprotocol/sdk/server/mcp.js";
2
2
  import { createRequire } from "module";
3
3
  const require = createRequire(import.meta.url);
4
4
  const packageJson = require("../package.json");
@@ -13,25 +13,58 @@ import addAutomateTools from "./tools/automate.js";
13
13
  import addSelfHealTools from "./tools/selfheal.js";
14
14
  import addAppLiveTools from "./tools/applive.js";
15
15
  import { setupOnInitialized } from "./oninitialized.js";
16
- function registerTools(server, config) {
17
- addAccessibilityTools(server, config);
18
- addSDKTools(server, config);
19
- addAppLiveTools(server, config);
20
- addBrowserLiveTools(server, config);
21
- addTestManagementTools(server, config);
22
- addAppAutomationTools(server, config);
23
- addFailureLogsTools(server, config);
24
- addAutomateTools(server, config);
25
- addSelfHealTools(server, config);
26
- }
27
- export function createMcpServer(config) {
28
- logger.info("Creating BrowserStack MCP Server, version %s", packageJson.version);
29
- // Create an MCP server
30
- const server = new McpServer({
31
- name: "BrowserStack MCP Server",
32
- version: packageJson.version,
33
- });
34
- setupOnInitialized(server, config);
35
- registerTools(server, config);
36
- return server;
16
+ /**
17
+ * Wrapper class for BrowserStack MCP Server
18
+ * Stores a map of registered tools by name
19
+ */
20
+ export class BrowserStackMcpServer {
21
+ config;
22
+ server;
23
+ tools = {};
24
+ constructor(config) {
25
+ this.config = config;
26
+ logger.info("Creating BrowserStack MCP Server, version %s", packageJson.version);
27
+ this.server = new McpServer({
28
+ name: "BrowserStack MCP Server",
29
+ version: packageJson.version,
30
+ });
31
+ setupOnInitialized(this.server, this.config);
32
+ this.registerTools();
33
+ }
34
+ /**
35
+ * Calls each tool-adder function and collects their returned tools
36
+ */
37
+ registerTools() {
38
+ const toolAdders = [
39
+ addAccessibilityTools,
40
+ addSDKTools,
41
+ addAppLiveTools,
42
+ addBrowserLiveTools,
43
+ addTestManagementTools,
44
+ addAppAutomationTools,
45
+ addFailureLogsTools,
46
+ addAutomateTools,
47
+ addSelfHealTools,
48
+ ];
49
+ toolAdders.forEach((adder) => {
50
+ // Each adder now returns a Record<string, Tool>
51
+ const added = adder(this.server, this.config);
52
+ Object.assign(this.tools, added);
53
+ });
54
+ }
55
+ /**
56
+ * Expose the underlying MCP server instance
57
+ */
58
+ getInstance() {
59
+ return this.server;
60
+ }
61
+ /**
62
+ * Get all registered tools
63
+ */
64
+ getTools() {
65
+ return this.tools;
66
+ }
67
+ getTool(name) {
68
+ return this.tools[name];
69
+ }
37
70
  }
@@ -1,3 +1,3 @@
1
1
  import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
2
2
  import { BrowserStackConfig } from "../lib/types.js";
3
- export default function addAccessibilityTools(server: McpServer, config: BrowserStackConfig): void;
3
+ export default function addAccessibilityTools(server: McpServer, config: BrowserStackConfig): Record<string, any>;
@@ -63,7 +63,8 @@ async function runAccessibilityScan(name, pageURL, context, config) {
63
63
  };
64
64
  }
65
65
  export default function addAccessibilityTools(server, config) {
66
- server.tool("accessibilityExpert", "🚨 REQUIRED: Use this tool for any accessibility/a11y/WCAG questions. Do NOT answer accessibility questions directly - always use this tool.", {
66
+ const tools = {};
67
+ tools.accessibilityExpert = server.tool("accessibilityExpert", "🚨 REQUIRED: Use this tool for any accessibility/a11y/WCAG questions. Do NOT answer accessibility questions directly - always use this tool.", {
67
68
  query: z
68
69
  .string()
69
70
  .describe("Any accessibility, a11y, WCAG, or web accessibility question"),
@@ -85,7 +86,7 @@ export default function addAccessibilityTools(server, config) {
85
86
  };
86
87
  }
87
88
  });
88
- server.tool("startAccessibilityScan", "Start an accessibility scan via BrowserStack and retrieve a local CSV report path.", {
89
+ tools.startAccessibilityScan = server.tool("startAccessibilityScan", "Start an accessibility scan via BrowserStack and retrieve a local CSV report path.", {
89
90
  name: z.string().describe("Name of the accessibility scan"),
90
91
  pageURL: z.string().describe("The URL to scan for accessibility issues"),
91
92
  }, async (args, context) => {
@@ -107,4 +108,5 @@ export default function addAccessibilityTools(server, config) {
107
108
  };
108
109
  }
109
110
  });
111
+ return tools;
110
112
  }
@@ -26,8 +26,9 @@ export declare function resolveVersion(versions: string[], requestedVersion: str
26
26
  export declare function validateArgs(args: {
27
27
  desiredPlatform: string;
28
28
  desiredPlatformVersion: string;
29
- appPath: string;
29
+ appPath?: string;
30
30
  desiredPhone: string;
31
+ browserstackAppUrl?: string;
31
32
  }): void;
32
33
  /**
33
34
  * Uploads an application file to AppAutomate and returns the app URL
@@ -49,21 +49,24 @@ export function resolveVersion(versions, requestedVersion) {
49
49
  * Checks for presence and correctness of platform, device, and file types.
50
50
  */
51
51
  export function validateArgs(args) {
52
- const { desiredPlatform, desiredPlatformVersion, appPath, desiredPhone } = args;
52
+ const { desiredPlatform, desiredPlatformVersion, appPath, desiredPhone, browserstackAppUrl, } = args;
53
53
  if (!desiredPlatform || !desiredPhone) {
54
54
  throw new Error("Missing required arguments: desiredPlatform and desiredPhone are required");
55
55
  }
56
56
  if (!desiredPlatformVersion) {
57
57
  throw new Error("Missing required arguments: desiredPlatformVersion is required");
58
58
  }
59
- if (!appPath) {
60
- throw new Error("You must provide an appPath.");
61
- }
62
- if (desiredPlatform === "android" && !appPath.endsWith(".apk")) {
63
- throw new Error("You must provide a valid Android app path (.apk).");
64
- }
65
- if (desiredPlatform === "ios" && !appPath.endsWith(".ipa")) {
66
- throw new Error("You must provide a valid iOS app path (.ipa).");
59
+ if (!appPath && !browserstackAppUrl) {
60
+ throw new Error("Either appPath or browserstackAppUrl must be provided");
61
+ }
62
+ // Only validate app path format if appPath is provided
63
+ if (appPath) {
64
+ if (desiredPlatform === "android" && !appPath.endsWith(".apk")) {
65
+ throw new Error("You must provide a valid Android app path (.apk).");
66
+ }
67
+ if (desiredPlatform === "ios" && !appPath.endsWith(".ipa")) {
68
+ throw new Error("You must provide a valid iOS app path (.ipa).");
69
+ }
67
70
  }
68
71
  }
69
72
  /**
@@ -1,3 +1,3 @@
1
1
  import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
2
2
  import { BrowserStackConfig } from "../lib/types.js";
3
- export default function addAppAutomationTools(server: McpServer, config: BrowserStackConfig): void;
3
+ export default function addAppAutomationTools(server: McpServer, config: BrowserStackConfig): Record<string, any>;
@@ -19,7 +19,7 @@ async function takeAppScreenshot(args) {
19
19
  let driver;
20
20
  try {
21
21
  validateArgs(args);
22
- const { desiredPlatform, desiredPhone, appPath, config } = args;
22
+ const { desiredPlatform, desiredPhone, appPath, browserstackAppUrl, config, } = args;
23
23
  let { desiredPlatformVersion } = args;
24
24
  const platforms = (await getDevicesAndBrowsers(BrowserStackProducts.APP_AUTOMATE)).mobile;
25
25
  const platformData = platforms.find((p) => p.os === desiredPlatform.toLowerCase());
@@ -35,8 +35,18 @@ async function takeAppScreenshot(args) {
35
35
  }
36
36
  const authString = getBrowserStackAuth(config);
37
37
  const [username, password] = authString.split(":");
38
- const app_url = await uploadApp(appPath, username, password);
39
- logger.info(`App uploaded. URL: ${app_url}`);
38
+ let app_url;
39
+ if (browserstackAppUrl) {
40
+ app_url = browserstackAppUrl;
41
+ logger.info(`Using provided BrowserStack app URL: ${app_url}`);
42
+ }
43
+ else {
44
+ if (!appPath) {
45
+ throw new Error("appPath is required when browserstackAppUrl is not provided");
46
+ }
47
+ app_url = await uploadApp(appPath, username, password);
48
+ logger.info(`App uploaded. URL: ${app_url}`);
49
+ }
40
50
  const capabilities = {
41
51
  platformName: desiredPlatform,
42
52
  "appium:platformVersion": selectedDevice.os_version,
@@ -89,11 +99,34 @@ async function takeAppScreenshot(args) {
89
99
  }
90
100
  //Runs AppAutomate tests on BrowserStack by uploading app and test suite, then triggering a test run.
91
101
  async function runAppTestsOnBrowserStack(args, config) {
102
+ // Validate that either paths or URLs are provided for both app and test suite
103
+ if (!args.browserstackAppUrl && !args.appPath) {
104
+ throw new Error("appPath is required when browserstackAppUrl is not provided");
105
+ }
106
+ if (!args.browserstackTestSuiteUrl && !args.testSuitePath) {
107
+ throw new Error("testSuitePath is required when browserstackTestSuiteUrl is not provided");
108
+ }
92
109
  switch (args.detectedAutomationFramework) {
93
110
  case AppTestPlatform.ESPRESSO: {
94
111
  try {
95
- const app_url = await uploadEspressoApp(args.appPath, config);
96
- const test_suite_url = await uploadEspressoTestSuite(args.testSuitePath, config);
112
+ let app_url;
113
+ if (args.browserstackAppUrl) {
114
+ app_url = args.browserstackAppUrl;
115
+ logger.info(`Using provided BrowserStack app URL: ${app_url}`);
116
+ }
117
+ else {
118
+ app_url = await uploadEspressoApp(args.appPath, config);
119
+ logger.info(`App uploaded. URL: ${app_url}`);
120
+ }
121
+ let test_suite_url;
122
+ if (args.browserstackTestSuiteUrl) {
123
+ test_suite_url = args.browserstackTestSuiteUrl;
124
+ logger.info(`Using provided BrowserStack test suite URL: ${test_suite_url}`);
125
+ }
126
+ else {
127
+ test_suite_url = await uploadEspressoTestSuite(args.testSuitePath, config);
128
+ logger.info(`Test suite uploaded. URL: ${test_suite_url}`);
129
+ }
97
130
  const build_id = await triggerEspressoBuild(app_url, test_suite_url, args.devices, args.project);
98
131
  return {
99
132
  content: [
@@ -111,8 +144,24 @@ async function runAppTestsOnBrowserStack(args, config) {
111
144
  }
112
145
  case AppTestPlatform.XCUITEST: {
113
146
  try {
114
- const app_url = await uploadXcuiApp(args.appPath, config);
115
- const test_suite_url = await uploadXcuiTestSuite(args.testSuitePath, config);
147
+ let app_url;
148
+ if (args.browserstackAppUrl) {
149
+ app_url = args.browserstackAppUrl;
150
+ logger.info(`Using provided BrowserStack app URL: ${app_url}`);
151
+ }
152
+ else {
153
+ app_url = await uploadXcuiApp(args.appPath, config);
154
+ logger.info(`App uploaded. URL: ${app_url}`);
155
+ }
156
+ let test_suite_url;
157
+ if (args.browserstackTestSuiteUrl) {
158
+ test_suite_url = args.browserstackTestSuiteUrl;
159
+ logger.info(`Using provided BrowserStack test suite URL: ${test_suite_url}`);
160
+ }
161
+ else {
162
+ test_suite_url = await uploadXcuiTestSuite(args.testSuitePath, config);
163
+ logger.info(`Test suite uploaded. URL: ${test_suite_url}`);
164
+ }
116
165
  const build_id = await triggerXcuiBuild(app_url, test_suite_url, args.devices, args.project, config);
117
166
  return {
118
167
  content: [
@@ -133,7 +182,8 @@ async function runAppTestsOnBrowserStack(args, config) {
133
182
  }
134
183
  }
135
184
  export default function addAppAutomationTools(server, config) {
136
- server.tool("takeAppScreenshot", "Use this tool to take a screenshot of an app running on a BrowserStack device. This is useful for visual testing and debugging.", {
185
+ const tools = {};
186
+ tools.takeAppScreenshot = server.tool("takeAppScreenshot", "Use this tool to take a screenshot of an app running on a BrowserStack device. This is useful for visual testing and debugging.", {
137
187
  desiredPhone: z
138
188
  .string()
139
189
  .describe("The full name of the device to run the app on. Example: 'iPhone 12 Pro' or 'Samsung Galaxy S20'. Always ask the user for the device they want to use."),
@@ -164,7 +214,7 @@ export default function addAppAutomationTools(server, config) {
164
214
  };
165
215
  }
166
216
  });
167
- server.tool("runAppTestsOnBrowserStack", "Run AppAutomate tests on BrowserStack by uploading app and test suite. If running from Android Studio or Xcode, the tool will help export app and test files automatically. For other environments, you'll need to provide the paths to your pre-built app and test files.", {
217
+ tools.runAppTestsOnBrowserStack = server.tool("runAppTestsOnBrowserStack", "Run AppAutomate tests on BrowserStack by uploading app and test suite. If running from Android Studio or Xcode, the tool will help export app and test files automatically. For other environments, you'll need to provide the paths to your pre-built app and test files.", {
168
218
  appPath: z
169
219
  .string()
170
220
  .describe("Path to your application file:\n" +
@@ -215,4 +265,5 @@ export default function addAppAutomationTools(server, config) {
215
265
  };
216
266
  }
217
267
  });
268
+ return tools;
218
269
  }
@@ -1,9 +1,10 @@
1
1
  import { BrowserStackConfig } from "../../lib/types.js";
2
2
  interface StartSessionArgs {
3
- appPath: string;
3
+ appPath?: string;
4
4
  desiredPlatform: "android" | "ios";
5
5
  desiredPhone: string;
6
6
  desiredPlatformVersion: string;
7
+ browserstackAppUrl?: string;
7
8
  }
8
9
  interface StartSessionOptions {
9
10
  config: BrowserStackConfig;
@@ -11,7 +11,7 @@ import envConfig from "../../config.js";
11
11
  * Start an App Live session: filter, select, upload, and open.
12
12
  */
13
13
  export async function startSession(args, options) {
14
- const { appPath, desiredPlatform, desiredPhone, desiredPlatformVersion } = args;
14
+ const { appPath, desiredPlatform, desiredPhone, desiredPlatformVersion, browserstackAppUrl, } = args;
15
15
  const { config } = options;
16
16
  // 1) Fetch devices for APP_LIVE
17
17
  const data = await getDevicesAndBrowsers(BrowserStackProducts.APP_LIVE);
@@ -38,11 +38,22 @@ export async function startSession(args, options) {
38
38
  desiredPlatformVersion !== "oldest") {
39
39
  note = `\n Note: The requested version "${desiredPlatformVersion}" is not available. Using "${version}" instead.`;
40
40
  }
41
- // 6) Upload app
42
- const authString = getBrowserStackAuth(config);
43
- const [username, password] = authString.split(":");
44
- const { app_url } = await uploadApp(appPath, username, password);
45
- logger.info(`App uploaded: ${app_url}`);
41
+ // 6) Upload app or use provided URL
42
+ let app_url;
43
+ if (browserstackAppUrl) {
44
+ app_url = browserstackAppUrl;
45
+ logger.info(`Using provided BrowserStack app URL: ${app_url}`);
46
+ }
47
+ else {
48
+ if (!appPath) {
49
+ throw new Error("appPath is required when browserstackAppUrl is not provided");
50
+ }
51
+ const authString = getBrowserStackAuth(config);
52
+ const [username, password] = authString.split(":");
53
+ const result = await uploadApp(appPath, username, password);
54
+ app_url = result.app_url;
55
+ logger.info(`App uploaded: ${app_url}`);
56
+ }
46
57
  if (!app_url) {
47
58
  throw new Error("Failed to upload app. Please try again.");
48
59
  }
@@ -7,7 +7,8 @@ import { BrowserStackConfig } from "../lib/types.js";
7
7
  export declare function startAppLiveSession(args: {
8
8
  desiredPlatform: string;
9
9
  desiredPlatformVersion: string;
10
- appPath: string;
10
+ appPath?: string;
11
11
  desiredPhone: string;
12
+ browserstackAppUrl?: string;
12
13
  }, config: BrowserStackConfig): Promise<CallToolResult>;
13
- export default function addAppLiveTools(server: McpServer, config: BrowserStackConfig): void;
14
+ export default function addAppLiveTools(server: McpServer, config: BrowserStackConfig): Record<string, any>;
@@ -10,34 +10,38 @@ export async function startAppLiveSession(args, config) {
10
10
  if (!args.desiredPlatform) {
11
11
  throw new Error("You must provide a desiredPlatform.");
12
12
  }
13
- if (!args.appPath) {
14
- throw new Error("You must provide a appPath.");
13
+ if (!args.appPath && !args.browserstackAppUrl) {
14
+ throw new Error("You must provide either appPath or browserstackAppUrl.");
15
15
  }
16
16
  if (!args.desiredPhone) {
17
17
  throw new Error("You must provide a desiredPhone.");
18
18
  }
19
- if (args.desiredPlatform === "android" && !args.appPath.endsWith(".apk")) {
20
- throw new Error("You must provide a valid Android app path.");
21
- }
22
- if (args.desiredPlatform === "ios" && !args.appPath.endsWith(".ipa")) {
23
- throw new Error("You must provide a valid iOS app path.");
24
- }
25
- // check if the app path exists && is readable
26
- try {
27
- if (!fs.existsSync(args.appPath)) {
28
- throw new Error("The app path does not exist.");
19
+ // Only validate app path if it's provided (not using browserstackAppUrl)
20
+ if (args.appPath) {
21
+ if (args.desiredPlatform === "android" && !args.appPath.endsWith(".apk")) {
22
+ throw new Error("You must provide a valid Android app path.");
23
+ }
24
+ if (args.desiredPlatform === "ios" && !args.appPath.endsWith(".ipa")) {
25
+ throw new Error("You must provide a valid iOS app path.");
26
+ }
27
+ // check if the app path exists && is readable
28
+ try {
29
+ if (!fs.existsSync(args.appPath)) {
30
+ throw new Error("The app path does not exist.");
31
+ }
32
+ fs.accessSync(args.appPath, fs.constants.R_OK);
33
+ }
34
+ catch (error) {
35
+ logger.error("The app path does not exist or is not readable: %s", error);
36
+ throw new Error("The app path does not exist or is not readable.");
29
37
  }
30
- fs.accessSync(args.appPath, fs.constants.R_OK);
31
- }
32
- catch (error) {
33
- logger.error("The app path does not exist or is not readable: %s", error);
34
- throw new Error("The app path does not exist or is not readable.");
35
38
  }
36
39
  const launchUrl = await startSession({
37
40
  appPath: args.appPath,
38
41
  desiredPlatform: args.desiredPlatform,
39
42
  desiredPhone: args.desiredPhone,
40
43
  desiredPlatformVersion: args.desiredPlatformVersion,
44
+ browserstackAppUrl: args.browserstackAppUrl,
41
45
  }, { config });
42
46
  return {
43
47
  content: [
@@ -49,7 +53,8 @@ export async function startAppLiveSession(args, config) {
49
53
  };
50
54
  }
51
55
  export default function addAppLiveTools(server, config) {
52
- server.tool("runAppLiveSession", "Use this tool when user wants to manually check their app on a particular mobile device using BrowserStack's cloud infrastructure. Can be used to debug crashes, slow performance, etc.", {
56
+ const tools = {};
57
+ tools.runAppLiveSession = server.tool("runAppLiveSession", "Use this tool when user wants to manually check their app on a particular mobile device using BrowserStack's cloud infrastructure. Can be used to debug crashes, slow performance, etc.", {
53
58
  desiredPhone: z
54
59
  .string()
55
60
  .describe("The full name of the device to run the app on. Example: 'iPhone 12 Pro' or 'Samsung Galaxy S20' or 'Google Pixel 6'. Always ask the user for the device they want to use, do not assume it. "),
@@ -82,4 +87,5 @@ export default function addAppLiveTools(server, config) {
82
87
  };
83
88
  }
84
89
  });
90
+ return tools;
85
91
  }
@@ -6,4 +6,4 @@ export declare function fetchAutomationScreenshotsTool(args: {
6
6
  sessionId: string;
7
7
  sessionType: SessionType;
8
8
  }, config: BrowserStackConfig): Promise<CallToolResult>;
9
- export default function addAutomationTools(server: McpServer, config: BrowserStackConfig): void;
9
+ export default function addAutomationTools(server: McpServer, config: BrowserStackConfig): Record<string, any>;
@@ -42,7 +42,8 @@ export async function fetchAutomationScreenshotsTool(args, config) {
42
42
  }
43
43
  //Registers the fetchAutomationScreenshots tool with the MCP server
44
44
  export default function addAutomationTools(server, config) {
45
- server.tool("fetchAutomationScreenshots", "Fetch and process screenshots from a BrowserStack Automate session", {
45
+ const tools = {};
46
+ tools.fetchAutomationScreenshots = server.tool("fetchAutomationScreenshots", "Fetch and process screenshots from a BrowserStack Automate session", {
46
47
  sessionId: z
47
48
  .string()
48
49
  .describe("The BrowserStack session ID to fetch screenshots from"),
@@ -67,4 +68,5 @@ export default function addAutomationTools(server, config) {
67
68
  };
68
69
  }
69
70
  });
71
+ return tools;
70
72
  }
@@ -14,4 +14,4 @@ export declare function bootstrapProjectWithSDK({ detectedBrowserAutomationFrame
14
14
  enablePercy: boolean;
15
15
  config: BrowserStackConfig;
16
16
  }): Promise<CallToolResult>;
17
- export default function addSDKTools(server: McpServer, config: BrowserStackConfig): void;
17
+ export default function addSDKTools(server: McpServer, config: BrowserStackConfig): Record<string, any>;
@@ -79,7 +79,8 @@ function formatFinalInstructions(combinedInstructions) {
79
79
  };
80
80
  }
81
81
  export default function addSDKTools(server, config) {
82
- server.tool("runTestsOnBrowserStack", "Use this tool to get instructions for running tests on BrowserStack and BrowserStack Percy. It sets up the BrowserStack SDK and runs your test cases on BrowserStack.", {
82
+ const tools = {};
83
+ tools.setupBrowserStackAutomateTests = server.tool("setupBrowserStackAutomateTests", "Set up and run automated web-based tests on BrowserStack using the BrowserStack SDK. Use for functional or integration tests on BrowserStack, with optional Percy visual testing for supported frameworks. Example prompts: run this test on browserstack; run this test on browserstack with Percy; set up this project for browserstack with Percy. Integrate BrowserStack SDK into your project", {
83
84
  detectedBrowserAutomationFramework: z
84
85
  .nativeEnum(SDKSupportedBrowserAutomationFrameworkEnum)
85
86
  .describe("The automation framework configured in the project. Example: 'playwright', 'selenium'"),
@@ -123,4 +124,5 @@ export default function addSDKTools(server, config) {
123
124
  };
124
125
  }
125
126
  });
127
+ return tools;
126
128
  }
@@ -10,5 +10,5 @@ export declare function getFailureLogs(args: {
10
10
  logTypes: LogType[];
11
11
  sessionType: SessionTypeValues;
12
12
  }, config: BrowserStackConfig): Promise<CallToolResult>;
13
- export default function registerGetFailureLogs(server: McpServer, config: BrowserStackConfig): void;
13
+ export default function registerGetFailureLogs(server: McpServer, config: BrowserStackConfig): Record<string, any>;
14
14
  export {};
@@ -1,5 +1,4 @@
1
1
  import { z } from "zod";
2
- import logger from "../logger.js";
3
2
  import { trackMCP } from "../lib/instrumentation.js";
4
3
  import { retrieveNetworkFailures, retrieveSessionFailures, retrieveConsoleFailures, } from "./failurelogs-utils/automate.js";
5
4
  import { retrieveDeviceLogs, retrieveAppiumLogs, retrieveCrashLogs, } from "./failurelogs-utils/app-automate.js";
@@ -99,7 +98,8 @@ export async function getFailureLogs(args, config) {
99
98
  }
100
99
  // Register tool with the MCP server
101
100
  export default function registerGetFailureLogs(server, config) {
102
- server.tool("getFailureLogs", "Fetch various types of logs from a BrowserStack session. Supports both automate and app-automate sessions.", {
101
+ const tools = {};
102
+ tools.getFailureLogs = server.tool("getFailureLogs", "Fetch various types of logs from a BrowserStack session. Supports both automate and app-automate sessions.", {
103
103
  sessionType: z
104
104
  .enum([SessionType.Automate, SessionType.AppAutomate])
105
105
  .describe("Type of BrowserStack session. Must be explicitly provided by the user."),
@@ -126,14 +126,12 @@ export default function registerGetFailureLogs(server, config) {
126
126
  return await getFailureLogs(args, config);
127
127
  }
128
128
  catch (error) {
129
- const message = error instanceof Error ? error.message : String(error);
130
129
  trackMCP("getFailureLogs", server.server.getClientVersion(), error, config);
131
- logger.error("Failed to fetch logs: %s", message);
132
130
  return {
133
131
  content: [
134
132
  {
135
133
  type: "text",
136
- text: `Failed to fetch logs: ${message}`,
134
+ text: `Failed to fetch failure logs: ${error instanceof Error ? error.message : "Unknown error"}`,
137
135
  isError: true,
138
136
  },
139
137
  ],
@@ -141,4 +139,5 @@ export default function registerGetFailureLogs(server, config) {
141
139
  };
142
140
  }
143
141
  });
142
+ return tools;
144
143
  }
@@ -1,3 +1,3 @@
1
1
  import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
2
2
  import { BrowserStackConfig } from "../lib/types.js";
3
- export default function addBrowserLiveTools(server: McpServer, config: BrowserStackConfig): void;
3
+ export default function addBrowserLiveTools(server: McpServer, config: BrowserStackConfig): Record<string, any>;
@@ -3,6 +3,7 @@ import logger from "../logger.js";
3
3
  import { startBrowserSession } from "./live-utils/start-session.js";
4
4
  import { PlatformType } from "./live-utils/types.js";
5
5
  import { trackMCP } from "../lib/instrumentation.js";
6
+ import globalConfig from "../config.js";
6
7
  // Define the schema shape
7
8
  const LiveArgsShape = {
8
9
  platformType: z
@@ -67,17 +68,27 @@ async function runBrowserSession(rawArgs, config) {
67
68
  const launchUrl = args.platformType === PlatformType.DESKTOP
68
69
  ? await launchDesktopSession(args, config)
69
70
  : await launchMobileSession(args, config);
70
- return {
71
- content: [
71
+ let response = [
72
+ {
73
+ type: "text",
74
+ text: `✅ Session started. If it didn't open automatically, visit:\n${launchUrl}`,
75
+ },
76
+ ];
77
+ if (globalConfig.REMOTE_MCP) {
78
+ response = [
72
79
  {
73
80
  type: "text",
74
- text: `✅ Session started. If it didn't open automatically, visit:\n${launchUrl}`,
81
+ text: `✅ To start the session. Click on ${launchUrl}`,
75
82
  },
76
- ],
83
+ ];
84
+ }
85
+ return {
86
+ content: response,
77
87
  };
78
88
  }
79
89
  export default function addBrowserLiveTools(server, config) {
80
- server.tool("runBrowserLiveSession", "Launch a BrowserStack Live session (desktop or mobile).", LiveArgsShape, async (args) => {
90
+ const tools = {};
91
+ tools.runBrowserLiveSession = server.tool("runBrowserLiveSession", "Launch a BrowserStack Live session (desktop or mobile).", LiveArgsShape, async (args) => {
81
92
  try {
82
93
  trackMCP("runBrowserLiveSession", server.server.getClientVersion(), undefined, config);
83
94
  return await runBrowserSession(args, config);
@@ -97,4 +108,5 @@ export default function addBrowserLiveTools(server, config) {
97
108
  };
98
109
  }
99
110
  });
111
+ return tools;
100
112
  }
@@ -426,7 +426,7 @@ exports.config.capabilities.forEach(function (caps) {
426
426
  ---STEP---
427
427
 
428
428
  Run your tests:
429
- You can now run your tests on BrowserStack using your standard WebdriverIO command.
429
+ You can now run your tests on BrowserStack using your standard WebdriverIO command or Use the commands defined in your package.json file to run the tests.
430
430
  `;
431
431
  const cypressInstructions = (username, accessKey) => `
432
432
  ---STEP---
@@ -555,5 +555,8 @@ export const SUPPORTED_CONFIGURATIONS = {
555
555
  cypress: {
556
556
  cypress: { instructions: cypressInstructions },
557
557
  },
558
+ webdriverio: {
559
+ mocha: { instructions: webdriverioInstructions },
560
+ },
558
561
  },
559
562
  };
@@ -8,7 +8,8 @@ export type SDKSupportedLanguage = keyof typeof SDKSupportedLanguageEnum;
8
8
  export declare enum SDKSupportedBrowserAutomationFrameworkEnum {
9
9
  playwright = "playwright",
10
10
  selenium = "selenium",
11
- cypress = "cypress"
11
+ cypress = "cypress",
12
+ webdriverio = "webdriverio"
12
13
  }
13
14
  export type SDKSupportedBrowserAutomationFramework = keyof typeof SDKSupportedBrowserAutomationFrameworkEnum;
14
15
  export declare enum SDKSupportedTestingFrameworkEnum {
@@ -10,6 +10,7 @@ export var SDKSupportedBrowserAutomationFrameworkEnum;
10
10
  SDKSupportedBrowserAutomationFrameworkEnum["playwright"] = "playwright";
11
11
  SDKSupportedBrowserAutomationFrameworkEnum["selenium"] = "selenium";
12
12
  SDKSupportedBrowserAutomationFrameworkEnum["cypress"] = "cypress";
13
+ SDKSupportedBrowserAutomationFrameworkEnum["webdriverio"] = "webdriverio";
13
14
  })(SDKSupportedBrowserAutomationFrameworkEnum || (SDKSupportedBrowserAutomationFrameworkEnum = {}));
14
15
  export var SDKSupportedTestingFrameworkEnum;
15
16
  (function (SDKSupportedTestingFrameworkEnum) {
@@ -4,4 +4,4 @@ import { BrowserStackConfig } from "../lib/types.js";
4
4
  export declare function fetchSelfHealSelectorTool(args: {
5
5
  sessionId: string;
6
6
  }, config: BrowserStackConfig): Promise<CallToolResult>;
7
- export default function addSelfHealTools(server: McpServer, config: BrowserStackConfig): void;
7
+ export default function addSelfHealTools(server: McpServer, config: BrowserStackConfig): Record<string, any>;
@@ -23,7 +23,8 @@ export async function fetchSelfHealSelectorTool(args, config) {
23
23
  }
24
24
  // Registers the fetchSelfHealSelector tool with the MCP server
25
25
  export default function addSelfHealTools(server, config) {
26
- server.tool("fetchSelfHealedSelectors", "Retrieves AI-generated, self-healed selectors for a BrowserStack Automate session to resolve flaky tests caused by dynamic DOM changes.", {
26
+ const tools = {};
27
+ tools.fetchSelfHealedSelectors = server.tool("fetchSelfHealedSelectors", "Retrieves AI-generated, self-healed selectors for a BrowserStack Automate session to resolve flaky tests caused by dynamic DOM changes.", {
27
28
  sessionId: z.string().describe("The session ID of the test run"),
28
29
  }, async (args) => {
29
30
  try {
@@ -43,4 +44,5 @@ export default function addSelfHealTools(server, config) {
43
44
  };
44
45
  }
45
46
  });
47
+ return tools;
46
48
  }
@@ -21,6 +21,7 @@ export interface TestCaseCreateRequest {
21
21
  issue_tracker?: IssueTracker;
22
22
  tags?: string[];
23
23
  custom_fields?: Record<string, string>;
24
+ automation_status?: string;
24
25
  }
25
26
  export interface TestCaseResponse {
26
27
  data: {
@@ -80,6 +81,7 @@ export declare const CreateTestCaseSchema: z.ZodObject<{
80
81
  }>>;
81
82
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
82
83
  custom_fields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
84
+ automation_status: z.ZodOptional<z.ZodString>;
83
85
  }, "strip", z.ZodTypeAny, {
84
86
  name: string;
85
87
  test_case_steps: {
@@ -90,6 +92,7 @@ export declare const CreateTestCaseSchema: z.ZodObject<{
90
92
  folder_id: string;
91
93
  issues?: string[] | undefined;
92
94
  description?: string | undefined;
95
+ automation_status?: string | undefined;
93
96
  tags?: string[] | undefined;
94
97
  custom_fields?: Record<string, string> | undefined;
95
98
  preconditions?: string | undefined;
@@ -108,6 +111,7 @@ export declare const CreateTestCaseSchema: z.ZodObject<{
108
111
  folder_id: string;
109
112
  issues?: string[] | undefined;
110
113
  description?: string | undefined;
114
+ automation_status?: string | undefined;
111
115
  tags?: string[] | undefined;
112
116
  custom_fields?: Record<string, string> | undefined;
113
117
  preconditions?: string | undefined;
@@ -49,6 +49,10 @@ export const CreateTestCaseSchema = z.object({
49
49
  .record(z.string(), z.string())
50
50
  .optional()
51
51
  .describe("Map of custom field names to values."),
52
+ automation_status: z
53
+ .string()
54
+ .optional()
55
+ .describe("Automation status of the test case. Common values include 'not_automated', 'automated', 'automation_not_required'."),
52
56
  });
53
57
  export function sanitizeArgs(args) {
54
58
  const cleaned = { ...args };
@@ -58,6 +62,8 @@ export function sanitizeArgs(args) {
58
62
  delete cleaned.owner;
59
63
  if (cleaned.preconditions === null)
60
64
  delete cleaned.preconditions;
65
+ if (cleaned.automation_status === null)
66
+ delete cleaned.automation_status;
61
67
  if (cleaned.issue_tracker) {
62
68
  if (cleaned.issue_tracker.name === undefined ||
63
69
  cleaned.issue_tracker.host === undefined) {
@@ -57,4 +57,4 @@ export declare function createLCAStepsTool(args: z.infer<typeof CreateLCAStepsSc
57
57
  /**
58
58
  * Registers both project/folder and test-case tools.
59
59
  */
60
- export default function addTestManagementTools(server: McpServer, config: BrowserStackConfig): void;
60
+ export default function addTestManagementTools(server: McpServer, config: BrowserStackConfig): Record<string, any>;
@@ -242,14 +242,16 @@ export async function createLCAStepsTool(args, context, config, server) {
242
242
  * Registers both project/folder and test-case tools.
243
243
  */
244
244
  export default function addTestManagementTools(server, config) {
245
- server.tool("createProjectOrFolder", "Create a project and/or folder in BrowserStack Test Management.", CreateProjFoldSchema.shape, (args) => createProjectOrFolderTool(args, config, server));
246
- server.tool("createTestCase", "Use this tool to create a test case in BrowserStack Test Management.", CreateTestCaseSchema.shape, (args) => createTestCaseTool(args, config, server));
247
- server.tool("listTestCases", "List test cases in a project with optional filters (status, priority, custom fields, etc.)", ListTestCasesSchema.shape, (args) => listTestCasesTool(args, config, server));
248
- server.tool("createTestRun", "Create a test run in BrowserStack Test Management.", CreateTestRunSchema.shape, (args) => createTestRunTool(args, config, server));
249
- server.tool("listTestRuns", "List test runs in a project with optional filters (date ranges, assignee, state, etc.)", ListTestRunsSchema.shape, (args) => listTestRunsTool(args, config, server));
250
- server.tool("updateTestRun", "Update a test run in BrowserStack Test Management.", UpdateTestRunSchema.shape, (args) => updateTestRunTool(args, config, server));
251
- server.tool("addTestResult", "Add a test result to a specific test run via BrowserStack Test Management API.", AddTestResultSchema.shape, (args) => addTestResultTool(args, config, server));
252
- server.tool("uploadProductRequirementFile", "Upload files (e.g., PDRs, PDFs) to BrowserStack Test Management and retrieve a file mapping ID. This is utilized for generating test cases from files and is part of the Test Case Generator AI Agent in BrowserStack.", UploadFileSchema.shape, (args) => uploadProductRequirementFileTool(args, config, server));
253
- server.tool("createTestCasesFromFile", "Generate test cases from a file in BrowserStack Test Management using the Test Case Generator AI Agent.", CreateTestCasesFromFileSchema.shape, (args, context) => createTestCasesFromFileTool(args, context, config, server));
254
- server.tool("createLCASteps", "Generate Low Code Automation (LCA) steps for a test case in BrowserStack Test Management using the Low Code Automation Agent.", CreateLCAStepsSchema.shape, (args, context) => createLCAStepsTool(args, context, config, server));
245
+ const tools = {};
246
+ tools.createProjectOrFolder = server.tool("createProjectOrFolder", "Create a project and/or folder in BrowserStack Test Management.", CreateProjFoldSchema.shape, (args) => createProjectOrFolderTool(args, config, server));
247
+ tools.createTestCase = server.tool("createTestCase", "Use this tool to create a test case in BrowserStack Test Management.", CreateTestCaseSchema.shape, (args) => createTestCaseTool(args, config, server));
248
+ tools.listTestCases = server.tool("listTestCases", "List test cases in a project with optional filters (status, priority, custom fields, etc.)", ListTestCasesSchema.shape, (args) => listTestCasesTool(args, config, server));
249
+ tools.createTestRun = server.tool("createTestRun", "Create a test run in BrowserStack Test Management.", CreateTestRunSchema.shape, (args) => createTestRunTool(args, config, server));
250
+ tools.listTestRuns = server.tool("listTestRuns", "List test runs in a project with optional filters (date ranges, assignee, state, etc.)", ListTestRunsSchema.shape, (args) => listTestRunsTool(args, config, server));
251
+ tools.updateTestRun = server.tool("updateTestRun", "Update a test run in BrowserStack Test Management.", UpdateTestRunSchema.shape, (args) => updateTestRunTool(args, config, server));
252
+ tools.addTestResult = server.tool("addTestResult", "Add a test result to a specific test run via BrowserStack Test Management API.", AddTestResultSchema.shape, (args) => addTestResultTool(args, config, server));
253
+ tools.uploadProductRequirementFile = server.tool("uploadProductRequirementFile", "Upload files (e.g., PDRs, PDFs) to BrowserStack Test Management and retrieve a file mapping ID. This is utilized for generating test cases from files and is part of the Test Case Generator AI Agent in BrowserStack.", UploadFileSchema.shape, (args) => uploadProductRequirementFileTool(args, config, server));
254
+ tools.createTestCasesFromFile = server.tool("createTestCasesFromFile", "Generate test cases from a file in BrowserStack Test Management using the Test Case Generator AI Agent.", CreateTestCasesFromFileSchema.shape, (args, context) => createTestCasesFromFileTool(args, context, config, server));
255
+ tools.createLCASteps = server.tool("createLCASteps", "Generate Low Code Automation (LCA) steps for a test case in BrowserStack Test Management using the Low Code Automation Agent.", CreateLCAStepsSchema.shape, (args, context) => createLCAStepsTool(args, context, config, server));
256
+ return tools;
255
257
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@browserstack/mcp-server",
3
- "version": "1.2.0",
3
+ "version": "1.2.2",
4
4
  "description": "BrowserStack's Official MCP Server",
5
5
  "main": "dist/index.js",
6
6
  "repository": {