@hivelore/mcp 0.53.1 → 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/index.js CHANGED
@@ -3237,7 +3237,7 @@ function oneLine(value) {
3237
3237
  return value.replace(/\s+/g, " ").replace(/"/g, '\\"').trim().slice(0, 120);
3238
3238
  }
3239
3239
  function serverVersion() {
3240
- return true ? "0.53.1" : "dev";
3240
+ return true ? "0.53.2" : "dev";
3241
3241
  }
3242
3242
 
3243
3243
  // src/tools/code-map.ts
@@ -4702,7 +4702,7 @@ When done, respond with: "Imported N memories: [list of IDs]" or "Nothing action
4702
4702
  // src/server.ts
4703
4703
  import { hasRecentBriefingMarker, loadConfigSync } from "@hivelore/core";
4704
4704
  var SERVER_NAME = "hivelore";
4705
- var SERVER_VERSION = "0.53.1";
4705
+ var SERVER_VERSION = "0.53.2";
4706
4706
  function jsonResult(data) {
4707
4707
  return {
4708
4708
  content: [
@@ -5645,7 +5645,7 @@ async function runHaiveMcpStdio(options) {
5645
5645
  await writeMcpRuntimeMarker(context).catch(() => {
5646
5646
  });
5647
5647
  console.error(
5648
- `[haive-mcp] starting server v${SERVER_VERSION} (project root: ${context.paths.root})`
5648
+ `[hivelore-mcp] starting server v${SERVER_VERSION} (project root: ${context.paths.root})`
5649
5649
  );
5650
5650
  await server.connect(new StdioServerTransport());
5651
5651
  }
@@ -5666,7 +5666,7 @@ if (parsed.versionOnly) {
5666
5666
  process.exit(0);
5667
5667
  }
5668
5668
  runHaiveMcpStdio({ root: parsed.root }).catch((err) => {
5669
- console.error("[haive-mcp] fatal:", err instanceof Error ? err.message : err);
5669
+ console.error("[hivelore-mcp] fatal:", err instanceof Error ? err.message : err);
5670
5670
  process.exit(1);
5671
5671
  });
5672
5672
  //# sourceMappingURL=index.js.map