@mcp-use/inspector 0.9.0-canary.1 → 0.9.0-canary.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.
@@ -0,0 +1,23 @@
1
+ function debuglog() {
2
+ return () => {
3
+ };
4
+ }
5
+ function inspect(obj) {
6
+ return JSON.stringify(obj);
7
+ }
8
+ function inherits() {
9
+ }
10
+ function format() {
11
+ }
12
+ const util = { debuglog, inspect, inherits, format };
13
+ const util$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
14
+ __proto__: null,
15
+ debuglog,
16
+ default: util,
17
+ format,
18
+ inherits,
19
+ inspect
20
+ }, Symbol.toStringTag, { value: "Module" }));
21
+ export {
22
+ util$1 as u
23
+ };
@@ -1,4 +1,5 @@
1
- import { b as getAugmentedNamespace, g as getDefaultExportFromCjs } from "./index-B6TgCktd.js";
1
+ import { bh as getAugmentedNamespace, bi as getDefaultExportFromCjs } from "./index-DlUHZ9Rv.js";
2
+ import { u as util } from "./util-D59LNlyU.js";
2
3
  import { o as os } from "./__vite-browser-external-CHS79mP1.js";
3
4
  import { r as requireBase64Js } from "./index-DX0TIfSM.js";
4
5
  import { p as path } from "./path-QsnVvLoj.js";
@@ -23,10 +24,10 @@ function _mergeNamespaces(n, m) {
23
24
  }
24
25
  var winston$2 = {};
25
26
  var browser$2 = {};
26
- var format$3;
27
+ var format$2;
27
28
  var hasRequiredFormat$1;
28
29
  function requireFormat$1() {
29
- if (hasRequiredFormat$1) return format$3;
30
+ if (hasRequiredFormat$1) return format$2;
30
31
  hasRequiredFormat$1 = 1;
31
32
  function _typeof(o) {
32
33
  "@babel/helpers - typeof";
@@ -118,7 +119,7 @@ function requireFormat$1() {
118
119
  _inherits(InvalidFormatError2, _Error);
119
120
  return _createClass(InvalidFormatError2);
120
121
  })(/* @__PURE__ */ _wrapNativeSuper(Error));
121
- format$3 = function(formatFn) {
122
+ format$2 = function(formatFn) {
122
123
  if (formatFn.length > 2) {
123
124
  throw new InvalidFormatError(formatFn);
124
125
  }
@@ -133,32 +134,12 @@ function requireFormat$1() {
133
134
  createFormatWrap.Format = Format;
134
135
  return createFormatWrap;
135
136
  };
136
- return format$3;
137
+ return format$2;
137
138
  }
138
139
  var colorize = { exports: {} };
139
140
  var safe = { exports: {} };
140
141
  var colors = { exports: {} };
141
- function debuglog() {
142
- return () => {
143
- };
144
- }
145
- function inspect(obj) {
146
- return JSON.stringify(obj);
147
- }
148
- function inherits() {
149
- }
150
- function format$2() {
151
- }
152
- const util = { debuglog, inspect, inherits, format: format$2 };
153
- const util$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
154
- __proto__: null,
155
- debuglog,
156
- default: util,
157
- format: format$2,
158
- inherits,
159
- inspect
160
- }, Symbol.toStringTag, { value: "Module" }));
161
- const require$$0$2 = /* @__PURE__ */ getAugmentedNamespace(util$1);
142
+ const require$$0$2 = /* @__PURE__ */ getAugmentedNamespace(util);
162
143
  var styles = { exports: {} };
163
144
  var hasRequiredStyles;
