@hivelore/mcp 0.36.0 → 0.37.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
|
@@ -2713,7 +2713,7 @@ function oneLine(value) {
|
|
|
2713
2713
|
return value.replace(/\s+/g, " ").replace(/"/g, '\\"').trim().slice(0, 120);
|
|
2714
2714
|
}
|
|
2715
2715
|
function serverVersion() {
|
|
2716
|
-
return true ? "0.
|
|
2716
|
+
return true ? "0.37.0" : "dev";
|
|
2717
2717
|
}
|
|
2718
2718
|
|
|
2719
2719
|
// src/tools/code-map.ts
|
|
@@ -4141,7 +4141,7 @@ When done, respond with: "Imported N memories: [list of IDs]" or "Nothing action
|
|
|
4141
4141
|
// src/server.ts
|
|
4142
4142
|
import { hasRecentBriefingMarker, loadConfigSync } from "@hivelore/core";
|
|
4143
4143
|
var SERVER_NAME = "hivelore";
|
|
4144
|
-
var SERVER_VERSION = "0.
|
|
4144
|
+
var SERVER_VERSION = "0.37.0";
|
|
4145
4145
|
function jsonResult(data) {
|
|
4146
4146
|
return {
|
|
4147
4147
|
content: [
|
package/dist/server.js
CHANGED
|
@@ -2711,7 +2711,7 @@ function oneLine(value) {
|
|
|
2711
2711
|
return value.replace(/\s+/g, " ").replace(/"/g, '\\"').trim().slice(0, 120);
|
|
2712
2712
|
}
|
|
2713
2713
|
function serverVersion() {
|
|
2714
|
-
return true ? "0.
|
|
2714
|
+
return true ? "0.37.0" : "dev";
|
|
2715
2715
|
}
|
|
2716
2716
|
|
|
2717
2717
|
// src/tools/code-map.ts
|
|
@@ -4139,7 +4139,7 @@ When done, respond with: "Imported N memories: [list of IDs]" or "Nothing action
|
|
|
4139
4139
|
// src/server.ts
|
|
4140
4140
|
import { hasRecentBriefingMarker, loadConfigSync } from "@hivelore/core";
|
|
4141
4141
|
var SERVER_NAME = "hivelore";
|
|
4142
|
-
var SERVER_VERSION = "0.
|
|
4142
|
+
var SERVER_VERSION = "0.37.0";
|
|
4143
4143
|
function jsonResult(data) {
|
|
4144
4144
|
return {
|
|
4145
4145
|
content: [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hivelore/mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.37.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": {
|
|
@@ -46,8 +46,8 @@
|
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
48
48
|
"zod": "^3.23.8",
|
|
49
|
-
"@hivelore/core": "0.
|
|
50
|
-
"@hivelore/embeddings": "0.
|
|
49
|
+
"@hivelore/core": "0.37.0",
|
|
50
|
+
"@hivelore/embeddings": "0.37.0"
|
|
51
51
|
},
|
|
52
52
|
"scripts": {
|
|
53
53
|
"build": "tsup",
|