@midscene/mcp 1.2.1 → 1.2.2-beta-20260115065918.0
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/dist/index.js +13 -1
- package/dist/server.js +13 -1
- package/package.json +5 -5
package/dist/index.js
CHANGED
|
@@ -21602,6 +21602,8 @@ var __webpack_modules__ = {
|
|
|
21602
21602
|
const types_MIDSCENE_MODEL_MAX_TOKENS = 'MIDSCENE_MODEL_MAX_TOKENS';
|
|
21603
21603
|
const MIDSCENE_MODEL_TIMEOUT = 'MIDSCENE_MODEL_TIMEOUT';
|
|
21604
21604
|
const MIDSCENE_MODEL_TEMPERATURE = 'MIDSCENE_MODEL_TEMPERATURE';
|
|
21605
|
+
const MIDSCENE_MODEL_RETRY_COUNT = 'MIDSCENE_MODEL_RETRY_COUNT';
|
|
21606
|
+
const MIDSCENE_MODEL_RETRY_INTERVAL = 'MIDSCENE_MODEL_RETRY_INTERVAL';
|
|
21605
21607
|
const OPENAI_API_KEY = 'OPENAI_API_KEY';
|
|
21606
21608
|
const OPENAI_BASE_URL = 'OPENAI_BASE_URL';
|
|
21607
21609
|
const MIDSCENE_OPENAI_INIT_CONFIG_JSON = 'MIDSCENE_OPENAI_INIT_CONFIG_JSON';
|
|
@@ -21635,6 +21637,8 @@ var __webpack_modules__ = {
|
|
|
21635
21637
|
const MIDSCENE_INSIGHT_MODEL_INIT_CONFIG_JSON = 'MIDSCENE_INSIGHT_MODEL_INIT_CONFIG_JSON';
|
|
21636
21638
|
const MIDSCENE_INSIGHT_MODEL_TIMEOUT = 'MIDSCENE_INSIGHT_MODEL_TIMEOUT';
|
|
21637
21639
|
const MIDSCENE_INSIGHT_MODEL_TEMPERATURE = 'MIDSCENE_INSIGHT_MODEL_TEMPERATURE';
|
|
21640
|
+
const MIDSCENE_INSIGHT_MODEL_RETRY_COUNT = 'MIDSCENE_INSIGHT_MODEL_RETRY_COUNT';
|
|
21641
|
+
const MIDSCENE_INSIGHT_MODEL_RETRY_INTERVAL = 'MIDSCENE_INSIGHT_MODEL_RETRY_INTERVAL';
|
|
21638
21642
|
const MIDSCENE_PLANNING_MODEL_NAME = 'MIDSCENE_PLANNING_MODEL_NAME';
|
|
21639
21643
|
const MIDSCENE_PLANNING_MODEL_SOCKS_PROXY = 'MIDSCENE_PLANNING_MODEL_SOCKS_PROXY';
|
|
21640
21644
|
const MIDSCENE_PLANNING_MODEL_HTTP_PROXY = 'MIDSCENE_PLANNING_MODEL_HTTP_PROXY';
|
|
@@ -21643,6 +21647,8 @@ var __webpack_modules__ = {
|
|
|
21643
21647
|
const MIDSCENE_PLANNING_MODEL_INIT_CONFIG_JSON = 'MIDSCENE_PLANNING_MODEL_INIT_CONFIG_JSON';
|
|
21644
21648
|
const MIDSCENE_PLANNING_MODEL_TIMEOUT = 'MIDSCENE_PLANNING_MODEL_TIMEOUT';
|
|
21645
21649
|
const MIDSCENE_PLANNING_MODEL_TEMPERATURE = 'MIDSCENE_PLANNING_MODEL_TEMPERATURE';
|
|
21650
|
+
const MIDSCENE_PLANNING_MODEL_RETRY_COUNT = 'MIDSCENE_PLANNING_MODEL_RETRY_COUNT';
|
|
21651
|
+
const MIDSCENE_PLANNING_MODEL_RETRY_INTERVAL = 'MIDSCENE_PLANNING_MODEL_RETRY_INTERVAL';
|
|
21646
21652
|
const MIDSCENE_MODEL_FAMILY = 'MIDSCENE_MODEL_FAMILY';
|
|
21647
21653
|
const UNUSED_ENV_KEYS = [
|
|
21648
21654
|
MIDSCENE_DANGEROUSLY_PRINT_ALL_CONFIG
|
|
@@ -21695,6 +21701,8 @@ var __webpack_modules__ = {
|
|
|
21695
21701
|
MIDSCENE_MODEL_HTTP_PROXY,
|
|
21696
21702
|
MIDSCENE_MODEL_TIMEOUT,
|
|
21697
21703
|
MIDSCENE_MODEL_TEMPERATURE,
|
|
21704
|
+
MIDSCENE_MODEL_RETRY_COUNT,
|
|
21705
|
+
MIDSCENE_MODEL_RETRY_INTERVAL,
|
|
21698
21706
|
MIDSCENE_USE_VLM_UI_TARS,
|
|
21699
21707
|
MIDSCENE_USE_QWEN_VL,
|
|
21700
21708
|
MIDSCENE_USE_QWEN3_VL,
|
|
@@ -21714,6 +21722,8 @@ var __webpack_modules__ = {
|
|
|
21714
21722
|
MIDSCENE_INSIGHT_MODEL_INIT_CONFIG_JSON,
|
|
21715
21723
|
MIDSCENE_INSIGHT_MODEL_TIMEOUT,
|
|
21716
21724
|
MIDSCENE_INSIGHT_MODEL_TEMPERATURE,
|
|
21725
|
+
MIDSCENE_INSIGHT_MODEL_RETRY_COUNT,
|
|
21726
|
+
MIDSCENE_INSIGHT_MODEL_RETRY_INTERVAL,
|
|
21717
21727
|
MIDSCENE_PLANNING_MODEL_NAME,
|
|
21718
21728
|
MIDSCENE_PLANNING_MODEL_SOCKS_PROXY,
|
|
21719
21729
|
MIDSCENE_PLANNING_MODEL_HTTP_PROXY,
|
|
@@ -21722,6 +21732,8 @@ var __webpack_modules__ = {
|
|
|
21722
21732
|
MIDSCENE_PLANNING_MODEL_INIT_CONFIG_JSON,
|
|
21723
21733
|
MIDSCENE_PLANNING_MODEL_TIMEOUT,
|
|
21724
21734
|
MIDSCENE_PLANNING_MODEL_TEMPERATURE,
|
|
21735
|
+
MIDSCENE_PLANNING_MODEL_RETRY_COUNT,
|
|
21736
|
+
MIDSCENE_PLANNING_MODEL_RETRY_INTERVAL,
|
|
21725
21737
|
MIDSCENE_MODEL_FAMILY
|
|
21726
21738
|
];
|
|
21727
21739
|
[
|
|
@@ -24577,7 +24589,7 @@ For more information, visit: https://midscenejs.com/mcp-migration
|
|
|
24577
24589
|
constructor(){
|
|
24578
24590
|
super({
|
|
24579
24591
|
name: '@midscene/mcp',
|
|
24580
|
-
version: '1.2.
|
|
24592
|
+
version: '1.2.2-beta-20260115065918.0',
|
|
24581
24593
|
description: 'Deprecated - Use @midscene/web-bridge-mcp, @midscene/android-mcp, or @midscene/ios-mcp'
|
|
24582
24594
|
});
|
|
24583
24595
|
}
|
package/dist/server.js
CHANGED
|
@@ -28802,6 +28802,8 @@ var __webpack_exports__ = {};
|
|
|
28802
28802
|
const types_MIDSCENE_MODEL_MAX_TOKENS = 'MIDSCENE_MODEL_MAX_TOKENS';
|
|
28803
28803
|
const MIDSCENE_MODEL_TIMEOUT = 'MIDSCENE_MODEL_TIMEOUT';
|
|
28804
28804
|
const MIDSCENE_MODEL_TEMPERATURE = 'MIDSCENE_MODEL_TEMPERATURE';
|
|
28805
|
+
const MIDSCENE_MODEL_RETRY_COUNT = 'MIDSCENE_MODEL_RETRY_COUNT';
|
|
28806
|
+
const MIDSCENE_MODEL_RETRY_INTERVAL = 'MIDSCENE_MODEL_RETRY_INTERVAL';
|
|
28805
28807
|
const OPENAI_API_KEY = 'OPENAI_API_KEY';
|
|
28806
28808
|
const OPENAI_BASE_URL = 'OPENAI_BASE_URL';
|
|
28807
28809
|
const MIDSCENE_OPENAI_INIT_CONFIG_JSON = 'MIDSCENE_OPENAI_INIT_CONFIG_JSON';
|
|
@@ -28835,6 +28837,8 @@ var __webpack_exports__ = {};
|
|
|
28835
28837
|
const MIDSCENE_INSIGHT_MODEL_INIT_CONFIG_JSON = 'MIDSCENE_INSIGHT_MODEL_INIT_CONFIG_JSON';
|
|
28836
28838
|
const MIDSCENE_INSIGHT_MODEL_TIMEOUT = 'MIDSCENE_INSIGHT_MODEL_TIMEOUT';
|
|
28837
28839
|
const MIDSCENE_INSIGHT_MODEL_TEMPERATURE = 'MIDSCENE_INSIGHT_MODEL_TEMPERATURE';
|
|
28840
|
+
const MIDSCENE_INSIGHT_MODEL_RETRY_COUNT = 'MIDSCENE_INSIGHT_MODEL_RETRY_COUNT';
|
|
28841
|
+
const MIDSCENE_INSIGHT_MODEL_RETRY_INTERVAL = 'MIDSCENE_INSIGHT_MODEL_RETRY_INTERVAL';
|
|
28838
28842
|
const MIDSCENE_PLANNING_MODEL_NAME = 'MIDSCENE_PLANNING_MODEL_NAME';
|
|
28839
28843
|
const MIDSCENE_PLANNING_MODEL_SOCKS_PROXY = 'MIDSCENE_PLANNING_MODEL_SOCKS_PROXY';
|
|
28840
28844
|
const MIDSCENE_PLANNING_MODEL_HTTP_PROXY = 'MIDSCENE_PLANNING_MODEL_HTTP_PROXY';
|
|
@@ -28843,6 +28847,8 @@ var __webpack_exports__ = {};
|
|
|
28843
28847
|
const MIDSCENE_PLANNING_MODEL_INIT_CONFIG_JSON = 'MIDSCENE_PLANNING_MODEL_INIT_CONFIG_JSON';
|
|
28844
28848
|
const MIDSCENE_PLANNING_MODEL_TIMEOUT = 'MIDSCENE_PLANNING_MODEL_TIMEOUT';
|
|
28845
28849
|
const MIDSCENE_PLANNING_MODEL_TEMPERATURE = 'MIDSCENE_PLANNING_MODEL_TEMPERATURE';
|
|
28850
|
+
const MIDSCENE_PLANNING_MODEL_RETRY_COUNT = 'MIDSCENE_PLANNING_MODEL_RETRY_COUNT';
|
|
28851
|
+
const MIDSCENE_PLANNING_MODEL_RETRY_INTERVAL = 'MIDSCENE_PLANNING_MODEL_RETRY_INTERVAL';
|
|
28846
28852
|
const MIDSCENE_MODEL_FAMILY = 'MIDSCENE_MODEL_FAMILY';
|
|
28847
28853
|
const UNUSED_ENV_KEYS = [
|
|
28848
28854
|
MIDSCENE_DANGEROUSLY_PRINT_ALL_CONFIG
|
|
@@ -28895,6 +28901,8 @@ var __webpack_exports__ = {};
|
|
|
28895
28901
|
MIDSCENE_MODEL_HTTP_PROXY,
|
|
28896
28902
|
MIDSCENE_MODEL_TIMEOUT,
|
|
28897
28903
|
MIDSCENE_MODEL_TEMPERATURE,
|
|
28904
|
+
MIDSCENE_MODEL_RETRY_COUNT,
|
|
28905
|
+
MIDSCENE_MODEL_RETRY_INTERVAL,
|
|
28898
28906
|
MIDSCENE_USE_VLM_UI_TARS,
|
|
28899
28907
|
MIDSCENE_USE_QWEN_VL,
|
|
28900
28908
|
MIDSCENE_USE_QWEN3_VL,
|
|
@@ -28914,6 +28922,8 @@ var __webpack_exports__ = {};
|
|
|
28914
28922
|
MIDSCENE_INSIGHT_MODEL_INIT_CONFIG_JSON,
|
|
28915
28923
|
MIDSCENE_INSIGHT_MODEL_TIMEOUT,
|
|
28916
28924
|
MIDSCENE_INSIGHT_MODEL_TEMPERATURE,
|
|
28925
|
+
MIDSCENE_INSIGHT_MODEL_RETRY_COUNT,
|
|
28926
|
+
MIDSCENE_INSIGHT_MODEL_RETRY_INTERVAL,
|
|
28917
28927
|
MIDSCENE_PLANNING_MODEL_NAME,
|
|
28918
28928
|
MIDSCENE_PLANNING_MODEL_SOCKS_PROXY,
|
|
28919
28929
|
MIDSCENE_PLANNING_MODEL_HTTP_PROXY,
|
|
@@ -28922,6 +28932,8 @@ var __webpack_exports__ = {};
|
|
|
28922
28932
|
MIDSCENE_PLANNING_MODEL_INIT_CONFIG_JSON,
|
|
28923
28933
|
MIDSCENE_PLANNING_MODEL_TIMEOUT,
|
|
28924
28934
|
MIDSCENE_PLANNING_MODEL_TEMPERATURE,
|
|
28935
|
+
MIDSCENE_PLANNING_MODEL_RETRY_COUNT,
|
|
28936
|
+
MIDSCENE_PLANNING_MODEL_RETRY_INTERVAL,
|
|
28925
28937
|
MIDSCENE_MODEL_FAMILY
|
|
28926
28938
|
];
|
|
28927
28939
|
[
|
|
@@ -31777,7 +31789,7 @@ For more information, visit: https://midscenejs.com/mcp-migration
|
|
|
31777
31789
|
constructor(){
|
|
31778
31790
|
super({
|
|
31779
31791
|
name: '@midscene/mcp',
|
|
31780
|
-
version: '1.2.
|
|
31792
|
+
version: '1.2.2-beta-20260115065918.0',
|
|
31781
31793
|
description: 'Deprecated - Use @midscene/web-bridge-mcp, @midscene/android-mcp, or @midscene/ios-mcp'
|
|
31782
31794
|
});
|
|
31783
31795
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@midscene/mcp",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.2-beta-20260115065918.0",
|
|
4
4
|
"description": "Deprecated - Use @midscene/web-bridge-mcp, @midscene/android-mcp, or @midscene/ios-mcp",
|
|
5
5
|
"bin": "dist/index.js",
|
|
6
6
|
"files": [
|
|
@@ -25,11 +25,11 @@
|
|
|
25
25
|
"@rslib/core": "^0.18.3",
|
|
26
26
|
"@types/node": "^18.0.0",
|
|
27
27
|
"typescript": "^5.8.3",
|
|
28
|
-
"@midscene/android": "1.2.
|
|
28
|
+
"@midscene/android": "1.2.2-beta-20260115065918.0",
|
|
29
|
+
"@midscene/core": "1.2.2-beta-20260115065918.0",
|
|
29
30
|
"@midscene/report": "1.0.0",
|
|
30
|
-
"@midscene/
|
|
31
|
-
"@midscene/
|
|
32
|
-
"@midscene/web": "1.2.1"
|
|
31
|
+
"@midscene/shared": "1.2.2-beta-20260115065918.0",
|
|
32
|
+
"@midscene/web": "1.2.2-beta-20260115065918.0"
|
|
33
33
|
},
|
|
34
34
|
"license": "MIT",
|
|
35
35
|
"scripts": {
|