harnessed 3.9.2 → 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 +5 -7
- package/dist/cli.mjs.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
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,10 +809,10 @@ 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
|
|
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
|
-
|
|
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",
|
|
818
816
|
// chrome-devtools: official Claude marketplace direct install (v3.9.2 dogfood
|
|
819
817
|
// confirmed — was assumed npx in v3.9.1 SPEC, corrected to official marketplace).
|
|
820
818
|
"chrome-devtools": "claude plugin install chrome-devtools-mcp"
|
|
@@ -1165,7 +1163,7 @@ var init_auto_install = __esm({
|
|
|
1165
1163
|
|
|
1166
1164
|
// package.json
|
|
1167
1165
|
var package_default = {
|
|
1168
|
-
version: "3.9.
|
|
1166
|
+
version: "3.9.3"};
|
|
1169
1167
|
|
|
1170
1168
|
// src/manifest/errors.ts
|
|
1171
1169
|
function instancePathToKeyPath(instancePath) {
|