@hivelore/mcp 0.30.0 → 0.30.1
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
|
@@ -2634,7 +2634,7 @@ function oneLine(value) {
|
|
|
2634
2634
|
return value.replace(/\s+/g, " ").replace(/"/g, '\\"').trim().slice(0, 120);
|
|
2635
2635
|
}
|
|
2636
2636
|
function serverVersion() {
|
|
2637
|
-
return true ? "0.30.
|
|
2637
|
+
return true ? "0.30.1" : "dev";
|
|
2638
2638
|
}
|
|
2639
2639
|
|
|
2640
2640
|
// src/tools/code-map.ts
|
|
@@ -4705,7 +4705,7 @@ When done, respond with: "Imported N memories: [list of IDs]" or "Nothing action
|
|
|
4705
4705
|
// src/server.ts
|
|
4706
4706
|
import { hasRecentBriefingMarker, loadConfigSync } from "@hivelore/core";
|
|
4707
4707
|
var SERVER_NAME = "hivelore";
|
|
4708
|
-
var SERVER_VERSION = "0.30.
|
|
4708
|
+
var SERVER_VERSION = "0.30.1";
|
|
4709
4709
|
function jsonResult(data) {
|
|
4710
4710
|
return {
|
|
4711
4711
|
content: [
|
package/dist/server.js
CHANGED
|
@@ -2632,7 +2632,7 @@ function oneLine(value) {
|
|
|
2632
2632
|
return value.replace(/\s+/g, " ").replace(/"/g, '\\"').trim().slice(0, 120);
|
|
2633
2633
|
}
|
|
2634
2634
|
function serverVersion() {
|
|
2635
|
-
return true ? "0.30.
|
|
2635
|
+
return true ? "0.30.1" : "dev";
|
|
2636
2636
|
}
|
|
2637
2637
|
|
|
2638
2638
|
// src/tools/code-map.ts
|
|
@@ -4703,7 +4703,7 @@ When done, respond with: "Imported N memories: [list of IDs]" or "Nothing action
|
|
|
4703
4703
|
// src/server.ts
|
|
4704
4704
|
import { hasRecentBriefingMarker, loadConfigSync } from "@hivelore/core";
|
|
4705
4705
|
var SERVER_NAME = "hivelore";
|
|
4706
|
-
var SERVER_VERSION = "0.30.
|
|
4706
|
+
var SERVER_VERSION = "0.30.1";
|
|
4707
4707
|
function jsonResult(data) {
|
|
4708
4708
|
return {
|
|
4709
4709
|
content: [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hivelore/mcp",
|
|
3
|
-
"version": "0.30.
|
|
3
|
+
"version": "0.30.1",
|
|
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/
|
|
50
|
-
"@hivelore/
|
|
49
|
+
"@hivelore/embeddings": "0.30.1",
|
|
50
|
+
"@hivelore/core": "0.30.1"
|
|
51
51
|
},
|
|
52
52
|
"scripts": {
|
|
53
53
|
"build": "tsup",
|