@browserstack/mcp-server 1.2.21-beta.1 → 1.2.21

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.
@@ -101,7 +101,7 @@ export default function addRCATools(server, config) {
101
101
  const tools = {};
102
102
  tools.fetchRCA = server.tool("fetchRCA", "Retrieves AI-RCA (Root Cause Analysis) data for a BrowserStack Automate and App-Automate session and provides insights into test failures.", FETCH_RCA_PARAMS, async (args) => {
103
103
  try {
104
- trackMCP("fetchRCA", server.server.getClientVersion(), config);
104
+ trackMCP("fetchRCA", server.server.getClientVersion(), undefined, config);
105
105
  return await fetchRCADataTool(args, config);
106
106
  }
107
107
  catch (error) {
@@ -110,7 +110,7 @@ export default function addRCATools(server, config) {
110
110
  });
111
111
  tools.getBuildId = server.tool("getBuildId", "Get the BrowserStack build ID for a given project and build name.", GET_BUILD_ID_PARAMS, async (args) => {
112
112
  try {
113
- trackMCP("getBuildId", server.server.getClientVersion(), config);
113
+ trackMCP("getBuildId", server.server.getClientVersion(), undefined, config);
114
114
  return await getBuildIdTool(args, config);
115
115
  }
116
116
  catch (error) {
@@ -119,7 +119,7 @@ export default function addRCATools(server, config) {
119
119
  });
120
120
  tools.listTestIds = server.tool("listTestIds", "List test IDs from a BrowserStack Automate build, optionally filtered by status", LIST_TEST_IDS_PARAMS, async (args) => {
121
121
  try {
122
- trackMCP("listTestIds", server.server.getClientVersion(), config);
122
+ trackMCP("listTestIds", server.server.getClientVersion(), undefined, config);
123
123
  return await listTestIdsTool(args, config);
124
124
  }
125
125
  catch (error) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@browserstack/mcp-server",
3
- "version": "1.2.21-beta.1",
3
+ "version": "1.2.21",
4
4
  "description": "BrowserStack's Official MCP Server",
5
5
  "mcpName": "io.github.browserstack/mcp-server",
6
6
  "main": "dist/index.js",