@hivelore/mcp 0.53.0 → 0.53.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/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.53.0" : "dev";
3246
+ return true ? "0.53.2" : "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.53.0";
4711
+ var SERVER_VERSION = "0.53.2";
4712
4712
  function jsonResult(data) {
4713
4713
  return {
4714
4714
  content: [
@@ -5651,7 +5651,7 @@ async function runHaiveMcpStdio(options) {
5651
5651
  await writeMcpRuntimeMarker(context).catch(() => {
5652
5652
  });
5653
5653
  console.error(
5654
- `[haive-mcp] starting server v${SERVER_VERSION} (project root: ${context.paths.root})`
5654
+ `[hivelore-mcp] starting server v${SERVER_VERSION} (project root: ${context.paths.root})`
5655
5655
  );
5656
5656
  await server.connect(new StdioServerTransport());
5657
5657
  }