@mcpjam/inspector 0.8.1 → 0.8.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.
Files changed (41) hide show
  1. package/.next/BUILD_ID +1 -1
  2. package/.next/app-build-manifest.json +9 -9
  3. package/.next/app-path-routes-manifest.json +2 -2
  4. package/.next/build-manifest.json +2 -2
  5. package/.next/cache/.previewinfo +1 -1
  6. package/.next/cache/.rscinfo +1 -1
  7. package/.next/cache/.tsbuildinfo +1 -1
  8. package/.next/cache/eslint/.cache_1pr0xfn +1 -1
  9. package/.next/cache/webpack/client-production/0.pack +0 -0
  10. package/.next/cache/webpack/client-production/index.pack +0 -0
  11. package/.next/cache/webpack/edge-server-production/index.pack +0 -0
  12. package/.next/cache/webpack/server-production/0.pack +0 -0
  13. package/.next/cache/webpack/server-production/index.pack +0 -0
  14. package/.next/prerender-manifest.json +3 -3
  15. package/.next/server/app/_not-found/page.js +1 -1
  16. package/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  17. package/.next/server/app/api/mcp/chat/route_client-reference-manifest.js +1 -1
  18. package/.next/server/app/api/mcp/connect/route_client-reference-manifest.js +1 -1
  19. package/.next/server/app/api/mcp/prompts/get/route_client-reference-manifest.js +1 -1
  20. package/.next/server/app/api/mcp/prompts/list/route_client-reference-manifest.js +1 -1
  21. package/.next/server/app/api/mcp/resources/list/route_client-reference-manifest.js +1 -1
  22. package/.next/server/app/api/mcp/resources/read/route_client-reference-manifest.js +1 -1
  23. package/.next/server/app/api/mcp/tools/route_client-reference-manifest.js +1 -1
  24. package/.next/server/app/oauth/callback/page.js +2 -2
  25. package/.next/server/app/oauth/callback/page_client-reference-manifest.js +1 -1
  26. package/.next/server/app/page.js +5 -5
  27. package/.next/server/app/page.js.nft.json +1 -1
  28. package/.next/server/app/page_client-reference-manifest.js +1 -1
  29. package/.next/server/app-paths-manifest.json +2 -2
  30. package/.next/server/pages/500.html +1 -1
  31. package/.next/server/server-reference-manifest.js +1 -1
  32. package/.next/server/server-reference-manifest.json +1 -1
  33. package/.next/static/chunks/574-9365237f47ed3a68.js +1 -0
  34. package/.next/static/chunks/app/page-b0e3ed6257734413.js +1 -0
  35. package/.next/trace +35 -35
  36. package/README.md +5 -5
  37. package/package.json +1 -1
  38. package/.next/static/chunks/14-ae3a01e72ea53777.js +0 -1
  39. package/.next/static/chunks/app/page-fdd433623879220d.js +0 -1
  40. /package/.next/static/{Pq27RIJUfrYOGSjOrYx4E → SigynMKeJ0KJs0Nc9i0E-}/_buildManifest.js +0 -0
  41. /package/.next/static/{Pq27RIJUfrYOGSjOrYx4E → SigynMKeJ0KJs0Nc9i0E-}/_ssgManifest.js +0 -0
package/README.md CHANGED
@@ -22,7 +22,7 @@ A developer tool for testing, debugging Model Context Protocol (MCP) servers. Te
22
22
 
23
23
  | Feature | Description |
24
24
  | ---------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- |
25
- | **Full MCP Spec Compliance** | Test your MCP server's tools, resources, prompts, and OAuth 2. MCPJam is compliant with the latest MCP specs. |
25
+ | **Full MCP Spec Compliance** | Test your MCP server's tools, resources, prompts, elicitation, and OAuth 2. MCPJam is compliant with the latest MCP specs. |
26
26
  | **All transports supported** | Connect to any MCP server. MCPJam inspector supports STDIO, SSE, and Streamable HTTP transports. |
27
27
  | **LLM Playground** | Integrated chat playground with OpenAI, Anthropic Claude, and Ollama model support. Test how your MCP server would behave against an LLM |
28
28
  | **Debugging** | Comprehensive logging, tracing, and error reporting for MCP server development |
@@ -30,7 +30,7 @@ A developer tool for testing, debugging Model Context Protocol (MCP) servers. Te
30
30
 
31
31
  ## 📸 Screenshots
32
32
 
33
- <img alt="MCPJam Inspector Demo" src="./public/demo_1.png">
33
+ <img alt="MCPJam Inspector Demo" src="./public/demo_1.png">
34
34
 
35
35
  <details>
36
36
  <summary><strong>LLM Playground</strong></summary>
@@ -51,17 +51,17 @@ A developer tool for testing, debugging Model Context Protocol (MCP) servers. Te
51
51
  Start up the MCPJam inspector:
52
52
 
53
53
  ```bash
54
- npx @mcpjam/inspector
54
+ npx @mcpjam/inspector@latest
55
55
  ```
56
56
 
57
57
  Other commands:
58
58
 
59
59
  ```bash
60
60
  # Launch with custom port
61
- npx @mcpjam/inspector --port 4000
61
+ npx @mcpjam/inspector@latest --port 4000
62
62
 
63
63
  # Shortcut for starting MCPJam and an Ollama model
64
- npx @mcpjam/inspector --ollama llama3.2
64
+ npx @mcpjam/inspector@latest --ollama llama3.2
65
65
  ```
66
66
 
67
67
  ## Requirements
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mcpjam/inspector",
3
- "version": "0.8.1",
3
+ "version": "0.8.2",
4
4
  "type": "module",
5
5
  "description": "MCPJam Inspector",
6
6
  "license": "Apache-2.0",