nitrostack 1.0.84 → 1.0.85

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
@@ -37,6 +37,8 @@ npm install -g @nitrostack/cli
37
37
  nitrostack-cli init my-server
38
38
  ```
39
39
 
40
+ ![nitrocli init](assets/gif/nitrocli.gif)
41
+
40
42
  ### 3. Start Development
41
43
  ```bash
42
44
  cd my-server
@@ -50,10 +52,18 @@ npm run dev
50
52
 
51
53
  NitroStudio is a desktop application for testing and debugging MCP servers. Simply open your project in the Studio—**it handles running the development server for you internally.**
52
54
 
55
+ ![NitroStudio](assets/gif/nitrostudio-main.gif)
56
+
53
57
  **[Download NitroStudio](https://nitrostack.ai/studio)**
54
58
 
55
59
  - **Real-time testing**: Execute tools and inspect request/response payloads.
60
+
61
+ ![Real-time testing](assets/gif/nitrostudio-testing.gif)
62
+
56
63
  - **AI Chat**: Interact with your MCP server using a built-in AI assistant.
64
+
65
+ ![AI Chat](assets/gif/nitrostudio-chat.gif)
66
+
57
67
  - **Widget Preview**: Instantly visualize your interactive UI components.
58
68
 
59
69
  ---
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "nitrostack",
3
- "version": "1.0.84",
3
+ "version": "1.0.85",
4
4
  "description": "NitroStack - Enterprise-grade MCP server framework. Decoupled into @nitrostack/core, @nitrostack/cli, and @nitrostack/widgets.",
5
5
  "type": "module",
6
6
  "files": [
7
7
  "README.md",
8
- "LICENSE"
8
+ "LICENSE",
9
+ "assets"
9
10
  ],
10
11
  "scripts": {
11
12
  "build": "cd packages/core && npm run build && cd ../widgets && npm run build && cd ../cli && npm run build",