@mcpjam/inspector 1.0.12 β†’ 1.0.14

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 CHANGED
@@ -18,18 +18,7 @@ www.mcpjam.com
18
18
  <br/>
19
19
  </div>
20
20
 
21
- MCPJam inspector is an open source testing platform for MCP servers. It’s a great place to start evaluating an MCP server by inspecting the protocol handshake and getting a deterministic list of tools, resources, prompts from the server.
22
-
23
- ## Key Features
24
-
25
- | Feature | Description |
26
- | -------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- |
27
- | **Protocol handshake testing** | Test your MCP server's tools, resources, prompts, elicitation, and OAuth 2. MCPJam is compliant with the latest MCP specs. |
28
- | **All transports supported** | Connect to any MCP server. MCPJam inspector supports STDIO, SSE, and Streamable HTTP transports. |
29
- | **LLM Playground** | Integrated chat playground with OpenAI, Anthropic Claude, and Ollama model support. Test how your MCP server would behave against an LLM |
30
- | **Evals testing** | Simulate users flows to catch security vulnerabilities and performance regressions before your server hits production. |
31
- | **Multiple server connections** | Connect to multiple MCP servers. Save configurations. Upgraded UI/UX for modern dev experience. |
32
- | **MCP-UI and OpenAI Apps SDK support** | Test your MCP server's implementation of MCP-UI or OpenAI Apps SDK |
21
+ MCPJam inspector is the local-first development platform for MCP servers. Visually test your server's tools, resources, and prompts. Try your server against different models in the LLM playground. Now with support for OpenAI Apps SDK.
33
22
 
34
23
  ## πŸ“Έ Screenshots
35
24
 
@@ -56,14 +45,27 @@ MCPJam inspector is an open source testing platform for MCP servers. It’s a gr
56
45
 
57
46
  </details>
58
47
 
59
- ## πŸŽ‰ Open AI Apps SDK support now in beta!
48
+ ## πŸš€ Quick Start
60
49
 
61
- Start up the MCPJam inspector in beta:
50
+ Start up the MCPJam inspector:
62
51
 
63
52
  ```bash
64
- npx @mcpjam/inspector@beta
53
+ npx @mcpjam/inspector@latest
65
54
  ```
66
55
 
56
+ ## Key Features
57
+
58
+ | Feature | Description |
59
+ | ------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------- |
60
+ | **Protocol handshake testing** | Visually test your MCP server's tools, resources, prompts, elicitation, and OAuth 2. MCPJam is compliant with the latest MCP specs. |
61
+ | **All transports** | Connect to any MCP server. MCPJam inspector supports STDIO, SSE, and Streamable HTTP transports. |
62
+ | **LLM Playground** | Integrated chat playground with OpenAI, Anthropic Claude, Google Gemini, and Ollama model support. Test how your MCP server would behave against an LLM |
63
+ | **Test OAuth** | Test your server's OAuth and Dynamic Client Registration implementation. |
64
+ | **View JSON-RPC** | View every JSON-RPC message sent over network. Provides granular observability and debugging. |
65
+ | **MCP-UI and OpenAI Apps SDK** | Test your MCP server's implementation of MCP-UI or OpenAI Apps SDK |
66
+
67
+ ## πŸŽ‰ Now with OpenAI Apps SDK support!
68
+
67
69
  <img alt="OpenAI Apps SDK Demo" src="./client/public/apps_sdk_pizza.png">
68
70
 
69
71
  Developing with Apps SDK is pretty restricted right now as it requires ChatGPT developer mode access and an OpenAI partner to approve access. We wanted to make that more accessible for developers today by putting it in an open source project, give y’all a head start.
@@ -75,23 +77,15 @@ Test your Apps SDK app with:
75
77
 
76
78
  The feature is in beta, and still needs polishing. Please report any bugs in the issues tab. We encourage the community to contibute!
77
79
 
78
- ## πŸš€ Quick Start
80
+ # Installation Guides
79
81
 
80
- Start up the MCPJam inspector:
82
+ We recommend starting MCPJam inspector via `npx`:
81
83
 
82
84
  ```bash
83
85
  npx @mcpjam/inspector@latest
84
86
  ```
85
87
 
