@mcpjam/inspector 0.1.6 → 0.2.1
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/README.md +38 -6
- package/client/dist/assets/{OAuthCallback-CBw5QXWv.js → OAuthCallback-xP3tGoWq.js} +1 -1
- package/client/dist/assets/{OAuthDebugCallback-wx6FGFG4.js → OAuthDebugCallback-CV6g5aop.js} +1 -1
- package/client/dist/assets/{index-CV_1RAbM.js → index-1_BV85UY.js} +26727 -24554
- package/client/dist/assets/{index-CmBOF7JI.css → index-C9Kqkwaq.css} +354 -86
- package/client/dist/claude_logo.png +0 -0
- package/client/dist/index.html +2 -2
- package/package.json +1 -1
- package/server/build/index.js +42 -11
package/README.md
CHANGED
|
@@ -1,15 +1,23 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
|
|
3
|
+
<picture>
|
|
4
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://github.com/MCPJam/inspector/blob/main/client/public/mcp_jam_dark.png">
|
|
5
|
+
<source media="(prefers-color-scheme: light)" srcset="https://github.com/MCPJam/inspector/blob/main/client/public/mcp_jam_light.png">
|
|
6
|
+
<img width="250" alt="MCPJam logo" src="https://github.com/MCPJam/inspector/blob/main/client/public/mcp_jam_light.png">
|
|
7
|
+
</picture>
|
|
8
|
+
|
|
9
|
+
<br/>
|
|
10
|
+
|
|
3
11
|
# MCPJam Inspector
|
|
4
12
|
|
|
5
13
|
**The developer tool for testing and debugging MCP servers**
|
|
6
14
|
|
|
7
15
|
[](https://www.npmjs.com/package/@mcpjam/inspector)
|
|
16
|
+
[](https://www.npmjs.com/package/@mcpjam/inspector)
|
|
8
17
|
[](https://opensource.org/licenses/Apache-2.0)
|
|
9
18
|
[](https://nodejs.org/)
|
|
10
19
|
[](https://www.typescriptlang.org/)
|
|
11
|
-
|
|
12
|
-
_A powerful fork of the original [mcp-inspector](https://github.com/modelcontextprotocol/inspector) with enhanced features and modern UI_
|
|
20
|
+
[](https://discord.gg/yF7vWWkk)
|
|
13
21
|
|
|
14
22
|
</div>
|
|
15
23
|
|
|
@@ -20,7 +28,7 @@ _A powerful fork of the original [mcp-inspector](https://github.com/modelcontext
|
|
|
20
28
|
Get up and running in seconds with the MCPJam Inspector:
|
|
21
29
|
|
|
22
30
|
```bash
|
|
23
|
-
npx @mcpjam/inspector
|
|
31
|
+
npx @mcpjam/inspector@latest
|
|
24
32
|
```
|
|
25
33
|
|
|
26
34
|
That's it! The inspector will launch automatically in your browser at `http://localhost:6274`.
|
|
@@ -40,9 +48,10 @@ That's it! The inspector will launch automatically in your browser at `http://lo
|
|
|
40
48
|
This project is a fork of the [@modelcontextprotocol/inspector](https://github.com/modelcontextprotocol/inspector). Many of the features are the same but with some enhancements. Key features include:
|
|
41
49
|
|
|
42
50
|
- **STDIO / SSE / Streamable HTTP** - This inspector supports all three protocols. Connect to any MCP server.
|
|
43
|
-
- **Tool Execution** - Run server tools with live parameter input. Easily
|
|
51
|
+
- **Tool Execution** - Run server tools with live parameter input. Easily debug errors.
|
|
44
52
|
- **(New) LLM tool interaction** - Test your MCP server against a real LLM.
|
|
45
53
|
- **Debugging tools** - Enhanced logging experience to debug your server.
|
|
54
|
+
- **Quality of life improvements** - Save requests, multi-server connection, saved connections.
|
|
46
55
|
|
|
47
56
|
## 📋 Requirements
|
|
48
57
|
|
|
@@ -176,6 +185,31 @@ We welcome contributions! We thought the original inspector repository moved too
|
|
|
176
185
|
4. **Push** to the branch (`git push origin feature/amazing-feature`)
|
|
177
186
|
5. **Open** a Pull Request
|
|
178
187
|
|
|
188
|
+
## 🗺️ Our Roadmap
|
|
189
|
+
|
|
190
|
+
We're continuously improving the MCPJam Inspector. Here's what's coming next:
|
|
191
|
+
|
|
192
|
+
### UI/UX Improvements
|
|
193
|
+
|
|
194
|
+
- **Fix dark mode styling** - Improve run tool button appearance in dark mode
|
|
195
|
+
- **Enhanced logging UX** - Address misleading red color for INFO logs
|
|
196
|
+
|
|
197
|
+
### Core Features
|
|
198
|
+
|
|
199
|
+
- **AI parameter fill** - Smart parameter completion using AI
|
|
200
|
+
- **Collections** - Organize and group your MCP servers / tools
|
|
201
|
+
- **Multi Provider support** - Support for other LLMs like ChatGPT
|
|
202
|
+
|
|
203
|
+
### Technical Enhancements
|
|
204
|
+
|
|
205
|
+
- **Security scanning** - Built-in vulnerability scanning tools
|
|
206
|
+
- **Electron App** - Desktop application for enhanced user experience
|
|
207
|
+
|
|
208
|
+
### Ecosystem
|
|
209
|
+
|
|
210
|
+
- **Landing page improvements** - Update MCP Jam landing page
|
|
211
|
+
- **Documentation expansion** - Enhanced guides and tutorials
|
|
212
|
+
|
|
179
213
|
### Development Guidelines
|
|
180
214
|
|
|
181
215
|
- Follow the existing code style (Prettier + ESLint)
|
|
@@ -202,6 +236,4 @@ This project is licensed under the **Apache License 2.0** - see the [LICENSE](LI
|
|
|
202
236
|
|
|
203
237
|
**Made with ❤️ by the [MCPJam](https://mcpjam.com) team**
|
|
204
238
|
|
|
205
|
-
_Empowering developers to build better MCP servers_
|
|
206
|
-
|
|
207
239
|
</div>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { u as useToast, r as reactExports, j as jsxRuntimeExports, S as SESSION_KEYS, I as InspectorOAuthClientProvider, a as auth } from "./index-
|
|
1
|
+
import { u as useToast, r as reactExports, j as jsxRuntimeExports, S as SESSION_KEYS, I as InspectorOAuthClientProvider, a as auth } from "./index-1_BV85UY.js";
|
|
2
2
|
import { p as parseOAuthCallbackParams, g as generateOAuthErrorDescription } from "./oauthUtils-DTcoXpSP.js";
|
|
3
3
|
const OAuthCallback = ({ onConnect }) => {
|
|
4
4
|
const { toast } = useToast();
|
package/client/dist/assets/{OAuthDebugCallback-wx6FGFG4.js → OAuthDebugCallback-CV6g5aop.js}
RENAMED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { r as reactExports, S as SESSION_KEYS, j as jsxRuntimeExports } from "./index-
|
|
1
|
+
import { r as reactExports, S as SESSION_KEYS, j as jsxRuntimeExports } from "./index-1_BV85UY.js";
|
|
2
2
|
import { p as parseOAuthCallbackParams, g as generateOAuthErrorDescription } from "./oauthUtils-DTcoXpSP.js";
|
|
3
3
|
const OAuthDebugCallback = ({ onConnect }) => {
|
|
4
4
|
reactExports.useEffect(() => {
|