Skip to content

Commit 5ef66ab

Browse files
committed
fix: correct import name for automate tools in index.ts
1 parent 6a43c0c commit 5ef66ab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import addAccessibilityTools from "./tools/accessibility.js";
1313
import addTestManagementTools from "./tools/testmanagement.js";
1414
import addAppAutomationTools from "./tools/appautomate.js";
1515
import addFailureLogsTools from "./tools/getFailureLogs.js";
16-
import addAppAutomateTools from "./tools/automate.js";
16+
import addAutomateTools from "./tools/automate.js";
1717
import { trackMCP } from "./lib/instrumentation.js";
1818

1919
function registerTools(server: McpServer) {
@@ -25,7 +25,7 @@ function registerTools(server: McpServer) {
2525
addTestManagementTools(server);
2626
addAppAutomationTools(server);
2727
addFailureLogsTools(server);
28-
addAppAutomateTools(server);
28+
addAutomateTools(server);
2929
}
3030

3131
// Create an MCP server

0 commit comments

Comments
 (0)