@mcp-use/inspector 0.5.3-canary.3 → 0.5.3-canary.5
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.js +218 -4
- package/dist/client/assets/{chunk-VL2OQCWN-BStw9JP6.js → chunk-VL2OQCWN-CPjLZdCN.js} +1 -1
- package/dist/client/assets/{embeddings-6Wt7B08F.js → embeddings-DZyiJZhR.js} +1 -1
- package/dist/client/assets/index-B5L7QL4X.css +1 -0
- package/dist/client/assets/{index-B5-2VZmB.js → index-BH31Ht-B.js} +1 -1
- package/dist/client/assets/{index-BpYklVpg.js → index-BjPwEjLC.js} +1 -1
- package/dist/client/assets/{index-KW84Zzco.js → index-C5Gu6oge.js} +1 -1
- package/dist/client/assets/index-C8px8iT7.js +1559 -0
- package/dist/client/assets/{index-DFOC99-l.js → index-CIUfLMnd.js} +1 -1
- package/dist/client/assets/{index-B1kPzdln.js → index-DXiA7HPi.js} +1 -1
- package/dist/client/assets/{index-DuPPtmEr.js → index-DwI7CLt3.js} +1 -1
- package/dist/client/assets/{langfuse-C4HKZ3NL-CCHG2SBC.js → langfuse-C4HKZ3NL-DQkY3G-y.js} +3 -3
- package/dist/client/assets/{winston-CBZHM4Xn.js → winston-C-t08lfg.js} +1 -1
- package/dist/client/index.html +3 -3
- package/dist/server/{chunk-5OMSQNKB.js → chunk-555LGZ3I.js} +115 -1
- package/dist/server/{chunk-VOQ3DLXM.js → chunk-DGUMOD7P.js} +104 -4
- package/dist/server/{chunk-UZO6G7KA.js → chunk-PYGYQT2G.js} +1 -1
- package/dist/server/cli.js +2 -2
- package/dist/server/index.js +3 -3
- package/dist/server/middleware.js +3 -3
- package/dist/server/server.js +2 -2
- package/dist/server/shared-routes.d.ts.map +1 -1
- package/dist/server/shared-routes.js +2 -2
- package/dist/server/shared-utils-browser.d.ts +2 -0
- package/dist/server/shared-utils-browser.d.ts.map +1 -1
- package/dist/server/shared-utils-browser.js +1 -1
- package/package.json +2 -2
- package/dist/client/assets/index-A5qlcpBT.js +0 -1559
- package/dist/client/assets/index-DmbL6IXF.css +0 -1
|
@@ -232,7 +232,9 @@ function storeWidgetData(data) {
|
|
|
232
232
|
toolOutput,
|
|
233
233
|
resourceData,
|
|
234
234
|
toolId,
|
|
235
|
-
widgetCSP
|
|
235
|
+
widgetCSP,
|
|
236
|
+
devWidgetUrl,
|
|
237
|
+
devServerBaseUrl
|
|
236
238
|
} = data;
|
|
237
239
|
console.log("[Widget Store] Received request for toolId:", toolId);
|
|
238
240
|
console.log("[Widget Store] Fields:", {
|
|
@@ -241,7 +243,9 @@ function storeWidgetData(data) {
|
|
|
241
243
|
hasResourceData: !!resourceData,
|
|
242
244
|
hasToolInput: !!toolInput,
|
|
243
245
|
hasToolOutput: !!toolOutput,
|
|
244
|
-
hasWidgetCSP: !!widgetCSP
|
|
246
|
+
hasWidgetCSP: !!widgetCSP,
|
|
247
|
+
devWidgetUrl,
|
|
248
|
+
devServerBaseUrl
|
|
245
249
|
});
|
|
246
250
|
if (!serverId || !uri || !toolId || !resourceData) {
|
|
247
251
|
const missingFields = [];
|
|
@@ -263,7 +267,9 @@ function storeWidgetData(data) {
|
|
|
263
267
|
resourceData,
|
|
264
268
|
toolId,
|
|
265
269
|
timestamp: Date.now(),
|
|
266
|
-
widgetCSP
|
|
270
|
+
widgetCSP,
|
|
271
|
+
devWidgetUrl,
|
|
272
|
+
devServerBaseUrl
|
|
267
273
|
});
|
|
268
274
|
console.log("[Widget Store] Data stored successfully for toolId:", toolId);
|
|
269
275
|
return { success: true };
|
|
@@ -470,6 +476,101 @@ function generateWidgetContentHtml(widgetData) {
|
|
|
470
476
|
} catch (err) {}
|
|
471
477
|
}, 0);
|
|
472
478
|
|
|
479
|
+
// Listen for globals changes from parent (for displayMode, theme, etc.)
|
|
480
|
+
window.addEventListener('message', (event) => {
|
|
481
|
+
// Handle new general globalsChanged message
|
|
482
|
+
if (event.data?.type === 'openai:globalsChanged') {
|
|
483
|
+
const updates = event.data.updates || {};
|
|
484
|
+
let hasChanges = false;
|
|
485
|
+
|
|
486
|
+
// Update displayMode
|
|
487
|
+
if (updates.displayMode && ['inline', 'pip', 'fullscreen'].includes(updates.displayMode)) {
|
|
488
|
+
openaiAPI.displayMode = updates.displayMode;
|
|
489
|
+
hasChanges = true;
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
// Update theme
|
|
493
|
+
if (updates.theme && ['light', 'dark'].includes(updates.theme)) {
|
|
494
|
+
openaiAPI.theme = updates.theme;
|
|
495
|
+
hasChanges = true;
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
// Update maxHeight
|
|
499
|
+
if (updates.maxHeight !== undefined && typeof updates.maxHeight === 'number') {
|
|
500
|
+
openaiAPI.maxHeight = updates.maxHeight;
|
|
501
|
+
hasChanges = true;
|
|
502
|
+
}
|
|
503
|
+
|
|
504
|
+
// Update locale
|
|
505
|
+
if (updates.locale && typeof updates.locale === 'string') {
|
|
506
|
+
openaiAPI.locale = updates.locale;
|
|
507
|
+
hasChanges = true;
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
// Update safeArea
|
|
511
|
+
if (updates.safeArea && typeof updates.safeArea === 'object') {
|
|
512
|
+
openaiAPI.safeArea = updates.safeArea;
|
|
513
|
+
hasChanges = true;
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
// Update userAgent
|
|
517
|
+
if (updates.userAgent !== undefined) {
|
|
518
|
+
openaiAPI.userAgent = updates.userAgent;
|
|
519
|
+
hasChanges = true;
|
|
520
|
+
}
|
|
521
|
+
|
|
522
|
+
// Dispatch set_globals event to notify React components if any changes occurred
|
|
523
|
+
if (hasChanges) {
|
|
524
|
+
try {
|
|
525
|
+
const globalsEvent = new CustomEvent('openai:set_globals', {
|
|
526
|
+
detail: {
|
|
527
|
+
globals: {
|
|
528
|
+
toolInput: openaiAPI.toolInput,
|
|
529
|
+
toolOutput: openaiAPI.toolOutput,
|
|
530
|
+
toolResponseMetadata: openaiAPI.toolResponseMetadata || null,
|
|
531
|
+
widgetState: openaiAPI.widgetState,
|
|
532
|
+
displayMode: openaiAPI.displayMode,
|
|
533
|
+
maxHeight: openaiAPI.maxHeight,
|
|
534
|
+
theme: openaiAPI.theme,
|
|
535
|
+
locale: openaiAPI.locale,
|
|
536
|
+
safeArea: openaiAPI.safeArea,
|
|
537
|
+
userAgent: openaiAPI.userAgent
|
|
538
|
+
}
|
|
539
|
+
}
|
|
540
|
+
});
|
|
541
|
+
window.dispatchEvent(globalsEvent);
|
|
542
|
+
} catch (err) {}
|
|
543
|
+
}
|
|
544
|
+
}
|
|
545
|
+
// Handle legacy displayModeChanged message for backward compatibility
|
|
546
|
+
else if (event.data?.type === 'openai:displayModeChanged') {
|
|
547
|
+
const newMode = event.data.mode;
|
|
548
|
+
if (newMode && ['inline', 'pip', 'fullscreen'].includes(newMode)) {
|
|
549
|
+
openaiAPI.displayMode = newMode;
|
|
550
|
+
// Dispatch set_globals event to notify React components
|
|
551
|
+
try {
|
|
552
|
+
const globalsEvent = new CustomEvent('openai:set_globals', {
|
|
553
|
+
detail: {
|
|
554
|
+
globals: {
|
|
555
|
+
toolInput: openaiAPI.toolInput,
|
|
556
|
+
toolOutput: openaiAPI.toolOutput,
|
|
557
|
+
toolResponseMetadata: openaiAPI.toolResponseMetadata || null,
|
|
558
|
+
widgetState: openaiAPI.widgetState,
|
|
559
|
+
displayMode: newMode,
|
|
560
|
+
maxHeight: openaiAPI.maxHeight,
|
|
561
|
+
theme: openaiAPI.theme,
|
|
562
|
+
locale: openaiAPI.locale,
|
|
563
|
+
safeArea: openaiAPI.safeArea,
|
|
564
|
+
userAgent: openaiAPI.userAgent
|
|
565
|
+
}
|
|
566
|
+
}
|
|
567
|
+
});
|
|
568
|
+
window.dispatchEvent(globalsEvent);
|
|
569
|
+
} catch (err) {}
|
|
570
|
+
}
|
|
571
|
+
}
|
|
572
|
+
});
|
|
573
|
+
|
|
473
574
|
setTimeout(() => {
|
|
474
575
|
try {
|
|
475
576
|
const stored = localStorage.getItem(${safeWidgetStateKey});
|
|
@@ -481,7 +582,6 @@ function generateWidgetContentHtml(widgetData) {
|
|
|
481
582
|
})();
|
|
482
583
|
</script>
|
|
483
584
|
`;
|
|
484
|
-
console.log("htmlContent", htmlContent);
|
|
485
585
|
let modifiedHtml;
|
|
486
586
|
if (htmlContent.includes("<html") && htmlContent.includes("<head")) {
|
|
487
587
|
modifiedHtml = htmlContent.replace("<head>", `<head>${apiScript}`);
|
package/dist/server/cli.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import {
|
|
3
3
|
registerInspectorRoutes
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-555LGZ3I.js";
|
|
5
5
|
import {
|
|
6
6
|
findAvailablePort,
|
|
7
7
|
isValidUrl
|
|
@@ -9,7 +9,7 @@ import {
|
|
|
9
9
|
import {
|
|
10
10
|
registerStaticRoutes
|
|
11
11
|
} from "./chunk-WYBXXYSP.js";
|
|
12
|
-
import "./chunk-
|
|
12
|
+
import "./chunk-DGUMOD7P.js";
|
|
13
13
|
import "./chunk-37X7HLUV.js";
|
|
14
14
|
|
|
15
15
|
// src/server/cli.ts
|
package/dist/server/index.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import {
|
|
2
2
|
mountInspector
|
|
3
|
-
} from "./chunk-
|
|
4
|
-
import "./chunk-
|
|
3
|
+
} from "./chunk-PYGYQT2G.js";
|
|
4
|
+
import "./chunk-555LGZ3I.js";
|
|
5
5
|
import "./chunk-JCLAFMDT.js";
|
|
6
6
|
import "./chunk-WYBXXYSP.js";
|
|
7
7
|
import {
|
|
8
8
|
handleChatRequest,
|
|
9
9
|
handleChatRequestStream
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-DGUMOD7P.js";
|
|
11
11
|
import "./chunk-37X7HLUV.js";
|
|
12
12
|
export {
|
|
13
13
|
handleChatRequest,
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import {
|
|
2
2
|
mountInspector
|
|
3
|
-
} from "./chunk-
|
|
4
|
-
import "./chunk-
|
|
3
|
+
} from "./chunk-PYGYQT2G.js";
|
|
4
|
+
import "./chunk-555LGZ3I.js";
|
|
5
5
|
import "./chunk-JCLAFMDT.js";
|
|
6
6
|
import "./chunk-WYBXXYSP.js";
|
|
7
|
-
import "./chunk-
|
|
7
|
+
import "./chunk-DGUMOD7P.js";
|
|
8
8
|
import "./chunk-37X7HLUV.js";
|
|
9
9
|
export {
|
|
10
10
|
mountInspector
|
package/dist/server/server.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import {
|
|
2
2
|
registerInspectorRoutes
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-555LGZ3I.js";
|
|
4
4
|
import {
|
|
5
5
|
isPortAvailable
|
|
6
6
|
} from "./chunk-JCLAFMDT.js";
|
|
7
7
|
import {
|
|
8
8
|
registerStaticRoutesWithDevProxy
|
|
9
9
|
} from "./chunk-WYBXXYSP.js";
|
|
10
|
-
import "./chunk-
|
|
10
|
+
import "./chunk-DGUMOD7P.js";
|
|
11
11
|
import "./chunk-37X7HLUV.js";
|
|
12
12
|
|
|
13
13
|
// src/server/server.ts
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"shared-routes.d.ts","sourceRoot":"","sources":["../../src/server/shared-routes.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"shared-routes.d.ts","sourceRoot":"","sources":["../../src/server/shared-routes.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,MAAM,CAAC;AAgBjC;;GAEG;AACH,wBAAgB,uBAAuB,CACrC,GAAG,EAAE,IAAI,EACT,MAAM,CAAC,EAAE;IAAE,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;CAAE,QAwd5C"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"shared-utils-browser.d.ts","sourceRoot":"","sources":["../../src/server/shared-utils-browser.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,UAAU,SAAS;IACjB,QAAQ,EAAE,QAAQ,GAAG,WAAW,GAAG,QAAQ,CAAC;IAC5C,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,UAAU,WAAW;IACnB,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;CACxB;AAED,UAAU,UAAU;IAClB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,WAAW,CAAC;IAC1B,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;CACxB;AAED,UAAU,WAAW;IACnB,IAAI,EAAE,QAAQ,GAAG,MAAM,GAAG,WAAW,CAAC;IACtC,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,UAAU,QAAQ;IAChB,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IACnC,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB;AA2BD;;GAEG;AACH,wBAAuB,uBAAuB,CAAC,WAAW,EAAE;IAC1D,YAAY,EAAE,MAAM,CAAC;IACrB,SAAS,EAAE,SAAS,CAAC;IACrB,UAAU,CAAC,EAAE,UAAU,CAAC;IACxB,QAAQ,EAAE,WAAW,EAAE,CAAC;CACzB,GAAG,cAAc,CAAC,MAAM,EAAE,IAAI,EAAE,IAAI,CAAC,CA2JrC;AAED;;GAEG;AACH,wBAAsB,iBAAiB,CAAC,WAAW,EAAE;IACnD,YAAY,EAAE,MAAM,CAAC;IACrB,SAAS,EAAE,SAAS,CAAC;IACrB,UAAU,CAAC,EAAE,UAAU,CAAC;IACxB,QAAQ,EAAE,WAAW,EAAE,CAAC;CACzB,GAAG,OAAO,CAAC;IAAE,OAAO,EAAE,MAAM,CAAC;IAAC,SAAS,EAAE,QAAQ,EAAE,CAAA;CAAE,CAAC,CA0ItD;AAED;;GAEG;AACH,MAAM,WAAW,UAAU;IACzB,QAAQ,EAAE,MAAM,CAAC;IACjB,GAAG,EAAE,MAAM,CAAC;IACZ,SAAS,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IAC/B,UAAU,EAAE,GAAG,CAAC;IAChB,YAAY,EAAE,GAAG,CAAC;IAClB,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE;QACV,eAAe,CAAC,EAAE,MAAM,EAAE,CAAC;QAC3B,gBAAgB,CAAC,EAAE,MAAM,EAAE,CAAC;KAC7B,CAAC;
|
|
1
|
+
{"version":3,"file":"shared-utils-browser.d.ts","sourceRoot":"","sources":["../../src/server/shared-utils-browser.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mcp-use/inspector",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.5.3-canary.
|
|
4
|
+
"version": "0.5.3-canary.5",
|
|
5
5
|
"description": "MCP Inspector - A tool for inspecting and debugging MCP servers",
|
|
6
6
|
"author": "",
|
|
7
7
|
"license": "MIT",
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"sonner": "^2.0.7",
|
|
74
74
|
"tailwind-merge": "^3.3.1",
|
|
75
75
|
"vite-express": "^0.21.1",
|
|
76
|
-
"mcp-use": "1.3.3-canary.
|
|
76
|
+
"mcp-use": "1.3.3-canary.5"
|
|
77
77
|
},
|
|
78
78
|
"publishConfig": {
|
|
79
79
|
"access": "public"
|