@morphllm/morphmcp 0.8.41 → 0.8.42

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.
Files changed (2) hide show
  1. package/dist/index.js +6 -6
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -981,7 +981,7 @@ server.setRequestHandler(CallToolRequestSchema, async (request) => {
981
981
  tool: 'warpgrep_codebase_search',
982
982
  repo_path: parsed.data.repo_path,
983
983
  query: parsed.data.search_string,
984
- model: 'morph-warp-grep-v1-1111',
984
+ model: 'morph-warp-grep-v1-1111v0',
985
985
  termination_reason: 'completed_with_file_errors',
986
986
  error_count: fileReadErrors.length,
987
987
  is_timeout: false,
@@ -997,7 +997,7 @@ server.setRequestHandler(CallToolRequestSchema, async (request) => {
997
997
  query: parsed.data.search_string,
998
998
  repo_path: parsed.data.repo_path,
999
999
  repoRoot: path.resolve(parsed.data.repo_path),
1000
- model: 'morph-warp-grep-v1-1111'
1000
+ model: 'morph-warp-grep-v1-1111v0'
1001
1001
  }
1002
1002
  },
1003
1003
  source: 'mcp-filesystem'
@@ -1023,7 +1023,7 @@ server.setRequestHandler(CallToolRequestSchema, async (request) => {
1023
1023
  tool: 'warpgrep_codebase_search',
1024
1024
  repo_path: parsed.data.repo_path,
1025
1025
  query: parsed.data.search_string,
1026
- model: 'morph-warp-grep-v1-1111',
1026
+ model: 'morph-warp-grep-v1-1111v0',
1027
1027
  termination_reason: result.terminationReason,
1028
1028
  error_count: result.errors.length,
1029
1029
  is_timeout: isTimeout,
@@ -1039,7 +1039,7 @@ server.setRequestHandler(CallToolRequestSchema, async (request) => {
1039
1039
  query: parsed.data.search_string,
1040
1040
  repo_path: parsed.data.repo_path,
1041
1041
  repoRoot: path.resolve(parsed.data.repo_path),
1042
- model: 'morph-warp-grep-v1-1111'
1042
+ model: 'morph-warp-grep-v1-1111v0'
1043
1043
  }
1044
1044
  },
1045
1045
  stack_trace: firstError?.stack || undefined,
@@ -1069,7 +1069,7 @@ server.setRequestHandler(CallToolRequestSchema, async (request) => {
1069
1069
  tool: 'warpgrep_codebase_search',
1070
1070
  repo_path: parsed.data.repo_path,
1071
1071
  query: parsed.data.search_string,
1072
- model: 'morph-warp-grep-v1-1111',
1072
+ model: 'morph-warp-grep-v1-1111v0',
1073
1073
  is_timeout: isTimeout,
1074
1074
  // Note: Exception thrown before we got result, so no messages/files available
1075
1075
  exception_phase: 'runWarpGrep_call',
@@ -1077,7 +1077,7 @@ server.setRequestHandler(CallToolRequestSchema, async (request) => {
1077
1077
  query: parsed.data.search_string,
1078
1078
  repo_path: parsed.data.repo_path,
1079
1079
  repoRoot: path.resolve(parsed.data.repo_path),
1080
- model: 'morph-warp-grep-v1-1111'
1080
+ model: 'morph-warp-grep-v1-1111v0'
1081
1081
  }
1082
1082
  },
1083
1083
  stack_trace: error instanceof Error ? error.stack : undefined,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@morphllm/morphmcp",
3
- "version": "0.8.41",
3
+ "version": "0.8.42",
4
4
  "description": "Fast & accurate MCP server with AI-powered file editing and intelligent code search. Prevents context pollution and saves time for a better user experience.",
5
5
  "license": "MIT",
6
6
  "author": "Morph (https://morphllm.com)",