164
145
  function requireStyles() {
@@ -2280,7 +2261,7 @@ var hasRequiredPrettyPrint;
2280
2261
  function requirePrettyPrint() {
2281
2262
  if (hasRequiredPrettyPrint) return prettyPrint;
2282
2263
  hasRequiredPrettyPrint = 1;
2283
- var inspect2 = require$$0$2.inspect;
2264
+ var inspect = require$$0$2.inspect;
2284
2265
  var format2 = requireFormat$1();
2285
2266
  var _require = requireTripleBeam(), LEVEL = _require.LEVEL, MESSAGE = _require.MESSAGE, SPLAT = _require.SPLAT;
2286
2267
  prettyPrint = format2(function(info) {
@@ -2289,7 +2270,7 @@ function requirePrettyPrint() {
2289
2270
  delete stripped[LEVEL];
2290
2271
  delete stripped[MESSAGE];
2291
2272
  delete stripped[SPLAT];
2292
- info[MESSAGE] = inspect2(stripped, false, opts.depth || null, opts.colorize);
2273
+ info[MESSAGE] = inspect(stripped, false, opts.depth || null, opts.colorize);
2293
2274
  return info;
2294
2275
  });
2295
2276
  return prettyPrint;
@@ -3999,7 +3980,7 @@ function requireBuffer() {
3999
3980
  if (this === b) return true;
4000
3981
  return Buffer2.compare(this, b) === 0;
4001
3982
  };
4002
- Buffer2.prototype.inspect = function inspect2() {
3983
+ Buffer2.prototype.inspect = function inspect() {
4003
3984
  let str = "";
4004
3985
  const max = exports$1.INSPECT_MAX_BYTES;
4005
3986
  str = this.toString("hex", 0, max).replace(/(.{2})/g, "$1 ").trim();
@@ -5379,7 +5360,7 @@ function requireInherits_browser() {
5379
5360
  if (hasRequiredInherits_browser) return inherits_browser.exports;
5380
5361
  hasRequiredInherits_browser = 1;
5381
5362
  if (typeof Object.create === "function") {
5382
- inherits_browser.exports = function inherits2(ctor, superCtor) {
5363
+ inherits_browser.exports = function inherits(ctor, superCtor) {
5383
5364
  if (superCtor) {
5384
5365
  ctor.super_ = superCtor;
5385
5366
  ctor.prototype = Object.create(superCtor.prototype, {
@@ -5393,7 +5374,7 @@ function requireInherits_browser() {
5393
5374
  }
5394
5375
  };
5395
5376
  } else {
5396
- inherits_browser.exports = function inherits2(ctor, superCtor) {
5377
+ inherits_browser.exports = function inherits(ctor, superCtor) {
5397
5378
  if (superCtor) {
5398
5379
  ctor.super_ = superCtor;
5399
5380
  var TempCtor = function() {
@@ -5475,8 +5456,8 @@ function requireBuffer_list() {
5475
5456
  return String(input);
5476
5457
  }
5477
5458
  var _require = requireBuffer(), Buffer2 = _require.Buffer;
5478
- var _require2 = require$$0$2, inspect2 = _require2.inspect;
5479
- var custom = inspect2 && inspect2.custom || "inspect";
5459
+ var _require2 = require$$0$2, inspect = _require2.inspect;
5460
+ var custom = inspect && inspect.custom || "inspect";
5480
5461
  function copyBuffer(src, target, offset) {
5481
5462
  Buffer2.prototype.copy.call(src, target, offset);
5482
5463
  }
@@ -5633,7 +5614,7 @@ function requireBuffer_list() {
5633
5614
  }, {
5634
5615
  key: custom,
5635
5616
  value: function value(_, options) {
5636
- return inspect2(this, _objectSpread(_objectSpread({}, options), {}, {
5617
+ return inspect(this, _objectSpread(_objectSpread({}, options), {}, {
5637
5618
  // Only inspect one level.
5638
5619
  depth: 0,
5639
5620
  // It should not recurse.
@@ -27,9 +27,9 @@
27
27
  rel="stylesheet"
28
28
  />
29
29
  <title>Inspector | mcp-use</title>
30
- <script type="module" crossorigin src="/inspector/assets/index-B6TgCktd.js"></script>
30
+ <script type="module" crossorigin src="/inspector/assets/index-DlUHZ9Rv.js"></script>
31
31
  <link rel="stylesheet" crossorigin href="/inspector/assets/index-Br7cLVs6.css">
32
- <script>window.__INSPECTOR_VERSION__ = "0.9.0-canary.1";</script>
32
+ <script>window.__INSPECTOR_VERSION__ = "0.9.0-canary.3";</script>
33
33
  </head>
34
34
  <body>
35
35
  <script>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mcp-use/inspector",
3
3
  "type": "module",
4
- "version": "0.9.0-canary.1",
4
+ "version": "0.9.0-canary.3",
5
5
  "description": "MCP Inspector - A tool for inspecting and debugging MCP servers",
6
6
  "author": "",
7
7
  "license": "MIT",
@@ -82,7 +82,7 @@
82
82
  "sonner": "^2.0.7",
83
83
  "tailwind-merge": "^3.3.1",
84
84
  "vite-express": "^0.21.1",
85
- "mcp-use": "1.7.0-canary.1"
85
+ "mcp-use": "1.7.0-canary.3"
86
86
  },
87
87
  "publishConfig": {
88
88
  "access": "public"