File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff 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 > ) => {
Original file line number Diff line number Diff 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 > ) => {
Original file line number Diff line number Diff 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 > ) => {
You can’t perform that action at this time.
0 commit comments