@mcp-use/cli 1.0.11 → 1.0.15

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 +181 -76
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -225853,11 +225853,11 @@ var require_react_jsx_runtime_development = __commonJS({
225853
225853
  return jsxWithValidation(type, props, key, false);
225854
225854
  }
225855
225855
  }
225856
- var jsx10 = jsxWithValidationDynamic;
225857
- var jsxs7 = jsxWithValidationStatic;
225856
+ var jsx11 = jsxWithValidationDynamic;
225857
+ var jsxs8 = jsxWithValidationStatic;
225858
225858
  exports2.Fragment = REACT_FRAGMENT_TYPE;
225859
- exports2.jsx = jsx10;
225860
- exports2.jsxs = jsxs7;
225859
+ exports2.jsx = jsx11;
225860
+ exports2.jsxs = jsxs8;
225861
225861
  })();
225862
225862
  }
225863
225863
  }
@@ -279210,6 +279210,9 @@ var LLMService = class {
279210
279210
  getAvailableProviders() {
279211
279211
  return Object.entries(PROVIDERS).filter(([, providerInfo]) => this.getApiKey(providerInfo.envVar)).map(([providerName]) => providerName);
279212
279212
  }
279213
+ getAllProviderNames() {
279214
+ return Object.keys(PROVIDERS);
279215
+ }
279213
279216
  isAnyProviderAvailable() {
279214
279217
  return this.getAvailableProviders().length > 0;
279215
279218
  }
@@ -279681,7 +279684,7 @@ var MCPConfigService = class {
279681
279684
  success: false,
279682
279685
  message: `Server(s) already exist: ${conflicts.join(
279683
279686
  ", "
279684
- )}. Please use different names.`
279687
+ )}. Please use different names. If you want to connect to it, use /server connect <name>.`
279685
279688
  };
279686
279689
  }
279687
279690
  for (const [name, serverConfig] of Object.entries(servers)) {
@@ -279703,7 +279706,10 @@ var MCPConfigService = class {
279703
279706
  success: true,
279704
279707
  message: `Configured ${serverNames.length} server(s)!
279705
279708
 
