harmony-mcp 1.5.4 → 1.5.8

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.
Files changed (2) hide show
  1. package/dist/cli.js +2 -2
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -31795,7 +31795,7 @@ If pausing: \`harmony_end_agent_session\` with \`status: "paused"\`
31795
31795
  async function registerMcpServer() {
31796
31796
  try {
31797
31797
  const { execSync } = await import("node:child_process");
31798
- execSync("claude mcp add --transport stdio harmony -- harmony-mcp serve", {
31798
+ execSync("claude mcp add --transport stdio harmony -- npx -y harmony-mcp@latest serve", {
31799
31799
  stdio: "pipe"
31800
31800
  });
31801
31801
  return true;
@@ -32383,7 +32383,7 @@ async function runSetup(options = {}) {
32383
32383
  await writeMcpConfigFallback(home);
32384
32384
  console.log(` ${colors.success("✓")} ${colors.dim(formatPath(join3(home, ".claude", "settings.json"), home))} ${colors.dim("(updated)")}`);
32385
32385
  } catch {
32386
- M2.warning("Could not register MCP server. Run manually: claude mcp add --transport stdio harmony -- harmony-mcp serve");
32386
+ M2.warning("Could not register MCP server. Run manually: claude mcp add --transport stdio harmony -- npx -y harmony-mcp@latest serve");
32387
32387
  }
32388
32388
  }
32389
32389
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "harmony-mcp",
3
- "version": "1.5.4",
3
+ "version": "1.5.8",
4
4
  "description": "MCP server for Harmony Kanban board - enables AI coding agents to manage your boards",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",