@mcpjam/inspector 0.1.4 → 0.1.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.
@@ -995,6 +995,9 @@ video {
995
995
  .collapse {
996
996
  visibility: collapse;
997
997
  }
998
+ .static {
999
+ position: static;
1000
+ }
998
1001
  .fixed {
999
1002
  position: fixed;
1000
1003
  }
@@ -1056,6 +1059,10 @@ video {
1056
1059
  margin-left: -0.25rem;
1057
1060
  margin-right: -0.25rem;
1058
1061
  }
1062
+ .mx-4 {
1063
+ margin-left: 1rem;
1064
+ margin-right: 1rem;
1065
+ }
1059
1066
  .mx-auto {
1060
1067
  margin-left: auto;
1061
1068
  margin-right: auto;
@@ -1230,6 +1237,9 @@ video {
1230
1237
  .max-h-screen {
1231
1238
  max-height: 100vh;
1232
1239
  }
1240
+ .min-h-0 {
1241
+ min-height: 0px;
1242
+ }
1233
1243
  .min-h-\[40px\] {
1234
1244
  min-height: 40px;
1235
1245
  }
@@ -1302,12 +1312,19 @@ video {
1302
1312
  .w-full {
1303
1313
  width: 100%;
1304
1314
  }
1315
+ .min-w-0 {
1316
+ min-width: 0px;
1317
+ }
1305
1318
  .min-w-\[8rem\] {
1306
1319
  min-width: 8rem;
1307
1320
  }
1308
1321
  .min-w-\[var\(--radix-select-trigger-width\)\] {
1309
1322
  min-width: var(--radix-select-trigger-width);
1310
1323
  }
1324
+ .min-w-fit {
1325
+ min-width: -moz-fit-content;
1326
+ min-width: fit-content;
1327
+ }
1311
1328
  .max-w-\[80\%\] {
1312
1329
  max-width: 80%;
1313
1330
  }
@@ -1422,6 +1439,9 @@ video {
1422
1439
  .flex-wrap {
1423
1440
  flex-wrap: wrap;
1424
1441
  }
1442
+ .items-start {
1443
+ align-items: flex-start;
1444
+ }
1425
1445
  .items-end {
1426
1446
  align-items: flex-end;
1427
1447
  }
@@ -1690,6 +1710,9 @@ video {
1690
1710
  .bg-background\/80 {
1691
1711
  background-color: hsl(var(--background) / 0.8);
1692
1712
  }
1713
+ .bg-black\/50 {
1714
+ background-color: rgb(0 0 0 / 0.5);
1715
+ }
1693
1716
  .bg-black\/80 {
1694
1717
  background-color: rgb(0 0 0 / 0.8);
1695
1718
  }
@@ -1740,6 +1763,9 @@ video {
1740
1763
  .bg-muted\/20 {
1741
1764
  background-color: hsl(var(--muted) / 0.2);
1742
1765
  }
1766
+ .bg-muted\/30 {
1767
+ background-color: hsl(var(--muted) / 0.3);
1768
+ }
1743
1769
  .bg-muted\/50 {
1744
1770
  background-color: hsl(var(--muted) / 0.5);
1745
1771
  }
@@ -1831,6 +1857,11 @@ video {
1831
1857
  --tw-gradient-to: rgb(168 85 247 / 0) var(--tw-gradient-to-position);
1832
1858
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
1833
1859
  }
1860
+ .from-secondary\/20 {
1861
+ --tw-gradient-from: hsl(var(--secondary) / 0.2) var(--tw-gradient-from-position);
1862
+ --tw-gradient-to: hsl(var(--secondary) / 0) var(--tw-gradient-to-position);
1863
+ --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
1864
+ }
1834
1865
  .from-secondary\/50 {
1835
1866
  --tw-gradient-from: hsl(var(--secondary) / 0.5) var(--tw-gradient-from-position);
1836
1867
  --tw-gradient-to: hsl(var(--secondary) / 0) var(--tw-gradient-to-position);
@@ -1900,6 +1931,9 @@ video {
1900
1931
  .to-primary\/90 {
1901
1932
  --tw-gradient-to: hsl(var(--primary) / 0.9) var(--tw-gradient-to-position);
1902
1933
  }
1934
+ .to-secondary\/10 {
1935
+ --tw-gradient-to: hsl(var(--secondary) / 0.1) var(--tw-gradient-to-position);
1936
+ }
1903
1937
  .to-secondary\/50 {
1904
1938
  --tw-gradient-to: hsl(var(--secondary) / 0.5) var(--tw-gradient-to-position);
1905
1939
  }
@@ -1912,6 +1946,9 @@ video {
1912
1946
  .to-slate-100\/50 {
1913
1947
  --tw-gradient-to: rgb(241 245 249 / 0.5) var(--tw-gradient-to-position);
1914
1948
  }
1949
+ .fill-current {
1950
+ fill: currentColor;
1951
+ }
1915
1952
  .object-contain {
1916
1953
  -o-object-fit: contain;
1917
1954
  object-fit: contain;
@@ -2011,6 +2048,10 @@ video {
2011
2048
  padding-top: 1.5rem;
2012
2049
  padding-bottom: 1.5rem;
2013
2050
  }
2051
+ .py-8 {
2052
+ padding-top: 2rem;
2053
+ padding-bottom: 2rem;
2054
+ }
2014
2055
  .pb-1\.5 {
2015
2056
  padding-bottom: 0.375rem;
2016
2057
  }
@@ -2029,9 +2070,6 @@ video {
2029
2070
  .pt-2 {
2030
2071
  padding-top: 0.5rem;
2031
2072
  }
2032
- .text-left {
2033
- text-align: left;
2034
- }
2035
2073
  .text-center {
2036
2074
  text-align: center;
2037
2075
  }
@@ -2173,9 +2211,15 @@ video {
2173
2211
  .text-muted-foreground\/40 {
2174
2212
  color: hsl(var(--muted-foreground) / 0.4);
2175
2213
  }
2214
+ .text-muted-foreground\/50 {
2215
+ color: hsl(var(--muted-foreground) / 0.5);
2216
+ }
2176
2217
  .text-muted-foreground\/60 {
2177
2218
  color: hsl(var(--muted-foreground) / 0.6);
2178
2219
  }
2220
+ .text-muted-foreground\/70 {
2221
+ color: hsl(var(--muted-foreground) / 0.7);
2222
+ }
2179
2223
  .text-muted-foreground\/80 {
2180
2224
  color: hsl(var(--muted-foreground) / 0.8);
2181
2225
  }
@@ -2234,6 +2278,10 @@ video {
2234
2278
  --tw-text-opacity: 1;
2235
2279
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
2236
2280
  }
2281
+ .text-yellow-500 {
2282
+ --tw-text-opacity: 1;
2283
+ color: rgb(234 179 8 / var(--tw-text-opacity, 1));
2284
+ }
2237
2285
  .underline-offset-4 {
2238
2286
  text-underline-offset: 4px;
2239
2287
  }
@@ -2280,6 +2328,11 @@ video {
2280
2328
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
2281
2329
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
2282
2330
  }
2331
+ .shadow-xl {
2332
+ --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
2333
+ --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
2334
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
2335
+ }
2283
2336
  .shadow-black\/10 {
2284
2337
  --tw-shadow-color: rgb(0 0 0 / 0.1);
2285
2338
  --tw-shadow: var(--tw-shadow-colored);
@@ -2507,6 +2560,14 @@ h1 {
2507
2560
  background-color: hsl(var(--accent) / 0.5);
2508
2561
  }
2509
2562
 
2563
+ .hover\:bg-blue-500\/20:hover {
2564
+ background-color: rgb(59 130 246 / 0.2);
2565
+ }
2566
+
2567
+ .hover\:bg-destructive\/20:hover {
2568
+ background-color: hsl(var(--destructive) / 0.2);
2569
+ }
2570
+
2510
2571
  .hover\:bg-destructive\/90:hover {
2511
2572
  background-color: hsl(var(--destructive) / 0.9);
2512
2573
  }
@@ -2523,14 +2584,26 @@ h1 {
2523
2584
  background-color: rgb(220 252 231 / 0.5);
2524
2585
  }
2525
2586
 
2587
+ .hover\:bg-muted:hover {
2588
+ background-color: hsl(var(--muted));
2589
+ }
2590
+
2526
2591
  .hover\:bg-muted\/30:hover {
2527
2592
  background-color: hsl(var(--muted) / 0.3);
2528
2593
  }
2529
2594
 
2595
+ .hover\:bg-muted\/50:hover {
2596
+ background-color: hsl(var(--muted) / 0.5);
2597
+ }
2598
+
2530
2599
  .hover\:bg-muted\/80:hover {
2531
2600
  background-color: hsl(var(--muted) / 0.8);
2532
2601
  }
2533
2602
 
2603
+ .hover\:bg-primary\/20:hover {
2604
+ background-color: hsl(var(--primary) / 0.2);
2605
+ }
2606
+
2534
2607
  .hover\:bg-primary\/90:hover {
2535
2608
  background-color: hsl(var(--primary) / 0.9);
2536
2609
  }
@@ -2567,6 +2640,12 @@ h1 {
2567
2640
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
2568
2641
  }
2569
2642
 
2643
+ .hover\:from-secondary\/30:hover {
2644
+ --tw-gradient-from: hsl(var(--secondary) / 0.3) var(--tw-gradient-from-position);
2645
+ --tw-gradient-to: hsl(var(--secondary) / 0) var(--tw-gradient-to-position);
2646
+ --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
2647
+ }
2648
+
2570
2649
  .hover\:via-muted\/40:hover {
2571
2650
  --tw-gradient-to: hsl(var(--muted) / 0) var(--tw-gradient-to-position);
2572
2651
  --tw-gradient-stops: var(--tw-gradient-from), hsl(var(--muted) / 0.4) var(--tw-gradient-via-position), var(--tw-gradient-to);
@@ -2580,19 +2659,36 @@ h1 {
2580
2659
  --tw-gradient-to: hsl(var(--primary) / 0.8) var(--tw-gradient-to-position);
2581
2660
  }
2582
2661
 
2662
+ .hover\:to-secondary\/20:hover {
2663
+ --tw-gradient-to: hsl(var(--secondary) / 0.2) var(--tw-gradient-to-position);
2664
+ }
2665
+
2583
2666
  .hover\:text-accent-foreground:hover {
2584
2667
  color: hsl(var(--accent-foreground));
2585
2668
  }
2586
2669
 
2670
+ .hover\:text-blue-500:hover {
2671
+ --tw-text-opacity: 1;
2672
+ color: rgb(59 130 246 / var(--tw-text-opacity, 1));
2673
+ }
2674
+
2587
2675
  .hover\:text-blue-700:hover {
2588
2676
  --tw-text-opacity: 1;
2589
2677
  color: rgb(29 78 216 / var(--tw-text-opacity, 1));
2590
2678
  }
2591
2679
 
2680
+ .hover\:text-destructive:hover {
2681
+ color: hsl(var(--destructive));
2682
+ }
2683
+
2592
2684
  .hover\:text-foreground:hover {
2593
2685
  color: hsl(var(--foreground));
2594
2686
  }
2595
2687
 
2688
+ .hover\:text-primary:hover {
2689
+ color: hsl(var(--primary));
2690
+ }
2691
+
2596
2692
  .hover\:text-slate-900:hover {
2597
2693
  --tw-text-opacity: 1;
2598
2694
  color: rgb(15 23 42 / var(--tw-text-opacity, 1));
@@ -5,8 +5,8 @@
5
5
  <link rel="icon" type="image/svg+xml" href="/mcp_jam.svg" />
6
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
7
  <title>MCPJam Inspector</title>
8
- <script type="module" crossorigin src="/assets/index-Be9LHGhj.js"></script>
9
- <link rel="stylesheet" crossorigin href="/assets/index-DfXL7p_B.css">
8
+ <script type="module" crossorigin src="/assets/index-CV_1RAbM.js"></script>
9
+ <link rel="stylesheet" crossorigin href="/assets/index-CmBOF7JI.css">
10
10
  </head>
11
11
  <body>
12
12
  <div id="root"></div>
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@mcpjam/inspector",
3
- "version": "0.1.4",
3
+ "version": "0.1.6",
4
4
  "description": "MCPJam inspector",
5
- "license": "MIT",
5
+ "license": "Apache-2.0",
6
6
  "author": "MCPJam (https://mcpjam.com)",
7
7
  "homepage": "https://mcpjam.com",
8
8
  "bugs": "https://github.com/mcpjam/inspector/issues",
@@ -41,9 +41,9 @@
41
41
  },
42
42
  "dependencies": {
43
43
  "@anthropic-ai/sdk": "^0.52.0",
44
- "@mcpjam/inspector-cli": "^0.1.2",
45
- "@mcpjam/inspector-client": "^0.1.2",
46
- "@mcpjam/inspector-server": "^0.1.2",
44
+ "@mcpjam/inspector-cli": "^0.1.6",
45
+ "@mcpjam/inspector-client": "^0.1.6",
46
+ "@mcpjam/inspector-server": "^0.1.6",
47
47
  "@modelcontextprotocol/sdk": "^1.12.0",
48
48
  "concurrently": "^9.0.1",
49
49
  "dotenv": "^16.5.0",