@hivelore/mcp 0.52.1 → 0.53.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
|
@@ -3237,7 +3237,7 @@ function oneLine(value) {
|
|
|
3237
3237
|
return value.replace(/\s+/g, " ").replace(/"/g, '\\"').trim().slice(0, 120);
|
|
3238
3238
|
}
|
|
3239
3239
|
function serverVersion() {
|
|
3240
|
-
return true ? "0.
|
|
3240
|
+
return true ? "0.53.0" : "dev";
|
|
3241
3241
|
}
|
|
3242
3242
|
|
|
3243
3243
|
// src/tools/code-map.ts
|
|
@@ -4702,7 +4702,7 @@ When done, respond with: "Imported N memories: [list of IDs]" or "Nothing action
|
|
|
4702
4702
|
// src/server.ts
|
|
4703
4703
|
import { hasRecentBriefingMarker, loadConfigSync } from "@hivelore/core";
|
|
4704
4704
|
var SERVER_NAME = "hivelore";
|
|
4705
|
-
var SERVER_VERSION = "0.
|
|
4705
|
+
var SERVER_VERSION = "0.53.0";
|
|
4706
4706
|
function jsonResult(data) {
|
|
4707
4707
|
return {
|
|
4708
4708
|
content: [
|
package/dist/server.js
CHANGED
|
@@ -3243,7 +3243,7 @@ function oneLine(value) {
|
|
|
3243
3243
|
return value.replace(/\s+/g, " ").replace(/"/g, '\\"').trim().slice(0, 120);
|
|
3244
3244
|
}
|
|
3245
3245
|
function serverVersion() {
|
|
3246
|
-
return true ? "0.
|
|
3246
|
+
return true ? "0.53.0" : "dev";
|
|
3247
3247
|
}
|
|
3248
3248
|
|
|
3249
3249
|
// src/tools/code-map.ts
|
|
@@ -4708,7 +4708,7 @@ When done, respond with: "Imported N memories: [list of IDs]" or "Nothing action
|
|
|
4708
4708
|
// src/server.ts
|
|
4709
4709
|
import { hasRecentBriefingMarker, loadConfigSync } from "@hivelore/core";
|
|
4710
4710
|
var SERVER_NAME = "hivelore";
|
|
4711
|
-
var SERVER_VERSION = "0.
|
|
4711
|
+
var SERVER_VERSION = "0.53.0";
|
|
4712
4712
|
function jsonResult(data) {
|
|
4713
4713
|
return {
|
|
4714
4714
|
content: [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hivelore/mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.53.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": {
|
|
@@ -48,10 +48,10 @@
|
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
50
50
|
"zod": "^3.23.8",
|
|
51
|
-
"@hivelore/core": "0.
|
|
51
|
+
"@hivelore/core": "0.53.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@hivelore/embeddings": "0.
|
|
54
|
+
"@hivelore/embeddings": "0.53.0"
|
|
55
55
|
},
|
|
56
56
|
"peerDependencies": {
|
|
57
57
|
"@hivelore/embeddings": "*"
|