Skip to content

Commit 07de406

Browse files
fix eslint issues
Co-authored-by: Saikrishna321 <[email protected]>
1 parent 40787f7 commit 07de406

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
<div align="center">
2-
<img src="src/assets/jarvislogo.png" alt="MCP Appium Logo" width="500"/>
3-
</div>
4-
51
# MCP Appium - MCP server for Mobile Development and Automation | iOS, Android, Simulator, Emulator, and Real Devices
62

73
MCP Appium is an intelligent MCP (Model Context Protocol) server designed to empower AI assistants with a robust suite of tools for mobile automation. It streamlines mobile app testing by enabling natural language interactions, intelligent locator generation, and automated test creation for both Android and iOS platforms.

src/tools/create-session.ts

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,10 @@ export default function createSession(server: any): void {
4141
DO NOT assume or default to any platform.
4242
`,
4343
parameters: z.object({
44-
platform: z
45-
.enum(['ios', 'android'])
46-
.describe(
47-
`REQUIRED: Must match the platform the user explicitly selected via the select_platform tool.
44+
platform: z.enum(['ios', 'android']).describe(
45+
`REQUIRED: Must match the platform the user explicitly selected via the select_platform tool.
4846
DO NOT default to Android or iOS without asking the user first.`
49-
),
47+
),
5048
capabilities: z
5149
.object({})
5250
.optional()

0 commit comments

Comments
 (0)