@morphllm/morphmcp 0.8.14 → 0.8.17
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/README.md +5 -5
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -101,7 +101,7 @@ ENABLED_TOOLS=read_file,write_file,edit_file,codebase_search
|
|
|
101
101
|
|
|
102
102
|
1. CODE CHANGES 2. AUTO-SYNC (Plugin)
|
|
103
103
|
┌─────────────┐ ┌─────────────┐
|
|
104
|
-
│ Agent edits │
|
|
104
|
+
│ Agent edits │ ────────────────── │ git commit │
|
|
105
105
|
│ files │ │ + push │
|
|
106
106
|
└─────────────┘ └──────┬──────┘
|
|
107
107
|
│
|
|
@@ -109,7 +109,7 @@ ENABLED_TOOLS=read_file,write_file,edit_file,codebase_search
|
|
|
109
109
|
3. EMBEDDING (3-8s) 4. INDEXED & SEARCHABLE
|
|
110
110
|
┌─────────────────┐ ┌──────────────────┐
|
|
111
111
|
│ Code chunking │ │ PostgreSQL │
|
|
112
|
-
│ morph-v4-embed │
|
|
112
|
+
│ morph-v4-embed │ ──────────── │ pgvector (HNSW) │
|
|
113
113
|
│ Vector storage │ │ Ready for search │
|
|
114
114
|
└─────────────────┘ └────────┬─────────┘
|
|
115
115
|
│
|
|
@@ -117,7 +117,7 @@ ENABLED_TOOLS=read_file,write_file,edit_file,codebase_search
|
|
|
117
117
|
5. SEARCH QUERY 6. TWO-STAGE RETRIEVAL
|
|
118
118
|
┌─────────────────┐ ┌──────────────────┐
|
|
119
119
|
│ "Find auth │ │ Vector: top 50 │
|
|
120
|
-
│ logic" │
|
|
120
|
+
│ logic" │ ──────────── │ Rerank: top 10 │
|
|
121
121
|
└─────────────────┘ │ ~1000ms total │
|
|
122
122
|
└────────┬─────────┘
|
|
123
123
|
│
|
|
@@ -125,7 +125,7 @@ ENABLED_TOOLS=read_file,write_file,edit_file,codebase_search
|
|
|
125
125
|
7. RESULTS 8. AGENT USES CONTEXT
|
|
126
126
|
┌─────────────────┐ ┌──────────────────┐
|
|
127
127
|
│ Ranked code │ │ Makes informed │
|
|
128
|
-
│ with scores │
|
|
128
|
+
│ with scores │ ──────────── │ edits with │
|
|
129
129
|
│ + line numbers │ │ relevant context │
|
|
130
130
|
└─────────────────┘ └──────────────────┘
|
|
131
131
|
```
|
|
@@ -487,7 +487,7 @@ morph-mcp/
|
|
|
487
487
|
| Feature | Speed | Accuracy |
|
|
488
488
|
|---------|-------|----------|
|
|
489
489
|
| Fast Apply (edit_file) | 10,500+ tok/sec | 98% |
|
|
490
|
-
| Context Search (WarpGrep) | Multi-round,
|
|
490
|
+
| Context Search (WarpGrep) | Multi-round, 30s | High relevance |
|
|
491
491
|
| File Operations | Native speed | 100% |
|
|
492
492
|
|
|
493
493
|
**Note:** Performance metrics are based on Morph's production models. Actual performance may vary based on file size, complexity, and network conditions.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@morphllm/morphmcp",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.17",
|
|
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)",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"bugs": "https://github.com/modelcontextprotocol/servers/issues",
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
11
|
-
"url": "https://github.com/
|
|
11
|
+
"url": "https://github.com/morphllm",
|
|
12
12
|
"directory": "filesystem"
|
|
13
13
|
},
|
|
14
14
|
"publishConfig": {
|