@hivelore/mcp 0.46.0 → 0.47.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 +2 -2
- package/dist/server.js +2 -2
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -3215,7 +3215,7 @@ function oneLine(value) {
|
|
|
3215
3215
|
return value.replace(/\s+/g, " ").replace(/"/g, '\\"').trim().slice(0, 120);
|
|
3216
3216
|
}
|
|
3217
3217
|
function serverVersion() {
|
|
3218
|
-
return true ? "0.
|
|
3218
|
+
return true ? "0.47.0" : "dev";
|
|
3219
3219
|
}
|
|
3220
3220
|
|
|
3221
3221
|
// src/tools/code-map.ts
|
|
@@ -4668,7 +4668,7 @@ When done, respond with: "Imported N memories: [list of IDs]" or "Nothing action
|
|
|
4668
4668
|
// src/server.ts
|
|
4669
4669
|
import { hasRecentBriefingMarker, loadConfigSync } from "@hivelore/core";
|
|
4670
4670
|
var SERVER_NAME = "hivelore";
|
|
4671
|
-
var SERVER_VERSION = "0.
|
|
4671
|
+
var SERVER_VERSION = "0.47.0";
|
|
4672
4672
|
function jsonResult(data) {
|
|
4673
4673
|
return {
|
|
4674
4674
|
content: [
|
package/dist/server.js
CHANGED
|
@@ -3221,7 +3221,7 @@ function oneLine(value) {
|
|
|
3221
3221
|
return value.replace(/\s+/g, " ").replace(/"/g, '\\"').trim().slice(0, 120);
|
|
3222
3222
|
}
|
|
3223
3223
|
function serverVersion() {
|
|
3224
|
-
return true ? "0.
|
|
3224
|
+
return true ? "0.47.0" : "dev";
|
|
3225
3225
|
}
|
|
3226
3226
|
|
|
3227
3227
|
// src/tools/code-map.ts
|
|
@@ -4674,7 +4674,7 @@ When done, respond with: "Imported N memories: [list of IDs]" or "Nothing action
|
|
|
4674
4674
|
// src/server.ts
|
|
4675
4675
|
import { hasRecentBriefingMarker, loadConfigSync } from "@hivelore/core";
|
|
4676
4676
|
var SERVER_NAME = "hivelore";
|
|
4677
|
-
var SERVER_VERSION = "0.
|
|
4677
|
+
var SERVER_VERSION = "0.47.0";
|
|
4678
4678
|
function jsonResult(data) {
|
|
4679
4679
|
return {
|
|
4680
4680
|
content: [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hivelore/mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.47.0",
|
|
4
4
|
"description": "Hivelore MCP server - policy-aware briefing and memory tools for coding-agent harnesses",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -49,10 +49,10 @@
|
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
51
51
|
"zod": "^3.23.8",
|
|
52
|
-
"@hivelore/core": "0.
|
|
52
|
+
"@hivelore/core": "0.47.0"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@hivelore/embeddings": "0.
|
|
55
|
+
"@hivelore/embeddings": "0.47.0"
|
|
56
56
|
},
|
|
57
57
|
"peerDependencies": {
|
|
58
58
|
"@hivelore/embeddings": "*"
|