harnessed 3.9.1 → 3.9.3

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/cli.mjs CHANGED
@@ -777,9 +777,7 @@ async function checkMcpAvailability() {
777
777
  const parsed = JSON.parse(raw);
778
778
  const servers = parsed.mcpServers ?? {};
779
779
  const serverNames = Object.keys(servers);
780
- installed = TARGET_SERVERS.filter(
781
- (s) => serverNames.some((n) => n.includes(s) || s.includes(n))
782
- );
780
+ installed = TARGET_SERVERS.filter((s) => serverNames.includes(s));
783
781
  missing = TARGET_SERVERS.filter((s) => !installed.includes(s));
784
782
  } catch {
785
783
  }
@@ -811,12 +809,13 @@ async function checkMcpAvailability() {
811
809
  var TARGET_SERVERS, SERVER_INSTALL_COMMANDS;
812
810
  var init_check_mcp_availability = __esm({
813
811
  "src/cli/lib/check-mcp-availability.ts"() {
814
- TARGET_SERVERS = ["tavily-mcp", "exa-mcp", "chrome-devtools"];
812
+ TARGET_SERVERS = ["tavily-remote-mcp", "exa", "chrome-devtools"];
815
813
  SERVER_INSTALL_COMMANDS = {
816
- "tavily-mcp": "claude mcp add tavily-remote-mcp --transport http https://mcp.tavily.com/mcp/",
817
- "exa-mcp": "claude mcp add --transport http exa https://mcp.exa.ai/mcp",
818
- // chrome-devtools: empirical-pending assumed npx until dogfood confirmation.
819
- "chrome-devtools": "npx chrome-devtools-mcp@latest"
814
+ "tavily-remote-mcp": "claude mcp add tavily-remote-mcp --transport http https://mcp.tavily.com/mcp/",
815
+ exa: "claude mcp add --transport http exa https://mcp.exa.ai/mcp",
816
+ // chrome-devtools: official Claude marketplace direct install (v3.9.2 dogfood
817
+ // confirmed — was assumed npx in v3.9.1 SPEC, corrected to official marketplace).
818
+ "chrome-devtools": "claude plugin install chrome-devtools-mcp"
820
819
  };
821
820
  }
822
821
  });
@@ -1164,7 +1163,7 @@ var init_auto_install = __esm({
1164
1163
 
1165
1164
  // package.json
1166
1165
  var package_default = {
1167
- version: "3.9.1"};
1166
+ version: "3.9.3"};
1168
1167
 
1169
1168
  // src/manifest/errors.ts
1170
1169
  function instancePathToKeyPath(instancePath) {