nitrostack 1.0.0 → 1.0.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 (164) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/dist/cli/index.js +4 -1
  3. package/dist/cli/index.js.map +1 -1
  4. package/package.json +1 -1
  5. package/src/studio/README.md +140 -0
  6. package/src/studio/app/api/auth/fetch-metadata/route.ts +71 -0
  7. package/src/studio/app/api/auth/register-client/route.ts +67 -0
  8. package/src/studio/app/api/chat/route.ts +123 -0
  9. package/src/studio/app/api/health/checks/route.ts +42 -0
  10. package/src/studio/app/api/health/route.ts +13 -0
  11. package/src/studio/app/api/init/route.ts +85 -0
  12. package/src/studio/app/api/ping/route.ts +13 -0
  13. package/src/studio/app/api/prompts/[name]/route.ts +21 -0
  14. package/src/studio/app/api/prompts/route.ts +13 -0
  15. package/src/studio/app/api/resources/[...uri]/route.ts +18 -0
  16. package/src/studio/app/api/resources/route.ts +13 -0
  17. package/src/studio/app/api/roots/route.ts +13 -0
  18. package/src/studio/app/api/sampling/route.ts +14 -0
  19. package/src/studio/app/api/tools/[name]/call/route.ts +41 -0
  20. package/src/studio/app/api/tools/route.ts +23 -0
  21. package/src/studio/app/api/widget-examples/route.ts +44 -0
  22. package/src/studio/app/auth/callback/page.tsx +160 -0
  23. package/src/studio/app/auth/page.tsx +543 -0
  24. package/src/studio/app/chat/page.tsx +530 -0
  25. package/src/studio/app/chat/page.tsx.backup +390 -0
  26. package/src/studio/app/globals.css +410 -0
  27. package/src/studio/app/health/page.tsx +177 -0
  28. package/src/studio/app/layout.tsx +48 -0
  29. package/src/studio/app/page.tsx +337 -0
  30. package/src/studio/app/page.tsx.backup +346 -0
  31. package/src/studio/app/ping/page.tsx +204 -0
  32. package/src/studio/app/prompts/page.tsx +228 -0
  33. package/src/studio/app/resources/page.tsx +313 -0
  34. package/src/studio/components/EnlargeModal.tsx +116 -0
  35. package/src/studio/components/Sidebar.tsx +133 -0
  36. package/src/studio/components/ToolCard.tsx +108 -0
  37. package/src/studio/components/WidgetRenderer.tsx +99 -0
  38. package/src/studio/lib/api.ts +207 -0
  39. package/src/studio/lib/llm-service.ts +361 -0
  40. package/src/studio/lib/mcp-client.ts +168 -0
  41. package/src/studio/lib/store.ts +192 -0
  42. package/src/studio/lib/theme-provider.tsx +50 -0
  43. package/src/studio/lib/types.ts +107 -0
  44. package/src/studio/lib/widget-loader.ts +90 -0
  45. package/src/studio/middleware.ts +27 -0
  46. package/src/studio/next.config.js +16 -0
  47. package/src/studio/package-lock.json +2696 -0
  48. package/src/studio/package.json +34 -0
  49. package/src/studio/postcss.config.mjs +10 -0
  50. package/src/studio/tailwind.config.ts +67 -0
  51. package/src/studio/tsconfig.json +41 -0
  52. package/templates/typescript-auth/.env.example +23 -0
  53. package/templates/typescript-auth/src/app.module.ts +103 -0
  54. package/templates/typescript-auth/src/db/database.ts +163 -0
  55. package/templates/typescript-auth/src/db/seed.ts +374 -0
  56. package/templates/typescript-auth/src/db/setup.ts +87 -0
  57. package/templates/typescript-auth/src/events/analytics.service.ts +52 -0
  58. package/templates/typescript-auth/src/events/notification.service.ts +40 -0
  59. package/templates/typescript-auth/src/filters/global-exception.filter.ts +28 -0
  60. package/templates/typescript-auth/src/guards/README.md +75 -0
  61. package/templates/typescript-auth/src/guards/jwt.guard.ts +105 -0
  62. package/templates/typescript-auth/src/health/database.health.ts +41 -0
  63. package/templates/typescript-auth/src/index.ts +26 -0
  64. package/templates/typescript-auth/src/interceptors/transform.interceptor.ts +24 -0
  65. package/templates/typescript-auth/src/middleware/logging.middleware.ts +42 -0
  66. package/templates/typescript-auth/src/modules/addresses/addresses.module.ts +16 -0
  67. package/templates/typescript-auth/src/modules/addresses/addresses.prompts.ts +114 -0
  68. package/templates/typescript-auth/src/modules/addresses/addresses.resources.ts +40 -0
  69. package/templates/typescript-auth/src/modules/addresses/addresses.tools.ts +241 -0
  70. package/templates/typescript-auth/src/modules/auth/auth.module.ts +16 -0
  71. package/templates/typescript-auth/src/modules/auth/auth.prompts.ts +147 -0
  72. package/templates/typescript-auth/src/modules/auth/auth.resources.ts +84 -0
  73. package/templates/typescript-auth/src/modules/auth/auth.tools.ts +139 -0
  74. package/templates/typescript-auth/src/modules/cart/cart.module.ts +16 -0
  75. package/templates/typescript-auth/src/modules/cart/cart.prompts.ts +95 -0
  76. package/templates/typescript-auth/src/modules/cart/cart.resources.ts +44 -0
  77. package/templates/typescript-auth/src/modules/cart/cart.tools.ts +281 -0
  78. package/templates/typescript-auth/src/modules/orders/orders.module.ts +16 -0
  79. package/templates/typescript-auth/src/modules/orders/orders.prompts.ts +88 -0
  80. package/templates/typescript-auth/src/modules/orders/orders.resources.ts +48 -0
  81. package/templates/typescript-auth/src/modules/orders/orders.tools.ts +281 -0
  82. package/templates/typescript-auth/src/modules/products/products.module.ts +16 -0
  83. package/templates/typescript-auth/src/modules/products/products.prompts.ts +146 -0
  84. package/templates/typescript-auth/src/modules/products/products.resources.ts +98 -0
  85. package/templates/typescript-auth/src/modules/products/products.tools.ts +266 -0
  86. package/templates/typescript-auth/src/pipes/validation.pipe.ts +42 -0
  87. package/templates/typescript-auth/src/services/database.service.ts +90 -0
  88. package/templates/typescript-auth/src/widgets/app/add-to-cart/page.tsx +122 -0
  89. package/templates/typescript-auth/src/widgets/app/address-added/page.tsx +116 -0
  90. package/templates/typescript-auth/src/widgets/app/address-deleted/page.tsx +105 -0
  91. package/templates/typescript-auth/src/widgets/app/address-list/page.tsx +139 -0
  92. package/templates/typescript-auth/src/widgets/app/address-updated/page.tsx +153 -0
  93. package/templates/typescript-auth/src/widgets/app/cart-cleared/page.tsx +86 -0
  94. package/templates/typescript-auth/src/widgets/app/cart-updated/page.tsx +116 -0
  95. package/templates/typescript-auth/src/widgets/app/categories/page.tsx +134 -0
  96. package/templates/typescript-auth/src/widgets/app/layout.tsx +21 -0
  97. package/templates/typescript-auth/src/widgets/app/login-result/page.tsx +129 -0
  98. package/templates/typescript-auth/src/widgets/app/order-confirmation/page.tsx +206 -0
  99. package/templates/typescript-auth/src/widgets/app/order-details/page.tsx +225 -0
  100. package/templates/typescript-auth/src/widgets/app/order-history/page.tsx +218 -0
  101. package/templates/typescript-auth/src/widgets/app/product-card/page.tsx +121 -0
  102. package/templates/typescript-auth/src/widgets/app/products-grid/page.tsx +173 -0
  103. package/templates/typescript-auth/src/widgets/app/shopping-cart/page.tsx +187 -0
  104. package/templates/typescript-auth/src/widgets/app/whoami/page.tsx +165 -0
  105. package/templates/typescript-auth/src/widgets/next.config.js +38 -0
  106. package/templates/typescript-auth/src/widgets/package.json +18 -0
  107. package/templates/typescript-auth/src/widgets/styles/ecommerce.ts +169 -0
  108. package/templates/typescript-auth/src/widgets/tsconfig.json +28 -0
  109. package/templates/typescript-auth/src/widgets/types/tool-data.ts +141 -0
  110. package/templates/typescript-auth/src/widgets/widget-manifest.json +464 -0
  111. package/templates/typescript-auth/tsconfig.json +27 -0
  112. package/templates/typescript-auth-api-key/.env +15 -0
  113. package/templates/typescript-auth-api-key/.env.example +4 -0
  114. package/templates/typescript-auth-api-key/src/app.module.ts +38 -0
  115. package/templates/typescript-auth-api-key/src/guards/apikey.guard.ts +47 -0
  116. package/templates/typescript-auth-api-key/src/guards/multi-auth.guard.ts +157 -0
  117. package/templates/typescript-auth-api-key/src/health/system.health.ts +55 -0
  118. package/templates/typescript-auth-api-key/src/index.ts +47 -0
  119. package/templates/typescript-auth-api-key/src/modules/calculator/calculator.module.ts +12 -0
  120. package/templates/typescript-auth-api-key/src/modules/calculator/calculator.prompts.ts +73 -0
  121. package/templates/typescript-auth-api-key/src/modules/calculator/calculator.resources.ts +60 -0
  122. package/templates/typescript-auth-api-key/src/modules/calculator/calculator.tools.ts +71 -0
  123. package/templates/typescript-auth-api-key/src/modules/demo/demo.module.ts +18 -0
  124. package/templates/typescript-auth-api-key/src/modules/demo/demo.tools.ts +155 -0
  125. package/templates/typescript-auth-api-key/src/modules/demo/multi-auth.tools.ts +123 -0
  126. package/templates/typescript-auth-api-key/src/widgets/app/calculator-operations/page.tsx +133 -0
  127. package/templates/typescript-auth-api-key/src/widgets/app/calculator-result/page.tsx +134 -0
  128. package/templates/typescript-auth-api-key/src/widgets/app/layout.tsx +14 -0
  129. package/templates/typescript-auth-api-key/src/widgets/next.config.js +37 -0
  130. package/templates/typescript-auth-api-key/src/widgets/package.json +24 -0
  131. package/templates/typescript-auth-api-key/src/widgets/tsconfig.json +28 -0
  132. package/templates/typescript-auth-api-key/src/widgets/widget-manifest.json +48 -0
  133. package/templates/typescript-auth-api-key/tsconfig.json +23 -0
  134. package/templates/typescript-oauth/.env.example +91 -0
  135. package/templates/typescript-oauth/src/app.module.ts +89 -0
  136. package/templates/typescript-oauth/src/guards/oauth.guard.ts +127 -0
  137. package/templates/typescript-oauth/src/index.ts +74 -0
  138. package/templates/typescript-oauth/src/modules/demo/demo.module.ts +16 -0
  139. package/templates/typescript-oauth/src/modules/demo/demo.tools.ts +190 -0
  140. package/templates/typescript-oauth/src/widgets/app/calculator-operations/page.tsx +133 -0
  141. package/templates/typescript-oauth/src/widgets/app/calculator-result/page.tsx +134 -0
  142. package/templates/typescript-oauth/src/widgets/app/layout.tsx +14 -0
  143. package/templates/typescript-oauth/src/widgets/next.config.js +37 -0
  144. package/templates/typescript-oauth/src/widgets/package.json +24 -0
  145. package/templates/typescript-oauth/src/widgets/tsconfig.json +28 -0
  146. package/templates/typescript-oauth/src/widgets/widget-manifest.json +48 -0
  147. package/templates/typescript-oauth/tsconfig.json +23 -0
  148. package/templates/typescript-starter/.env.example +4 -0
  149. package/templates/typescript-starter/src/app.module.ts +34 -0
  150. package/templates/typescript-starter/src/health/system.health.ts +55 -0
  151. package/templates/typescript-starter/src/index.ts +27 -0
  152. package/templates/typescript-starter/src/modules/calculator/calculator.module.ts +12 -0
  153. package/templates/typescript-starter/src/modules/calculator/calculator.prompts.ts +73 -0
  154. package/templates/typescript-starter/src/modules/calculator/calculator.resources.ts +60 -0
  155. package/templates/typescript-starter/src/modules/calculator/calculator.tools.ts +71 -0
  156. package/templates/typescript-starter/src/widgets/app/calculator-operations/page.tsx +133 -0
  157. package/templates/typescript-starter/src/widgets/app/calculator-result/page.tsx +134 -0
  158. package/templates/typescript-starter/src/widgets/app/layout.tsx +14 -0
  159. package/templates/typescript-starter/src/widgets/next.config.js +37 -0
  160. package/templates/typescript-starter/src/widgets/package.json +24 -0
  161. package/templates/typescript-starter/src/widgets/tsconfig.json +28 -0
  162. package/templates/typescript-starter/src/widgets/widget-manifest.json +48 -0
  163. package/templates/typescript-starter/tsconfig.json +23 -0
  164. package/LICENSE_URLS_UPDATE_COMPLETE.md +0 -388
