@hivelore/mcp 0.39.1 → 0.39.2
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
|
@@ -2875,7 +2875,7 @@ function oneLine(value) {
|
|
|
2875
2875
|
return value.replace(/\s+/g, " ").replace(/"/g, '\\"').trim().slice(0, 120);
|
|
2876
2876
|
}
|
|
2877
2877
|
function serverVersion() {
|
|
2878
|
-
return true ? "0.39.
|
|
2878
|
+
return true ? "0.39.2" : "dev";
|
|
2879
2879
|
}
|
|
2880
2880
|
|
|
2881
2881
|
// src/tools/code-map.ts
|
|
@@ -4303,7 +4303,7 @@ When done, respond with: "Imported N memories: [list of IDs]" or "Nothing action
|
|
|
4303
4303
|
// src/server.ts
|
|
4304
4304
|
import { hasRecentBriefingMarker, loadConfigSync } from "@hivelore/core";
|
|
4305
4305
|
var SERVER_NAME = "hivelore";
|
|
4306
|
-
var SERVER_VERSION = "0.39.
|
|
4306
|
+
var SERVER_VERSION = "0.39.2";
|
|
4307
4307
|
function jsonResult(data) {
|
|
4308
4308
|
return {
|
|
4309
4309
|
content: [
|
package/dist/server.js
CHANGED
|
@@ -2881,7 +2881,7 @@ function oneLine(value) {
|
|
|
2881
2881
|
return value.replace(/\s+/g, " ").replace(/"/g, '\\"').trim().slice(0, 120);
|
|
2882
2882
|
}
|
|
2883
2883
|
function serverVersion() {
|
|
2884
|
-
return true ? "0.39.
|
|
2884
|
+
return true ? "0.39.2" : "dev";
|
|
2885
2885
|
}
|
|
2886
2886
|
|
|
2887
2887
|
// src/tools/code-map.ts
|
|
@@ -4309,7 +4309,7 @@ When done, respond with: "Imported N memories: [list of IDs]" or "Nothing action
|
|
|
4309
4309
|
// src/server.ts
|
|
4310
4310
|
import { hasRecentBriefingMarker, loadConfigSync } from "@hivelore/core";
|
|
4311
4311
|
var SERVER_NAME = "hivelore";
|
|
4312
|
-
var SERVER_VERSION = "0.39.
|
|
4312
|
+
var SERVER_VERSION = "0.39.2";
|
|
4313
4313
|
function jsonResult(data) {
|
|
4314
4314
|
return {
|
|
4315
4315
|
content: [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hivelore/mcp",
|
|
3
|
-
"version": "0.39.
|
|
3
|
+
"version": "0.39.2",
|
|
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": {
|
|
@@ -46,8 +46,8 @@
|
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
48
48
|
"zod": "^3.23.8",
|
|
49
|
-
"@hivelore/core": "0.39.
|
|
50
|
-
"@hivelore/embeddings": "0.39.
|
|
49
|
+
"@hivelore/core": "0.39.2",
|
|
50
|
+
"@hivelore/embeddings": "0.39.2"
|
|
51
51
|
},
|
|
52
52
|
"scripts": {
|
|
53
53
|
"build": "tsup",
|