279706
- ${serverList}`,
279709
+ ${serverList}
279710
+
279711
+
279712
+ Use /server connect <name> to connect to it.`,
279707
279713
  data: {
279708
279714
  serversAdded: true,
279709
279715
  serverNames
@@ -280374,7 +280380,13 @@ var CLIService = class {
280374
280380
  registerCommands() {
280375
280381
  this.commandRegistry.set("/model", {
280376
280382
  handler: (args) => this.llmService.handleModelCommand(args),
280377
- description: "Choose your LLM provider and model"
280383
+ description: "Choose your LLM provider and model",
280384
+ getSuggestions: async (args) => {
280385
+ if (args.length <= 1) {
280386
+ return this.llmService.getAllProviderNames();
280387
+ }
280388
+ return [];
280389
+ }
280378
280390
  });
280379
280391
  this.commandRegistry.set("/models", {
280380
280392
  handler: () => this.llmService.handleListModelsCommand(),
@@ -280394,7 +280406,8 @@ var CLIService = class {
280394
280406
  });
280395
280407
  this.commandRegistry.set("/server", {
280396
280408
  handler: (args) => this.handleServerCommand(args),
280397
- description: "Manage MCP servers"
280409
+ description: "Manage MCP servers",
280410
+ getSuggestions: () => ["add", "connect", "disconnect"]
280398
280411
  });
280399
280412
  this.commandRegistry.set("/server add", {
280400
280413
  handler: () => this.handleServerAddCommand(),
@@ -280402,11 +280415,19 @@ var CLIService = class {
280402
280415
  });
280403
280416
  this.commandRegistry.set("/server connect", {
280404
280417
  handler: async (args) => this.handleServerConnectCommand(args),
280405
- description: "Connect to a configured server"
280418
+ description: "Connect to a configured server",
280419
+ getSuggestions: async () => {
280420
+ const configured = Object.keys(
280421
+ this.mcpConfigService.getConfiguredServers()
280422
+ );
280423
+ const connected = this.agentService.getConnectedServerNames();
280424
+ return configured.filter((s5) => !connected.includes(s5));
280425
+ }
280406
280426
  });
280407
280427
  this.commandRegistry.set("/server disconnect", {
280408
280428
  handler: async (args) => this.handleServerDisconnectCommand(args),
280409
- description: "Disconnect from a server"
280429
+ description: "Disconnect from a server",
280430
+ getSuggestions: async () => this.agentService.getConnectedServerNames()
280410
280431
  });
280411
280432
  this.commandRegistry.set("/servers", {
280412
280433
  handler: () => this.handleListServersCommand(),
@@ -280886,29 +280907,82 @@ Connected servers: ${connectedServers.join(
280886
280907
  message: "Server name is required.\n\nUsage: /server disconnect <server_name>"
280887
280908
  };
280888
280909
  }
280889
- if (!this.agentService.isServerConnected(serverName)) {
280890
- return {
280891
- type: "error",
280892
- message: `Server "${serverName}" is not connected.`
280893
- };
280894
- }
280895
280910
  try {
280896
- this.agentService.disconnectServer(serverName);
280911
+ await this.agentService.disconnectServer(serverName);
280912
+ await this.initializeAgent();
280897
280913
  return {
280898
- type: "success",
280899
- message: `\u2705 Disconnected from server "${serverName}".`,
280900
- data: { reinitializeAgent: true }
280914
+ type: "server_action",
280915
+ message: `Disconnected from server: ${serverName}`,
280916
+ data: {
280917
+ reinitializeAgent: true,
280918
+ serverName,
280919
+ action: "disconnect"
280920
+ }
280901
280921
  };
280902
280922
  } catch (error) {
280903
- Logger.error(`Failed to disconnect from server ${serverName}`, {
280904
- error: error instanceof Error ? error.message : String(error)
280905
- });
280906
280923
  return {
280907
280924
  type: "error",
280908
- message: `Failed to disconnect from server "${serverName}": ${error instanceof Error ? error.message : "Unknown error"}`
280925
+ message: `Failed to disconnect from ${serverName}: ${error instanceof Error ? error.message : "Unknown error"}`
280909
280926
  };
280910
280927
  }
280911
280928
  }
280929
+ /**
280930
+ * Gets command suggestions based on the user's input.
280931
+ * It can suggest commands, subcommands, or arguments.
280932
+ * @param text The full input string from the user.
280933
+ * @returns A promise that resolves to an array of suggestion strings.
280934
+ */
280935
+ async getSuggestions(text) {
280936
+ const parts = text.trim().split(/\s+/);
280937
+ const commandName = parts[0] || "";
280938
+ if (!text.includes(" ")) {
280939
+ return [...this.commandRegistry.keys()].filter(
280940
+ (c4) => c4.startsWith(commandName) && !c4.includes(" ")
280941
+ );
280942
+ }
280943
+ const getPotentialCommands = (input) => {
280944
+ const result = [];
280945
+ const ps = input.trim().split(" ");
280946
+ if (ps.length >= 2) {
280947
+ const twoPartCmd = `${ps[0]} ${ps[1]}`;
280948
+ if (this.commandRegistry.has(twoPartCmd)) {
280949
+ result.push({
280950
+ cmd: twoPartCmd,
280951
+ entry: this.commandRegistry.get(twoPartCmd),
280952
+ args: ps.slice(2)
280953
+ });
280954
+ }
280955
+ }
280956
+ if (this.commandRegistry.has(ps[0])) {
280957
+ result.push({
280958
+ cmd: ps[0],
280959
+ entry: this.commandRegistry.get(ps[0]),
280960
+ args: ps.slice(1)
280961
+ });
280962
+ }
280963
+ return result;
280964
+ };
280965
+ const potentialCommands = getPotentialCommands(text);
280966
+ if (potentialCommands.length === 0) {
280967
+ return [];
280968
+ }
280969
+ const { entry, args } = potentialCommands.length > 1 && potentialCommands[0].cmd.length > potentialCommands[1].cmd.length ? potentialCommands[0] : potentialCommands.at(-1);
280970
+ if (entry.getSuggestions) {
280971
+ const suggestions = await entry.getSuggestions(args);
280972
+ const lastArg = text.endsWith(" ") ? "" : args.at(-1) || "";
280973
+ const filtered = suggestions.filter((s5) => s5.startsWith(lastArg));
280974
+ const baseCommand = text.endsWith(" ") ? text : text.slice(0, -lastArg.length);
280975
+ return filtered.map((s5) => `${baseCommand}${s5}`);
280976
+ }
280977
+ return [];
280978
+ }
280979
+ /**
280980
+ * Returns the command registry.
280981
+ * @returns The map of registered commands
280982
+ */
280983
+ getCommandRegistry() {
280984
+ return this.commandRegistry;
280985
+ }
280912
280986
  };
280913
280987
  var cliService = new CLIService();
280914
280988
 
@@ -283098,8 +283172,24 @@ var Footer = ({
283098
283172
  );
283099
283173
  };
283100
283174
 
283101
- // source/app.tsx
283175
+ // source/components/CommandSuggestions.tsx
283102
283176
  var import_jsx_runtime8 = __toESM(require_jsx_runtime(), 1);
283177
+ function CommandSuggestions({
283178
+ suggestions,
283179
+ query
283180
+ }) {
283181
+ const filteredSuggestions = suggestions.filter((s5) => s5.startsWith(query));
283182
+ if (filteredSuggestions.length === 0) {
283183
+ return null;
283184
+ }
283185
+ return /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Box_default, { flexDirection: "column", marginTop: 1, children: /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(Box_default, { borderStyle: "round", paddingX: 1, flexDirection: "column", children: [
283186
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Text, { bold: true, children: "SUGGESTIONS" }),
283187
+ filteredSuggestions.slice(0, 5).map((suggestion) => /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Box_default, { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Text, { children: suggestion }) }, suggestion))
283188
+ ] }) });
283189
+ }
283190
+
283191
+ // source/app.tsx
283192
+ var import_jsx_runtime9 = __toESM(require_jsx_runtime(), 1);
283103
283193
  function App2() {
283104
283194
  const [messages2, setMessages] = (0, import_react26.useState)([]);
283105
283195
  const [input, setInput] = (0, import_react26.useState)("");
@@ -283117,6 +283207,7 @@ function App2() {
283117
283207
  const [inputHistory, setInputHistory] = (0, import_react26.useState)([]);
283118
283208
  const [historyIndex, setHistoryIndex] = (0, import_react26.useState)(-1);
283119
283209
  const [tempInput, setTempInput] = (0, import_react26.useState)("");
283210
+ const [suggestions, setSuggestions] = (0, import_react26.useState)([]);
283120
283211
  const { stdout } = use_stdout_default();
283121
283212
  (0, import_react26.useEffect)(() => {
283122
283213
  const initializeMCP = async () => {
@@ -283146,6 +283237,17 @@ function App2() {
283146
283237
  };
283147
283238
  initializeMCP();
283148
283239
  }, []);
283240
+ (0, import_react26.useEffect)(() => {
283241
+ const fetchSuggestions = async () => {
283242
+ if (input.startsWith("/")) {
283243
+ const suggs = await cliService.getSuggestions(input);
283244
+ setSuggestions(suggs);
283245
+ } else {
283246
+ setSuggestions([]);
283247
+ }
283248
+ };
283249
+ fetchSuggestions();
283250
+ }, [input]);
283149
283251
  use_input_default((inputChar, key) => {
283150
283252
  if (key.ctrl && inputChar === "c") {
283151
283253
  process.exit(0);
@@ -283466,13 +283568,13 @@ function App2() {
283466
283568
  setIsLoading(false);
283467
283569
  }
283468
283570
  };
283469
- return /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(Box_default, { flexDirection: "column", minHeight: stdout.rows || 24, children: [
283470
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(Box_default, { flexDirection: "column", flexGrow: 1, paddingX: 1, children: [
283471
- initializationError && /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Box_default, { marginBottom: 1, children: /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(Text, { color: "red", children: [
283571
+ return /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(Box_default, { flexDirection: "column", minHeight: stdout.rows || 24, children: [
283572
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(Box_default, { flexDirection: "column", flexGrow: 1, paddingX: 1, children: [
283573
+ initializationError && /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Box_default, { marginBottom: 1, children: /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(Text, { color: "red", children: [
283472
283574
  "\u274C ",
283473
283575
  initializationError
283474
283576
  ] }) }),
283475
- !initializationError && /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(
283577
+ !initializationError && /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(
283476
283578
  Box_default,
283477
283579
  {
283478
283580
  marginBottom: 1,
@@ -283481,61 +283583,64 @@ function App2() {
283481
283583
  borderColor: "blue",
283482
283584
  padding: 2,
283483
283585
  children: [
283484
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(AsciiLogo, {}),
283485
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Text, { color: "gray", children: "Welcome to MCP-Use CLI!" }),
283486
- currentModel.includes("No") ? /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(Box_default, { flexDirection: "column", children: [
283487
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Text, { color: "yellow", children: currentModel }),
283488
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Text, { color: "gray", children: "Choose a model to get started - the CLI will help you set up the API key." }),
283489
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Text, { color: "cyan", children: "Try: /model openai gpt-4o-mini" }),
283490
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Text, { color: "gray", children: "Or use /models to see all options, /help for commands." })
283491
- ] }) : /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(Box_default, { flexDirection: "column", children: [
283492
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Text, { color: "gray", children: "Type your message and press Enter to start chatting." }),
283493
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Text, { color: "gray", children: "Use slash commands like /help, /model, or /status for configuration." })
283586
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(AsciiLogo, {}),
283587
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Text, { color: "gray", children: "Welcome to MCP-Use CLI!" }),
283588
+ currentModel.includes("No") ? /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(Box_default, { flexDirection: "column", children: [
283589
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Text, { color: "yellow", children: currentModel }),
283590
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Text, { color: "gray", children: "Choose a model to get started - the CLI will help you set up the API key." }),
283591
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Text, { color: "cyan", children: "Try: /model openai gpt-4o-mini" }),
283592
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Text, { color: "gray", children: "Or use /models to see all options, /help for commands." })
283593
+ ] }) : /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(Box_default, { flexDirection: "column", children: [
283594
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Text, { color: "gray", children: "Type your message and press Enter to start chatting." }),
283595
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Text, { color: "gray", children: "Use slash commands like /help, /model, or /status for configuration." })
283494
283596
  ] }),
283495
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Box_default, { marginTop: 1, children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Text, { color: "gray", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(dist_default5, { name: "vice", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Text, { children: "To support us check out https://mcp-use.com \u2764\uFE0F \u2B50" }) }) }) })
283597
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Box_default, { marginTop: 1, children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Text, { color: "gray", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(dist_default5, { name: "vice", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Text, { children: "To support us check out https://mcp-use.com \u2764\uFE0F \u2B50" }) }) }) })
283496
283598
  ]
283497
283599
  }
283498
283600
  ),
283499
- !initializationError && messages2.length === 0 && isLoading && /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Box_default, { marginBottom: 1, children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Text, { color: "blue", children: "\u{1F504} Initializing MCP service..." }) }),
283500
- messages2.map((message) => /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(MessageRenderer, { message })),
283501
- isLoading && /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Box_default, { marginBottom: 1, children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Box_default, { marginRight: 1, children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Text, { color: "blue", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Spinner_default, { type: "mcpuse" }) }) }) })
283601
+ !initializationError && messages2.length === 0 && isLoading && /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Box_default, { marginBottom: 1, children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Text, { color: "blue", children: "\u{1F504} Initializing MCP service..." }) }),
283602
+ messages2.map((message) => /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(MessageRenderer, { message })),
283603
+ isLoading && /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Box_default, { marginBottom: 1, children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Box_default, { marginRight: 1, children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Text, { color: "blue", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Spinner_default, { type: "mcpuse" }) }) }) })
283502
283604
  ] }),
