appium-mcp 1.60.0 → 1.60.1
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.
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [1.60.1](https://github.com/appium/appium-mcp/compare/v1.60.0...v1.60.1) (2026-04-19)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **click:** rename default export to clickElement ([#276](https://github.com/appium/appium-mcp/issues/276)) ([65d5f52](https://github.com/appium/appium-mcp/commit/65d5f52700e84239efd38d75fd1f468c58b57569))
|
|
6
|
+
|
|
1
7
|
## [1.60.0](https://github.com/appium/appium-mcp/compare/v1.59.1...v1.60.0) (2026-04-19)
|
|
2
8
|
|
|
3
9
|
### Features
|
|
@@ -3,7 +3,7 @@ import { elementUUIDScheme } from '../../schema.js';
|
|
|
3
3
|
import { elementClick as _elementClick, performActions, } from '../../command.js';
|
|
4
4
|
import log from '../../logger.js';
|
|
5
5
|
import { resolveDriver, textResult, errorResult, toolErrorMessage, } from '../tool-response.js';
|
|
6
|
-
export default function
|
|
6
|
+
export default function clickElement(server) {
|
|
7
7
|
const clickActionSchema = z.object({
|
|
8
8
|
elementUUID: elementUUIDScheme,
|
|
9
9
|
sessionId: z
|
package/package.json
CHANGED
package/server.json
CHANGED
|
@@ -3,12 +3,12 @@
|
|
|
3
3
|
"name": "io.github.appium/appium-mcp",
|
|
4
4
|
"title": "MCP Appium - Mobile Development and Automation Server",
|
|
5
5
|
"description": "MCP server for Appium mobile automation on iOS and Android devices with test creation tools.",
|
|
6
|
-
"version": "1.60.
|
|
6
|
+
"version": "1.60.1",
|
|
7
7
|
"packages": [
|
|
8
8
|
{
|
|
9
9
|
"registryType": "npm",
|
|
10
10
|
"identifier": "appium-mcp",
|
|
11
|
-
"version": "1.60.
|
|
11
|
+
"version": "1.60.1",
|
|
12
12
|
"transport": {
|
|
13
13
|
"type": "stdio"
|
|
14
14
|
}
|
|
Binary file
|
|
@@ -13,7 +13,7 @@ import {
|
|
|
13
13
|
toolErrorMessage,
|
|
14
14
|
} from '../tool-response.js';
|
|
15
15
|
|
|
16
|
-
export default function
|
|
16
|
+
export default function clickElement(server: FastMCP): void {
|
|
17
17
|
const clickActionSchema = z.object({
|
|
18
18
|
elementUUID: elementUUIDScheme,
|
|
19
19
|
sessionId: z
|