86
- Other commands:
87
-
88
- ```bash
89
- # Launch with custom port
90
- npx @mcpjam/inspector@latest --port 4000
91
-
92
- # Shortcut for starting MCPJam and an Ollama model
93
- npx @mcpjam/inspector@latest --ollama llama3.2
94
- ```
88
+ or download the Mac / Windows desktop app [on our site](https://www.mcpjam.com/).
95
89
 
96
90
  ## 🐳 Docker
97
91
 
@@ -107,25 +101,30 @@ docker run -d -p 3001:3001 --name mcp-inspector mcpjam/mcp-inspector:latest
107
101
 
108
102
  The application will be available at `http://localhost:3001`.
109
103
 
110
- ## Connecting to MCP servers
104
+ ## Open commands
111
105
 
112
- ### mcp.json
106
+ ```bash
107
+ # Launch with custom port
108
+ npx @mcpjam/inspector@latest --port 4000
113
109
 
114
- You can import your `mcp.json` MCP server configs from Claude Desktop and Cursor with the command:
110
+ # Shortcut for starting MCPJam and an Ollama model
111
+ npx @mcpjam/inspector@latest --ollama llama3.2
115
112
 
116
- ```
117
- npx @mcpjam/inspector@latest --config mcp.json
113
+ # Local FastMCP STDIO example
114
+ npx @mcpjam/inspector@latest uv run fastmcp run /Users/matt8p/demo/src/server.py
115
+
116
+ # Local Node example
117
+ npx @mcpjam/inspector@latest npx -y /Users/matt8p/demo-ts/dist/index.js
118
118
  ```
119
119
 
120
- ### STDIO
120
+ ## Connecting to MCP servers
121
121
 
122
- Note: Always use global file paths
122
+ ### mcp.json
123
+
124
+ You can import your `mcp.json` MCP server configs from Claude Desktop and Cursor with the command:
123
125
 
124
126
  ```
125
- # Local FastMCP STDIO example
126
- npx @mcpjam/inspector@latest uv run fastmcp run /Users/matt8p/demo/src/server.py
127
- # Local Node example
128
- npx @mcpjam/inspector@latest npx -y /Users/matt8p/demo-ts/dist/index.js
127
+ npx @mcpjam/inspector@latest --config mcp.json
129
128
  ```
130
129
 
131
130
  ### SSE / Streamable HTTP
@@ -136,7 +135,7 @@ Spin up the MCPJam inspector
136
135
  npx @mcpjam/inspector@latest
137
136
  ```
138
137
 
139
- In the UI "MCP Servers" tab, click add server, select HTTP, then paste in your server URL
138
+ In the UI "MCP Servers" tab, click add server, select HTTP, then paste in your server URL. Support for OAuth 2.0 testing.
140
139
 
141
140
  ## Requirements
142
141
 
@@ -171,39 +170,17 @@ npm run build
171
170
  npm run start
172
171
  ```
173
172
 
174
- ### Available Scripts
175
-
176
- | Script | Description |
177
- | ---------------------- | ----------------------------------------------- |
178
- | `npm run dev` | Start Next.js development server with Turbopack |
179
- | `npm run build` | Build the application for production |
180
- | `npm run start` | Start the production server |
181
- | `npm run lint` | Run ESLint code linting |
182
- | `npm run prettier-fix` | Format code with Prettier |
183
-
184
- ---
185
-
186
173
  ## 🀝 Contributing
187
174
 
188
- We welcome contributions to MCPJam Inspector V1! Please read our [CONTRIBUTING.md](./CONTRIBUTING.md) for development guidelines and best practices.
189
-
190
- ### Development Workflow
191
-
192
- 1. **Fork** the repository
193
- 2. **Create** a feature branch (`git checkout -b feature/amazing-feature`)
194
- 3. **Develop** your changes with proper testing
195
- 4. **Format** code with `npm run prettier-fix`
196
- 5. **Lint** code with `npm run lint`
197
- 6. **Commit** your changes (`git commit -m 'Add amazing feature'`)
198
- 7. **Push** to your branch (`git push origin feature/amazing-feature`)
199
- 8. **Open** a Pull Request
175
+ We welcome contributions to MCPJam Inspector V1! Please read our [Contributing Guide](https://docs.mcpjam.com/CONTRIBUTING) for development guidelines and best practices.
200
176
 
201
177
  ## πŸ“š Resources
202
178
 
203
179
  - **πŸ’¬ Discord**: [Join the MCPJam Community](https://discord.gg/JEnDtz8X6z)
204
180
  - **πŸ“– MCP Protocol**: [Model Context Protocol Documentation](https://modelcontextprotocol.io/)
205
- - **πŸ”§ Mastra Framework**: [Mastra MCP Integration](https://github.com/mastra-ai/mastra)
206
181
  - **πŸ€– AI SDK**: [Vercel AI SDK](https://sdk.vercel.ai/)
182
+ - **⚑ FastApps** [DooiLabs/FastApps](https://github.com/DooiLabs/FastApps) - The Python framework to build OpenAI Apps.
183
+ - **βœ–οΈ xMCP** [xMCP](https://xmcp.dev/) - The Typescript MCP framework. Ship on Vercel instantly.
207
184
 
208
185
  ---
209
186