283503
- showInput && !initializationError && /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Box_default, { flexDirection: "column", marginTop: 1, children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
283504
- Box_default,
283505
- {
283506
- borderStyle: "round",
283507
- borderColor: isWaitingForApiKey ? "yellow" : isWaitingForServerConfig ? "blue" : "gray",
283508
- minHeight: 3,
283509
- children: /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(Box_default, { flexDirection: "row", width: "100%", children: [
283510
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Box_default, { marginRight: 1, alignSelf: "flex-start", flexShrink: 0, children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
283511
- Text,
283512
- {
283513
- color: isWaitingForApiKey ? "yellow" : isWaitingForServerConfig ? "blue" : "green",
283514
- bold: true,
283515
- children: isWaitingForApiKey ? "\u{1F511}" : isWaitingForServerConfig ? "\u{1F527}" : "\u276F"
283516
- }
283517
- ) }),
283518
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
283519
- InputPrompt,
283520
- {
283521
- value: input,
283522
- onChange: setInput,
283523
- onSubmit: handleSubmit,
283524
- onHistoryUp: handleHistoryUp,
283525
- onHistoryDown: handleHistoryDown,
283526
- placeholder: isWaitingForApiKey ? `Enter ${pendingProvider.toUpperCase()} API key...` : isWaitingForServerConfig ? "Enter server configuration..." : "Type your message...",
283527
- mask: isWaitingForApiKey ? "*" : void 0
283528
- }
283529
- )
283530
- ] })
283531
- }
283532
- ) }),
283533
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Footer, { servers: connectedServers, modelSlug: currentModel })
283605
+ showInput && !initializationError && /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(Box_default, { flexDirection: "column", marginTop: 1, children: [
283606
+ input.startsWith("/") && /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(CommandSuggestions, { suggestions, query: input }),
283607
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
283608
+ Box_default,
283609
+ {
283610
+ borderStyle: "round",
283611
+ borderColor: isWaitingForApiKey ? "yellow" : isWaitingForServerConfig ? "blue" : "gray",
283612
+ minHeight: 3,
283613
+ children: /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(Box_default, { flexDirection: "row", width: "100%", children: [
283614
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Box_default, { marginRight: 1, alignSelf: "flex-start", flexShrink: 0, children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
283615
+ Text,
283616
+ {
283617
+ color: isWaitingForApiKey ? "yellow" : isWaitingForServerConfig ? "blue" : "green",
283618
+ bold: true,
283619
+ children: isWaitingForApiKey ? "\u{1F511}" : isWaitingForServerConfig ? "\u{1F527}" : "\u276F"
283620
+ }
283621
+ ) }),
283622
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
283623
+ InputPrompt,
283624
+ {
283625
+ value: input,
283626
+ onChange: setInput,
283627
+ onSubmit: handleSubmit,
283628
+ onHistoryUp: handleHistoryUp,
283629
+ onHistoryDown: handleHistoryDown,
283630
+ placeholder: isWaitingForApiKey ? `Enter ${pendingProvider.toUpperCase()} API key...` : isWaitingForServerConfig ? "Enter server configuration..." : "Type your message...",
283631
+ mask: isWaitingForApiKey ? "*" : void 0
283632
+ }
283633
+ )
283634
+ ] })
283635
+ }
283636
+ )
283637
+ ] }),
283638
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Footer, { servers: connectedServers, modelSlug: currentModel })
283534
283639
  ] });
283535
283640
  }
283536
283641
 
283537
283642
  // source/cli.tsx
283538
- var import_jsx_runtime9 = __toESM(require_jsx_runtime(), 1);
283643
+ var import_jsx_runtime10 = __toESM(require_jsx_runtime(), 1);
283539
283644
  meow_default(
283540
283645
  `
283541
283646
  Usage
@@ -283567,7 +283672,7 @@ meow_default(
283567
283672
  }
283568
283673
  }
283569
283674
  );
283570
- render_default(/* @__PURE__ */ (0, import_jsx_runtime9.jsx)(App2, {}));
283675
+ render_default(/* @__PURE__ */ (0, import_jsx_runtime10.jsx)(App2, {}));
283571
283676
  /*! Bundled license information:
283572
283677
 
283573
283678
  react/cjs/react.production.min.js:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mcp-use/cli",
3
- "version": "1.0.11",
3
+ "version": "1.0.15",
4
4
  "license": "MIT",
5
5
  "description": "CLI for interacting with Model Context Protocol servers via natural language",
6
6
  "keywords": [