@@ -1,388 +0,0 @@
1
- # License Files & URLs Update - Complete ✅
2
-
3
- ## Summary
4
-
5
- All license files, legal notices, and website URLs have been successfully updated for the **NitroStack** package.
6
-
7
- ---
8
-
9
- ## 🔗 Official URLs (Final)
10
-
11
- ### Primary URLs
12
- - **Website**: https://nitrostack.vercel.app
13
- - **Documentation**: https://nitrostack-docs.vercel.app
14
- - **GitHub**: https://github.com/abhishekpanditofficial/nitrostack
15
- - **npm**: https://www.npmjs.com/package/nitrostack
16
-
17
- ### URL Changes Applied
18
- ```
19
- OLD → NEW
20
-
21
- https://hypermcp.vercel.app → https://nitrostack.vercel.app
22
- https://hypermcp-docs.vercel.app → https://nitrostack-docs.vercel.app
23
- https://nitrostack.dev → https://nitrostack.vercel.app (corrected)
24
- https://docs.nitrostack.dev → https://nitrostack-docs.vercel.app (corrected)
25
- ```
26
-
27
- ---
28
-
29
- ## 📄 License Files Updated
30
-
31
- ### 1. LICENSE ✅
32
- **File**: `/LICENSE`
33
-
34
- **Status**: Apache License 2.0 - Copyright updated
35
-
36
- **Content**:
37
- ```
38
- Copyright 2025 Abhishek Pandit
39
-
40
- Licensed under the Apache License, Version 2.0 (the "License");
41
- ...
42
- ```
43
-
44
- **No changes needed** - Already correctly attributes to Abhishek Pandit
45
-
46
- ---
47
-
48
- ### 2. NOTICE ✅
49
- **File**: `/NOTICE`
50
-
51
- **Updated Sections**:
52
-
53
- #### Header
54
- ```
55
- BEFORE:
56
- HyperMCP
57
- Copyright 2025 Abhishek Pandit
58
- This product includes software developed by Abhishek Pandit at HyperMCP...
59
-
60
- AFTER:
61
- NitroStack
62
- Copyright 2025 Abhishek Pandit
63
- This product includes software developed by Abhishek Pandit for NitroStack...
64
- ```
65
-
66
- #### Trademarks Section
67
- ```
68
- BEFORE:
69
- HyperMCP, the HyperMCP logo, and related marks are trademarks of the HyperMCP
70
- project. Use of these trademarks is subject to the trademark policy available
71
- at https://hypermcp.vercel.app/.
72
-
73
- AFTER:
74
- NitroStack, the NitroStack logo, and related marks are trademarks of the NitroStack
75
- project. Use of these trademarks is subject to the trademark policy available
76
- at https://nitrostack.vercel.app/.
77
- ```
78
-
79
- #### Footer Links
80
- ```
81
- BEFORE:
82
- - Website: https://hypermcp.vercel.app/
83
- - Documentation: https://hypermcp-docs.vercel.app/
84
- - GitHub: https://github.com/abhishekpanditofficial/supermcp
85
-
86
- AFTER:
87
- - Website: https://nitrostack.vercel.app/
88
- - Documentation: https://nitrostack-docs.vercel.app/
89
- - GitHub: https://github.com/abhishekpanditofficial/nitrostack
90
- ```
91
-
92
- **Dependencies Attribution**: ✅ Complete
93
- - All 20+ dependencies properly listed with licenses
94
- - No changes needed to dependency attributions
95
-
96
- ---
97
-
98
- ### 3. CONTRIBUTING.md ✅
99
- **File**: `/CONTRIBUTING.md`
100
-
101
- **Updated**:
102
- - License header template uses "Abhishek Pandit"
103
- - Resources section links updated to new URLs
104
- - CLA references Apache 2.0
105
-
106
- **License Header Template**:
107
- ```typescript
108
- /**
109
- * Copyright 2025 Abhishek Pandit
110
- *
111
- * Licensed under the Apache License, Version 2.0 (the "License");
112
- * you may not use this file except in compliance with the License.
113
- * You may obtain a copy of the License at
114
- *
115
- * http://www.apache.org/licenses/LICENSE-2.0
116
- *
117
- * Unless required by applicable law or agreed to in writing, software
118
- * distributed under the License is distributed on an "AS IS" BASIS,
119
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
120
- * See the License for the specific language governing permissions and
121
- * limitations under the License.
122
- */
123
- ```
124
-
125
- **Resources Section**:
126
- ```markdown
127
- ## 🔗 Resources
128
-
129
- - **Website**: https://nitrostack.vercel.app/
130
- - **Documentation**: https://nitrostack-docs.vercel.app/
131
- - **GitHub**: https://github.com/abhishekpanditofficial/nitrostack
132
- - **npm Package**: https://www.npmjs.com/package/nitrostack
133
- ```
134
-
135
- ---
136
-
137
- ### 4. README.md ✅
138
- **File**: `/README.md`
139
-
140
- **Badges Updated**:
141
- ```markdown
142
- [![npm version](https://img.shields.io/npm/v/nitrostack.svg)](https://www.npmjs.com/package/nitrostack)
143
- [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
144
- [![Website](https://img.shields.io/badge/Website-nitrostack.vercel.app-brightgreen)](https://nitrostack.vercel.app/)
145
- [![Docs](https://img.shields.io/badge/Docs-nitrostack--docs.vercel.app-blue)](https://nitrostack-docs.vercel.app/)
146
- ```
147
-
148
- **Documentation Section**:
149
- ```markdown
150
- ## 📚 Documentation
151
-
152
- **📖 Full documentation available at: https://nitrostack-docs.vercel.app/**
153
-
154
- Quick Links:
155
- - [Getting Started](https://nitrostack-docs.vercel.app/intro)
156
- - [Installation](https://nitrostack-docs.vercel.app/installation)
157
- - [Quick Start](https://nitrostack-docs.vercel.app/quick-start)
158
- - [Tools Guide](https://nitrostack-docs.vercel.app/sdk/typescript/tools)
159
- - [Widgets Guide](https://nitrostack-docs.vercel.app/sdk/typescript/ui/widgets)
160
- - [Authentication](https://nitrostack-docs.vercel.app/sdk/typescript/auth/overview)
161
- - [CLI Reference](https://nitrostack-docs.vercel.app/cli/overview)
162
- - [API Reference](https://nitrostack-docs.vercel.app/api/decorators)
163
- - [Templates](https://nitrostack-docs.vercel.app/templates/starter)
164
- - [Deployment](https://nitrostack-docs.vercel.app/deployment/checklist)
165
- ```
166
-
167
- **License Section**:
168
- ```markdown
169
- ## 📝 License
170
-
171
- This project is licensed under the **Apache License 2.0** - see the [LICENSE](./LICENSE) file for details.
172
-
173
- Copyright 2025 Abhishek Pandit
174
- ```
175
-
176
- **Links Section**:
177
- ```markdown
178
- ## 🔗 Links
179
-
180
- - **Website**: https://nitrostack.vercel.app/
181
- - **Documentation**: https://nitrostack-docs.vercel.app/
182
- - **GitHub**: https://github.com/abhishekpanditofficial/nitrostack
183
- - **npm Package**: https://www.npmjs.com/package/nitrostack
184
- - **Model Context Protocol**: https://modelcontextprotocol.io
185
- ```
186
-
187
- ---
188
-
189
- ### 5. CHANGELOG.md ✅
190
- **File**: `/CHANGELOG.md`
191
-
192
- **Updated**:
193
- ```markdown
194
- ## [Unreleased]
195
-
196
- ### Changed
197
- - **License**: Changed from MIT to Apache License 2.0
198
- - **Copyright**: Copyright holder is Abhishek Pandit
199
- - **Author**: Updated author to Abhishek Pandit
200
- - **Package Name**: Renamed from hypermcp to nitrostack
201
- - **URLs**: Updated to nitrostack.vercel.app and nitrostack-docs.vercel.app
202
- - Added NOTICE file for Apache 2.0 compliance with dependency attributions
203
- - Updated CONTRIBUTING.md with Apache 2.0 license headers and contributor agreement
204
- ```
205
-
206
- ---
207
-
208
- ### 6. package.json ✅
209
- **File**: `/package.json`
210
-
211
- **Updated Fields**:
212
- ```json
213
- {
214
- "name": "nitrostack",
215
- "description": "NitroStack - Build powerful MCP servers with TypeScript",
216
- "author": "Abhishek Pandit <abhishekpanditofficial@gmail.com>",
217
- "license": "Apache-2.0",
218
- "repository": {
219
- "type": "git",
220
- "url": "https://github.com/abhishekpanditofficial/nitrostack.git"
221
- },
222
- "bugs": {
223
- "url": "https://github.com/abhishekpanditofficial/nitrostack/issues"
224
- },
225
- "homepage": "https://nitrostack.vercel.app"
226
- }
227
- ```
228
-
229
- ---
230
-
231
- ## 🌐 Website Projects Updated
232
-
233
- ### 1. website/ (Marketing Site) ✅
234
- **File**: `/website/app/page.tsx`
235
-
236
- **All Links Updated**:
237
- - Navigation links → `https://nitrostack-docs.vercel.app`
238
- - CTA buttons → `https://nitrostack-docs.vercel.app`
239
- - Template links → `https://nitrostack-docs.vercel.app/templates/...`
240
- - Footer links → `https://nitrostack-docs.vercel.app`
241
-
242
- **Verification**:
243
- ```tsx
244
- // Header
245
- <a href="https://nitrostack-docs.vercel.app">Docs</a>
246
-
247
- // CTA
248
- <a href="https://nitrostack-docs.vercel.app">
249
- View Documentation
250
- </a>
251
-
252
- // Templates
253
- <a href="https://nitrostack-docs.vercel.app/templates/starter">
254
- Learn More
255
- </a>
256
-
257
- // Footer - Resources
258
- <li><a href="https://nitrostack-docs.vercel.app">Documentation</a></li>
259
- <li><a href="https://nitrostack-docs.vercel.app/api-reference/decorators">API Reference</a></li>
260
- <li><a href="https://nitrostack-docs.vercel.app/getting-started/quick-start">Quick Start</a></li>
261
- ```
262
-
263
- **Count**: 14 references to `nitrostack-docs.vercel.app` ✅
264
-
265
- ---
266
-
267
- ### 2. documentation/ (Docs Site) ✅
268
- **File**: `/documentation/app/[...slug]/page.tsx` and others
269
-
270
- **Status**: All imports and references already updated through bulk replace
271
-
272
- ---
273
-
274
- ### 3. src/studio/ (Studio App) ✅
275
- **File**: `/src/studio/package.json`
276
-
277
- **Updated**:
278
- ```json
279
- {
280
- "name": "@nitrostack/studio",
281
- "version": "3.1.0",
282
- "description": "NitroStack Studio - Visual MCP Server Inspector"
283
- }
284
- ```
285
-
286
- **Linked**: `npm link nitrostack` ✅
287
-
288
- ---
289
-
290
- ## 📊 All Files Updated Summary
291
-
292
- | Category | Files | Status |
293
- |----------|-------|--------|
294
- | **Legal Files** | LICENSE, NOTICE, CONTRIBUTING.md | ✅ Complete |
295
- | **Documentation** | README.md, CHANGELOG.md | ✅ Complete |
296
- | **Package Config** | package.json, src/studio/package.json | ✅ Complete |
297
- | **Source Files** | All .ts, .tsx files | ✅ Complete (946 occurrences) |
298
- | **Templates** | All 4 templates | ✅ Complete |
299
- | **Documentation Site** | All .md, .tsx files | ✅ Complete |
300
- | **Website** | All .tsx files | ✅ Complete (14 links) |
301
- | **Docs Files** | All .md files | ✅ Complete |
302
-
303
- ---
304
-
305
- ## ✅ Verification
306
-
307
- ### Zero Old References
308
- ```bash
309
- $ grep -r "hypermcp\|supermcp" --include="*.ts" --include="*.tsx" \
310
- --include="*.js" --include="*.json" --include="*.md" . \
311
- | grep -v "node_modules" | grep -v "dist/" | wc -l
312
-
313
- 0 # ✅ Zero occurrences
314
- ```
315
-
316
- ### Build Success
317
- ```bash
318
- $ npm run build
319
- > nitrostack@1.0.0 build
320
- > tsc
321
-
322
- ✅ No errors
323
- ```
324
-
325
- ### CLI Works
326
- ```bash
327
- $ nitrostack --version
328
- 1.0.0 ✅
329
-
330
- $ nitrostack --help
331
- Usage: nitrostack [options] [command]
332
- NitroStack - Build MCP servers with ease ✅
333
- ```
334
-
335
- ---
336
-
337
- ## 🎯 Legal Compliance Checklist
338
-
339
- - [x] **Apache 2.0 License** - Full text in LICENSE file
340
- - [x] **Copyright Attribution** - Abhishek Pandit (2025)
341
- - [x] **NOTICE File** - All dependencies attributed
342
- - [x] **License Headers** - Template provided in CONTRIBUTING.md
343
- - [x] **Contributor Agreement** - CLA documented
344
- - [x] **Trademark Notice** - NitroStack trademarks protected
345
- - [x] **Third-Party Licenses** - All 20+ dependencies listed
346
- - [x] **Standards References** - OAuth, MCP, RFCs documented
347
-
348
- ---
349
-
350
- ## 🚀 Ready for Publication
351
-
352
- ### Pre-Publish Checklist
353
- - [x] Package name: `nitrostack`
354
- - [x] Version: `1.0.0`
355
- - [x] Author: Abhishek Pandit
356
- - [x] License: Apache-2.0
357
- - [x] URLs: All updated to .vercel.app
358
- - [x] Legal files: Complete
359
- - [x] Build: Successful
360
- - [x] CLI: Working
361
- - [x] Links: All verified
362
-
363
- ### Publish Command
364
- ```bash
365
- npm publish
366
- ```
367
-
368
- ---
369
-
370
- ## 📞 Official Information
371
-
372
- **Package**: `nitrostack`
373
- **Author**: Abhishek Pandit <abhishekpanditofficial@gmail.com>
374
- **Copyright**: 2025 Abhishek Pandit
375
- **License**: Apache License 2.0
376
-
377
- **URLs**:
378
- - Website: https://nitrostack.vercel.app
379
- - Documentation: https://nitrostack-docs.vercel.app
380
- - GitHub: https://github.com/abhishekpanditofficial/nitrostack
381
- - npm: https://www.npmjs.com/package/nitrostack
382
-
383
- ---
384
-
385
- **Status**: ✅ **COMPLETE** - All license files and URLs updated!
386
-
387
- The package is fully compliant, all URLs are correct, and ready for npm publication.
388
-