@dosu/cli 0.3.5 → 0.3.6

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/bin/dosu.js +4 -4
  2. package/package.json +1 -1
package/bin/dosu.js CHANGED
@@ -4548,7 +4548,7 @@ async function runTUI() {
4548
4548
  hint: isAuthenticated(cfg) ? "Re-authenticate" : undefined
4549
4549
  },
4550
4550
  {
4551
- label: "Choose Deployment",
4551
+ label: "Choose MCP",
4552
4552
  value: "deployments",
4553
4553
  hint: !isAuthenticated(cfg) ? "Login first" : undefined
4554
4554
  },
@@ -4610,7 +4610,7 @@ async function handleDeployments(cfg) {
4610
4610
  return;
4611
4611
  }
4612
4612
  const selected = await ve({
4613
- message: "Select a deployment",
4613
+ message: "Select an MCP",
4614
4614
  options: deployments.map((d3) => ({
4615
4615
  label: `${d3.name} ${import_picocolors2.default.dim(`(${d3.org_name})`)}`,
4616
4616
  value: d3.deployment_id
@@ -4946,7 +4946,7 @@ ${dim(deployments[0].name)}`);
4946
4946
  return deployments[0];
4947
4947
  }
4948
4948
  const selected = await ve({
4949
- message: "Select a deployment",
4949
+ message: "Select an MCP",
4950
4950
  options: deployments.map((d3) => ({ label: d3.name, value: d3.deployment_id }))
4951
4951
  });
4952
4952
  if (pD(selected))
@@ -5106,7 +5106,7 @@ init_config();
5106
5106
  init_providers();
5107
5107
 
5108
5108
  // src/version/version.ts
5109
- var VERSION = "0.3.5";
5109
+ var VERSION = "0.3.6";
5110
5110
  function getVersionString() {
5111
5111
  return `v${VERSION}`;
5112
5112
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dosu/cli",
3
- "version": "0.3.5",
3
+ "version": "0.3.6",
4
4
  "type": "module",
5
5
  "description": "Dosu CLI - Manage MCP servers for AI tools",
6
6
  "license": "MIT",