@midscene/mcp 1.5.0 → 1.5.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/dist/index.js CHANGED
@@ -21593,7 +21593,6 @@ var __webpack_modules__ = {
21593
21593
  const MIDSCENE_MCP_CHROME_PATH = 'MIDSCENE_MCP_CHROME_PATH';
21594
21594
  const MIDSCENE_MCP_ANDROID_MODE = 'MIDSCENE_MCP_ANDROID_MODE';
21595
21595
  const DOCKER_CONTAINER = 'DOCKER_CONTAINER';
21596
- const types_MIDSCENE_FORCE_DEEP_THINK = 'MIDSCENE_FORCE_DEEP_THINK';
21597
21596
  const types_MIDSCENE_LANGSMITH_DEBUG = 'MIDSCENE_LANGSMITH_DEBUG';
21598
21597
  const types_MIDSCENE_LANGFUSE_DEBUG = 'MIDSCENE_LANGFUSE_DEBUG';
21599
21598
  const MIDSCENE_MODEL_SOCKS_PROXY = 'MIDSCENE_MODEL_SOCKS_PROXY';
@@ -21674,7 +21673,6 @@ var __webpack_modules__ = {
21674
21673
  ];
21675
21674
  const BOOLEAN_ENV_KEYS = [
21676
21675
  types_MIDSCENE_CACHE,
21677
- types_MIDSCENE_FORCE_DEEP_THINK,
21678
21676
  MIDSCENE_MCP_USE_PUPPETEER_MODE,
21679
21677
  MIDSCENE_MCP_ANDROID_MODE,
21680
21678
  types_MIDSCENE_LANGSMITH_DEBUG,
@@ -21898,7 +21896,8 @@ var __webpack_modules__ = {
21898
21896
  ]);
21899
21897
  const MidsceneLocationInput = lib.z.object({
21900
21898
  prompt: TUserPromptSchema,
21901
- deepThink: lib.z.boolean().optional(),
21899
+ deepLocate: lib.z.boolean().optional(),
21900
+ deepThink: lib.z.boolean().optional().describe('@deprecated Use `deepLocate` instead.'),
21902
21901
  cacheable: lib.z.boolean().optional(),
21903
21902
  xpath: lib.z.union([
21904
21903
  lib.z.string(),
@@ -24733,7 +24732,7 @@ For more information, visit: https://midscenejs.com/mcp-migration
24733
24732
  constructor(){
24734
24733
  super({
24735
24734
  name: '@midscene/mcp',
24736
- version: '1.5.0',
24735
+ version: '1.5.1',
24737
24736
  description: 'Deprecated - Use @midscene/web-bridge-mcp, @midscene/android-mcp, or @midscene/ios-mcp'
24738
24737
  });
24739
24738
  }
package/dist/server.js CHANGED
@@ -28820,7 +28820,6 @@ var __webpack_exports__ = {};
28820
28820
  const MIDSCENE_MCP_CHROME_PATH = 'MIDSCENE_MCP_CHROME_PATH';
28821
28821
  const MIDSCENE_MCP_ANDROID_MODE = 'MIDSCENE_MCP_ANDROID_MODE';
28822
28822
  const DOCKER_CONTAINER = 'DOCKER_CONTAINER';
28823
- const types_MIDSCENE_FORCE_DEEP_THINK = 'MIDSCENE_FORCE_DEEP_THINK';
28824
28823
  const types_MIDSCENE_LANGSMITH_DEBUG = 'MIDSCENE_LANGSMITH_DEBUG';
28825
28824
  const types_MIDSCENE_LANGFUSE_DEBUG = 'MIDSCENE_LANGFUSE_DEBUG';
28826
28825
  const MIDSCENE_MODEL_SOCKS_PROXY = 'MIDSCENE_MODEL_SOCKS_PROXY';
@@ -28901,7 +28900,6 @@ var __webpack_exports__ = {};
28901
28900
  ];
28902
28901
  const BOOLEAN_ENV_KEYS = [
28903
28902
  types_MIDSCENE_CACHE,
28904
- types_MIDSCENE_FORCE_DEEP_THINK,
28905
28903
  MIDSCENE_MCP_USE_PUPPETEER_MODE,
28906
28904
  MIDSCENE_MCP_ANDROID_MODE,
28907
28905
  types_MIDSCENE_LANGSMITH_DEBUG,
@@ -29125,7 +29123,8 @@ var __webpack_exports__ = {};
29125
29123
  ]);
29126
29124
  const MidsceneLocationInput = lib.z.object({
29127
29125
  prompt: TUserPromptSchema,
29128
- deepThink: lib.z.boolean().optional(),
29126
+ deepLocate: lib.z.boolean().optional(),
29127
+ deepThink: lib.z.boolean().optional().describe('@deprecated Use `deepLocate` instead.'),
29129
29128
  cacheable: lib.z.boolean().optional(),
29130
29129
  xpath: lib.z.union([
29131
29130
  lib.z.string(),
@@ -31960,7 +31959,7 @@ For more information, visit: https://midscenejs.com/mcp-migration
31960
31959
  constructor(){
31961
31960
  super({
31962
31961
  name: '@midscene/mcp',
31963
- version: '1.5.0',
31962
+ version: '1.5.1',
31964
31963
  description: 'Deprecated - Use @midscene/web-bridge-mcp, @midscene/android-mcp, or @midscene/ios-mcp'
31965
31964
  });
31966
31965
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@midscene/mcp",
3
- "version": "1.5.0",
3
+ "version": "1.5.1",
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": [
@@ -13,11 +13,11 @@
13
13
  "@rslib/core": "^0.18.3",
14
14
  "@types/node": "^18.0.0",
15
15
  "typescript": "^5.8.3",
16
- "@midscene/android": "1.5.0",
17
- "@midscene/core": "1.5.0",
16
+ "@midscene/core": "1.5.1",
17
+ "@midscene/android": "1.5.1",
18
18
  "@midscene/report": "1.0.0",
19
- "@midscene/shared": "1.5.0",
20
- "@midscene/web": "1.5.0"
19
+ "@midscene/web": "1.5.1",
20
+ "@midscene/shared": "1.5.1"
21
21
  },
22
22
  "license": "MIT",
23
23
  "scripts": {