@hivelore/mcp 0.35.0 → 0.35.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
|
@@ -2706,7 +2706,7 @@ function oneLine(value) {
|
|
|
2706
2706
|
return value.replace(/\s+/g, " ").replace(/"/g, '\\"').trim().slice(0, 120);
|
|
2707
2707
|
}
|
|
2708
2708
|
function serverVersion() {
|
|
2709
|
-
return true ? "0.35.
|
|
2709
|
+
return true ? "0.35.1" : "dev";
|
|
2710
2710
|
}
|
|
2711
2711
|
|
|
2712
2712
|
// src/tools/code-map.ts
|
|
@@ -4134,7 +4134,7 @@ When done, respond with: "Imported N memories: [list of IDs]" or "Nothing action
|
|
|
4134
4134
|
// src/server.ts
|
|
4135
4135
|
import { hasRecentBriefingMarker, loadConfigSync } from "@hivelore/core";
|
|
4136
4136
|
var SERVER_NAME = "hivelore";
|
|
4137
|
-
var SERVER_VERSION = "0.35.
|
|
4137
|
+
var SERVER_VERSION = "0.35.1";
|
|
4138
4138
|
function jsonResult(data) {
|
|
4139
4139
|
return {
|
|
4140
4140
|
content: [
|
package/dist/server.js
CHANGED
|
@@ -2704,7 +2704,7 @@ function oneLine(value) {
|
|
|
2704
2704
|
return value.replace(/\s+/g, " ").replace(/"/g, '\\"').trim().slice(0, 120);
|
|
2705
2705
|
}
|
|
2706
2706
|
function serverVersion() {
|
|
2707
|
-
return true ? "0.35.
|
|
2707
|
+
return true ? "0.35.1" : "dev";
|
|
2708
2708
|
}
|
|
2709
2709
|
|
|
2710
2710
|
// src/tools/code-map.ts
|
|
@@ -4132,7 +4132,7 @@ When done, respond with: "Imported N memories: [list of IDs]" or "Nothing action
|
|
|
4132
4132
|
// src/server.ts
|
|
4133
4133
|
import { hasRecentBriefingMarker, loadConfigSync } from "@hivelore/core";
|
|
4134
4134
|
var SERVER_NAME = "hivelore";
|
|
4135
|
-
var SERVER_VERSION = "0.35.
|
|
4135
|
+
var SERVER_VERSION = "0.35.1";
|
|
4136
4136
|
function jsonResult(data) {
|
|
4137
4137
|
return {
|
|
4138
4138
|
content: [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hivelore/mcp",
|
|
3
|
-
"version": "0.35.
|
|
3
|
+
"version": "0.35.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/core": "0.35.
|
|
50
|
-
"@hivelore/embeddings": "0.35.
|
|
49
|
+
"@hivelore/core": "0.35.1",
|
|
50
|
+
"@hivelore/embeddings": "0.35.1"
|
|
51
51
|
},
|
|
52
52
|
"scripts": {
|
|
53
53
|
"build": "tsup",
|