Skip to content

Commit 67b0d80

Browse files
chrore: use snake case for all tool names (#52)
1 parent 73f2845 commit 67b0d80

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/tools/app-management/install-app.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default function installApp(server: FastMCP): void {
88
});
99

1010
server.addTool({
11-
name: 'appium_installApp',
11+
name: 'appium_install_app',
1212
description: 'Install an app on the device from a file path.',
1313
parameters: schema,
1414
execute: async (args: z.infer<typeof schema>) => {

src/tools/app-management/terminate-app.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export default function terminateApp(server: FastMCP): void {
1010
});
1111

1212
server.addTool({
13-
name: 'appium_terminateApp',
13+
name: 'appium_terminate_app',
1414
description: 'Terminate an app on the device.',
1515
parameters: schema,
1616
execute: async (args: z.infer<typeof schema>) => {

src/tools/app-management/uninstall-app.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export default function uninstallApp(server: FastMCP): void {
1010
});
1111

1212
server.addTool({
13-
name: 'appium_uninstallApp',
13+
name: 'appium_uninstall_app',
1414
description: 'Uninstall an app from the device.',
1515
parameters: schema,
1616
execute: async (args: z.infer<typeof schema>) => {

0 commit comments

Comments
 (0)