@mcp-use/cli 3.5.1 → 3.5.2-canary.0

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.
@@ -1 +1 @@
1
- {"version":3,"file":"env.d.ts","sourceRoot":"","sources":["../../src/commands/env.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAmRpC,wBAAgB,gBAAgB,IAAI,OAAO,CAmE1C"}
1
+ {"version":3,"file":"env.d.ts","sourceRoot":"","sources":["../../src/commands/env.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAoRpC,wBAAgB,gBAAgB,IAAI,OAAO,CAmE1C"}
package/dist/index.cjs CHANGED
@@ -6723,7 +6723,7 @@ async function resolveVarId(api, server, keyOrId, branch) {
6723
6723
  }
6724
6724
  function printEnvVar(v, showValue = false) {
6725
6725
  const envs = v.environments.map(envBadge).join(" ");
6726
- const val = v.sensitive ? source_default.gray("<sensitive>") : showValue ? source_default.cyan(v.value) : source_default.gray("(hidden \u2014 use --show-values to reveal)");
6726
+ const val = v.sensitive || v.value === null ? source_default.gray("<sensitive>") : showValue ? source_default.cyan(v.value) : source_default.gray("(hidden \u2014 use --show-values to reveal)");
6727
6727
  const branch = v.branch ? " " + source_default.magenta(`branch:${v.branch}`) : "";
6728
6728
  console.log(` ${source_default.white.bold(v.key.padEnd(32))} ${val}`);
6729
6729
  console.log(