@mcp-use/inspector 0.2.2 → 0.3.2

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.
@@ -8,7 +8,7 @@
8
8
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
9
9
  <link href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap" rel="stylesheet">
10
10
  <title>MCP Inspector</title>
11
- <script type="module" crossorigin src="/inspector/assets/index-DZm4vi0J.js"></script>
11
+ <script type="module" crossorigin src="/inspector/assets/index-sdbH0tuu.js"></script>
12
12
  <link rel="stylesheet" crossorigin href="/inspector/assets/index-BOon65c9.css">
13
13
  </head>
14
14
  <body>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mcp-use/inspector",
3
3
  "type": "module",
4
- "version": "0.2.2",
4
+ "version": "0.3.2",
5
5
  "description": "MCP Inspector - A tool for inspecting and debugging MCP servers",
6
6
  "author": "",
7
7
  "license": "MIT",
@@ -25,6 +25,27 @@
25
25
  "files": [
26
26
  "dist"
27
27
  ],
28
+ "scripts": {
29
+ "dev": "concurrently \"npm run dev:client\" \"npm run dev:server\"",
30
+ "dev:client": "vite --port 3000",
31
+ "dev:server": "VITE_DEV=true tsx watch src/server/server.ts",
32
+ "dev:standalone": "tsx watch src/server/server.ts",
33
+ "build": "npm run build:client && npm run build:server && npm run build:cli",
34
+ "build:client": "vite build",
35
+ "build:server": "tsup src/server/index.ts --format esm && tsc -p tsconfig.server.json --emitDeclarationOnly --declaration",
36
+ "build:cli": "tsup src/cli/inspect.ts --format cjs --out-dir dist/cli",
37
+ "start": "node dist/server/server.js",
38
+ "preview": "vite preview",
39
+ "type-check": "tsc --noEmit",
40
+ "lint": "eslint .",
41
+ "lint:fix": "eslint . --fix",
42
+ "install:yarn": "yarn install",
43
+ "install:pnpm": "pnpm install",
44
+ "install:npm": "npm install",
45
+ "lint:yarn": "yarn eslint . --fix",
46
+ "lint:npm": "npm run lint:fix",
47
+ "lint:pnpm": "pnpm lint:fix"
48
+ },
28
49
  "peerDependencies": {
29
50
  "express": "^4.18.0"
30
51
  },
@@ -48,6 +69,7 @@
48
69
  "framer-motion": "^12.23.22",
49
70
  "hono": "^4.0.0",
50
71
  "lucide-react": "^0.545.0",
72
+ "mcp-use": "workspace:*",
51
73
  "motion": "^12.23.22",
52
74
  "next-themes": "^0.4.6",
53
75
  "react": "^19.2.0",
@@ -57,8 +79,7 @@
57
79
  "react-syntax-highlighter": "^15.6.6",
58
80
  "sonner": "^2.0.7",
59
81
  "tailwind-merge": "^3.3.1",
60
- "vite-express": "^0.21.1",
61
- "mcp-use": "1.0.0"
82
+ "vite-express": "^0.21.1"
62
83
  },
63
84
  "publishConfig": {
64
85
  "access": "public"
@@ -81,25 +102,5 @@
81
102
  "tw-animate-css": "^1.4.0",
82
103
  "typescript": "^5.9.3",
83
104
  "vite": "^7.1.9"
84
- },
85
- "scripts": {
86
- "dev": "concurrently \"npm run dev:client\" \"npm run dev:server\"",
87
- "dev:client": "vite --port 3000",
88
- "dev:server": "VITE_DEV=true tsx watch src/server/server.ts",
89
- "dev:standalone": "tsx watch src/server/server.ts",
90
- "build": "npm run build:client && npm run build:server",
91
- "build:client": "vite build",
92
- "build:server": "tsup src/server/index.ts --format esm && tsc -p tsconfig.server.json --emitDeclarationOnly --declaration",
93
- "start": "node dist/server/server.js",
94
- "preview": "vite preview",
95
- "type-check": "tsc --noEmit",
96
- "lint": "eslint .",
97
- "lint:fix": "eslint . --fix",
98
- "install:yarn": "yarn install",
99
- "install:pnpm": "pnpm install",
100
- "install:npm": "npm install",
101
- "lint:yarn": "yarn eslint . --fix",
102
- "lint:npm": "npm run lint:fix",
103
- "lint:pnpm": "pnpm lint:fix"
104
105
  }
105
- }
106
+ }