skybridge 0.0.0-dev.efbdb09 → 0.0.0-dev.efd00e6

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 (405) hide show
  1. package/README.md +124 -124
  2. package/dist/cli/build-helpers.d.ts +11 -0
  3. package/dist/cli/build-helpers.js +107 -0
  4. package/dist/cli/build-helpers.js.map +1 -0
  5. package/dist/cli/build-helpers.test.d.ts +1 -0
  6. package/dist/cli/build-helpers.test.js +130 -0
  7. package/dist/cli/build-helpers.test.js.map +1 -0
  8. package/dist/cli/build-steps.d.ts +2 -0
  9. package/dist/cli/build-steps.js +73 -0
  10. package/dist/cli/build-steps.js.map +1 -0
  11. package/dist/cli/build-steps.test.d.ts +1 -0
  12. package/dist/cli/build-steps.test.js +52 -0
  13. package/dist/cli/build-steps.test.js.map +1 -0
  14. package/dist/cli/detect-port.d.ts +2 -2
  15. package/dist/cli/detect-port.js +9 -20
  16. package/dist/cli/detect-port.js.map +1 -1
  17. package/dist/cli/header.d.ts +1 -1
  18. package/dist/cli/header.js.map +1 -1
  19. package/dist/cli/resolve-skybridge-config.d.ts +5 -0
  20. package/dist/cli/resolve-skybridge-config.js +18 -0
  21. package/dist/cli/resolve-skybridge-config.js.map +1 -0
  22. package/dist/cli/run-command.js.map +1 -1
  23. package/dist/cli/run-plain.d.ts +18 -0
  24. package/dist/cli/run-plain.js +89 -0
  25. package/dist/cli/run-plain.js.map +1 -0
  26. package/dist/cli/telemetry.js.map +1 -1
  27. package/dist/cli/tunnel-control-server.d.ts +9 -0
  28. package/dist/cli/tunnel-control-server.js +31 -0
  29. package/dist/cli/tunnel-control-server.js.map +1 -0
  30. package/dist/cli/tunnel-control-server.test.d.ts +1 -0
  31. package/dist/cli/tunnel-control-server.test.js +39 -0
  32. package/dist/cli/tunnel-control-server.test.js.map +1 -0
  33. package/dist/cli/tunnel-handler.d.ts +3 -0
  34. package/dist/cli/tunnel-handler.js +48 -0
  35. package/dist/cli/tunnel-handler.js.map +1 -0
  36. package/dist/cli/tunnel-handler.test.d.ts +1 -0
  37. package/dist/cli/tunnel-handler.test.js +105 -0
  38. package/dist/cli/tunnel-handler.test.js.map +1 -0
  39. package/dist/cli/tunnel.d.ts +57 -0
  40. package/dist/cli/tunnel.js +154 -0
  41. package/dist/cli/tunnel.js.map +1 -0
  42. package/dist/cli/tunnel.test.d.ts +1 -0
  43. package/dist/cli/tunnel.test.js +190 -0
  44. package/dist/cli/tunnel.test.js.map +1 -0
  45. package/dist/cli/types.js.map +1 -1
  46. package/dist/cli/use-execute-steps.js.map +1 -1
  47. package/dist/cli/use-messages.js.map +1 -1
  48. package/dist/cli/use-nodemon.d.ts +14 -0
  49. package/dist/cli/use-nodemon.js +72 -52
  50. package/dist/cli/use-nodemon.js.map +1 -1
  51. package/dist/cli/use-open-browser.d.ts +1 -0
  52. package/dist/cli/use-open-browser.js +44 -0
  53. package/dist/cli/use-open-browser.js.map +1 -0
  54. package/dist/cli/use-tunnel.d.ts +1 -1
  55. package/dist/cli/use-tunnel.js +102 -68
  56. package/dist/cli/use-tunnel.js.map +1 -1
  57. package/dist/cli/use-typescript-check.d.ts +8 -2
  58. package/dist/cli/use-typescript-check.js +71 -68
  59. package/dist/cli/use-typescript-check.js.map +1 -1
  60. package/dist/commands/build.d.ts +0 -3
  61. package/dist/commands/build.js +2 -38
  62. package/dist/commands/build.js.map +1 -1
  63. package/dist/commands/create.d.ts +9 -0
  64. package/dist/commands/create.js +30 -0
  65. package/dist/commands/create.js.map +1 -0
  66. package/dist/commands/dev.d.ts +2 -0
  67. package/dist/commands/dev.js +81 -2
  68. package/dist/commands/dev.js.map +1 -1
  69. package/dist/commands/start.js +7 -1
  70. package/dist/commands/start.js.map +1 -1
  71. package/dist/commands/telemetry/disable.js.map +1 -1
  72. package/dist/commands/telemetry/enable.js.map +1 -1
  73. package/dist/commands/telemetry/status.js.map +1 -1
  74. package/dist/server/asset-base-url-transform-plugin.d.ts +1 -0
  75. package/dist/server/asset-base-url-transform-plugin.js +17 -2
  76. package/dist/server/asset-base-url-transform-plugin.js.map +1 -1
  77. package/dist/server/asset-base-url-transform-plugin.test.js +80 -1
  78. package/dist/server/asset-base-url-transform-plugin.test.js.map +1 -1
  79. package/dist/server/auth/discovery.d.ts +32 -0
  80. package/dist/server/auth/discovery.js +56 -0
  81. package/dist/server/auth/discovery.js.map +1 -0
  82. package/dist/server/auth/discovery.test.d.ts +1 -0
  83. package/dist/server/auth/discovery.test.js +93 -0
  84. package/dist/server/auth/discovery.test.js.map +1 -0
  85. package/dist/server/auth/index.d.ts +18 -0
  86. package/dist/server/auth/index.js +2 -0
  87. package/dist/server/auth/index.js.map +1 -0
  88. package/dist/server/auth/providers/auth0.d.ts +18 -0
  89. package/dist/server/auth/providers/auth0.js +31 -0
  90. package/dist/server/auth/providers/auth0.js.map +1 -0
  91. package/dist/server/auth/providers/auth0.test.d.ts +1 -0
  92. package/dist/server/auth/providers/auth0.test.js +48 -0
  93. package/dist/server/auth/providers/auth0.test.js.map +1 -0
  94. package/dist/server/auth/providers/clerk.d.ts +14 -0
  95. package/dist/server/auth/providers/clerk.js +16 -0
  96. package/dist/server/auth/providers/clerk.js.map +1 -0
  97. package/dist/server/auth/providers/clerk.test.d.ts +1 -0
  98. package/dist/server/auth/providers/clerk.test.js +28 -0
  99. package/dist/server/auth/providers/clerk.test.js.map +1 -0
  100. package/dist/server/auth/providers/custom.d.ts +32 -0
  101. package/dist/server/auth/providers/custom.js +49 -0
  102. package/dist/server/auth/providers/custom.js.map +1 -0
  103. package/dist/server/auth/providers/custom.test.d.ts +1 -0
  104. package/dist/server/auth/providers/custom.test.js +156 -0
  105. package/dist/server/auth/providers/custom.test.js.map +1 -0
  106. package/dist/server/auth/providers/descope.d.ts +15 -0
  107. package/dist/server/auth/providers/descope.js +44 -0
  108. package/dist/server/auth/providers/descope.js.map +1 -0
  109. package/dist/server/auth/providers/descope.test.d.ts +1 -0
  110. package/dist/server/auth/providers/descope.test.js +60 -0
  111. package/dist/server/auth/providers/descope.test.js.map +1 -0
  112. package/dist/server/auth/providers/shared.d.ts +2 -0
  113. package/dist/server/auth/providers/shared.js +6 -0
  114. package/dist/server/auth/providers/shared.js.map +1 -0
  115. package/dist/server/auth/providers/shared.test.d.ts +1 -0
  116. package/dist/server/auth/providers/shared.test.js +10 -0
  117. package/dist/server/auth/providers/shared.test.js.map +1 -0
  118. package/dist/server/auth/providers/stytch.d.ts +12 -0
  119. package/dist/server/auth/providers/stytch.js +13 -0
  120. package/dist/server/auth/providers/stytch.js.map +1 -0
  121. package/dist/server/auth/providers/workos.d.ts +11 -0
  122. package/dist/server/auth/providers/workos.js +12 -0
  123. package/dist/server/auth/providers/workos.js.map +1 -0
  124. package/dist/server/auth/security-schemes.d.ts +23 -0
  125. package/dist/server/auth/security-schemes.js +64 -0
  126. package/dist/server/auth/security-schemes.js.map +1 -0
  127. package/dist/server/auth/security-schemes.test.d.ts +1 -0
  128. package/dist/server/auth/security-schemes.test.js +99 -0
  129. package/dist/server/auth/security-schemes.test.js.map +1 -0
  130. package/dist/server/auth/setup.d.ts +6 -0
  131. package/dist/server/auth/setup.js +92 -0
  132. package/dist/server/auth/setup.js.map +1 -0
  133. package/dist/server/auth/setup.test.d.ts +1 -0
  134. package/dist/server/auth/setup.test.js +474 -0
  135. package/dist/server/auth/setup.test.js.map +1 -0
  136. package/dist/server/auth/verify.d.ts +12 -0
  137. package/dist/server/auth/verify.js +38 -0
  138. package/dist/server/auth/verify.js.map +1 -0
  139. package/dist/server/auth/verify.test.d.ts +1 -0
  140. package/dist/server/auth/verify.test.js +100 -0
  141. package/dist/server/auth/verify.test.js.map +1 -0
  142. package/dist/server/auth.d.ts +20 -0
  143. package/dist/server/auth.js +28 -0
  144. package/dist/server/auth.js.map +1 -0
  145. package/dist/server/build-manifest.test.d.ts +1 -0
  146. package/dist/server/build-manifest.test.js +27 -0
  147. package/dist/server/build-manifest.test.js.map +1 -0
  148. package/dist/server/content-helpers.d.ts +40 -0
  149. package/dist/server/content-helpers.js +33 -0
  150. package/dist/server/content-helpers.js.map +1 -1
  151. package/dist/server/content-helpers.test.js.map +1 -1
  152. package/dist/server/express.d.ts +1 -5
  153. package/dist/server/express.js +31 -7
  154. package/dist/server/express.js.map +1 -1
  155. package/dist/server/express.test.js +271 -69
  156. package/dist/server/express.test.js.map +1 -1
  157. package/dist/server/file-ref.d.ts +28 -0
  158. package/dist/server/file-ref.js +27 -0
  159. package/dist/server/file-ref.js.map +1 -0
  160. package/dist/server/host.d.ts +2 -0
  161. package/dist/server/host.js +11 -0
  162. package/dist/server/host.js.map +1 -0
  163. package/dist/server/host.test.d.ts +1 -0
  164. package/dist/server/host.test.js +13 -0
  165. package/dist/server/host.test.js.map +1 -0
  166. package/dist/server/index.d.ts +12 -2
  167. package/dist/server/index.js +10 -1
  168. package/dist/server/index.js.map +1 -1
  169. package/dist/server/inferUtilityTypes.js.map +1 -1
  170. package/dist/server/metric.js.map +1 -1
  171. package/dist/server/middleware.d.ts +16 -3
  172. package/dist/server/middleware.js.map +1 -1
  173. package/dist/server/middleware.test-d.js.map +1 -1
  174. package/dist/server/middleware.test.js.map +1 -1
  175. package/dist/server/requestOrigin.d.ts +7 -0
  176. package/dist/server/requestOrigin.js +25 -0
  177. package/dist/server/requestOrigin.js.map +1 -0
  178. package/dist/server/server.d.ts +292 -10
  179. package/dist/server/server.js +479 -184
  180. package/dist/server/server.js.map +1 -1
  181. package/dist/server/skills-integration.test.d.ts +1 -0
  182. package/dist/server/skills-integration.test.js +63 -0
  183. package/dist/server/skills-integration.test.js.map +1 -0
  184. package/dist/server/skills.d.ts +23 -0
  185. package/dist/server/skills.js +178 -0
  186. package/dist/server/skills.js.map +1 -0
  187. package/dist/server/skills.test.d.ts +1 -0
  188. package/dist/server/skills.test.js +210 -0
  189. package/dist/server/skills.test.js.map +1 -0
  190. package/dist/server/templateHelper.d.ts +0 -2
  191. package/dist/server/templateHelper.js +3 -22
  192. package/dist/server/templateHelper.js.map +1 -1
  193. package/dist/server/templates.generated.d.ts +4 -0
  194. package/dist/server/templates.generated.js +47 -0
  195. package/dist/server/templates.generated.js.map +1 -0
  196. package/dist/server/tunnel-proxy-router.d.ts +7 -0
  197. package/dist/server/tunnel-proxy-router.js +110 -0
  198. package/dist/server/tunnel-proxy-router.js.map +1 -0
  199. package/dist/server/tunnel-proxy-router.test.d.ts +1 -0
  200. package/dist/server/tunnel-proxy-router.test.js +229 -0
  201. package/dist/server/tunnel-proxy-router.test.js.map +1 -0
  202. package/dist/server/view-name.test-d.d.ts +1 -0
  203. package/dist/server/view-name.test-d.js +8 -0
  204. package/dist/server/view-name.test-d.js.map +1 -0
  205. package/dist/server/view-resource-resolution.test.d.ts +6 -0
  206. package/dist/server/view-resource-resolution.test.js +171 -0
  207. package/dist/server/view-resource-resolution.test.js.map +1 -0
  208. package/dist/server/viewsDevServer.js +4 -1
  209. package/dist/server/viewsDevServer.js.map +1 -1
  210. package/dist/test/utils.js.map +1 -1
  211. package/dist/test/view.test.js +109 -96
  212. package/dist/test/view.test.js.map +1 -1
  213. package/dist/version.js +1 -3
  214. package/dist/version.js.map +1 -1
  215. package/dist/web/bridges/adaptor.d.ts +51 -0
  216. package/dist/web/bridges/adaptor.js +341 -0
  217. package/dist/web/bridges/adaptor.js.map +1 -0
  218. package/dist/web/bridges/adaptor.test.d.ts +1 -0
  219. package/dist/web/bridges/adaptor.test.js +224 -0
  220. package/dist/web/bridges/adaptor.test.js.map +1 -0
  221. package/dist/web/bridges/apps-sdk/bridge.d.ts +6 -1
  222. package/dist/web/bridges/apps-sdk/bridge.js +15 -3
  223. package/dist/web/bridges/apps-sdk/bridge.js.map +1 -1
  224. package/dist/web/bridges/apps-sdk/index.d.ts +0 -1
  225. package/dist/web/bridges/apps-sdk/index.js +0 -1
  226. package/dist/web/bridges/apps-sdk/index.js.map +1 -1
  227. package/dist/web/bridges/apps-sdk/types.d.ts +8 -1
  228. package/dist/web/bridges/apps-sdk/types.js.map +1 -1
  229. package/dist/web/bridges/apps-sdk/use-apps-sdk-context.d.ts +11 -0
  230. package/dist/web/bridges/apps-sdk/use-apps-sdk-context.js +11 -0
  231. package/dist/web/bridges/apps-sdk/use-apps-sdk-context.js.map +1 -1
  232. package/dist/web/bridges/get-adaptor.d.ts +7 -0
  233. package/dist/web/bridges/get-adaptor.js +9 -7
  234. package/dist/web/bridges/get-adaptor.js.map +1 -1
  235. package/dist/web/bridges/get-adaptor.test.d.ts +1 -0
  236. package/dist/web/bridges/get-adaptor.test.js +32 -0
  237. package/dist/web/bridges/get-adaptor.test.js.map +1 -0
  238. package/dist/web/bridges/index.js.map +1 -1
  239. package/dist/web/bridges/mcp-app/bridge.d.ts +15 -2
  240. package/dist/web/bridges/mcp-app/bridge.js +73 -7
  241. package/dist/web/bridges/mcp-app/bridge.js.map +1 -1
  242. package/dist/web/bridges/mcp-app/bridge.test.d.ts +1 -0
  243. package/dist/web/bridges/mcp-app/bridge.test.js +17 -0
  244. package/dist/web/bridges/mcp-app/bridge.test.js.map +1 -0
  245. package/dist/web/bridges/mcp-app/index.d.ts +0 -1
  246. package/dist/web/bridges/mcp-app/index.js +0 -1
  247. package/dist/web/bridges/mcp-app/index.js.map +1 -1
  248. package/dist/web/bridges/mcp-app/types.d.ts +2 -0
  249. package/dist/web/bridges/mcp-app/types.js.map +1 -1
  250. package/dist/web/bridges/mcp-app/use-mcp-app-context.d.ts +12 -0
  251. package/dist/web/bridges/mcp-app/use-mcp-app-context.js +12 -0
  252. package/dist/web/bridges/mcp-app/use-mcp-app-context.js.map +1 -1
  253. package/dist/web/bridges/mcp-app/use-mcp-app-context.test.js.map +1 -1
  254. package/dist/web/bridges/mcp-app/view-tools.test.d.ts +1 -0
  255. package/dist/web/bridges/mcp-app/view-tools.test.js +143 -0
  256. package/dist/web/bridges/mcp-app/view-tools.test.js.map +1 -0
  257. package/dist/web/bridges/types.d.ts +108 -3
  258. package/dist/web/bridges/types.js +14 -1
  259. package/dist/web/bridges/types.js.map +1 -1
  260. package/dist/web/bridges/types.test.d.ts +1 -0
  261. package/dist/web/bridges/types.test.js +19 -0
  262. package/dist/web/bridges/types.test.js.map +1 -0
  263. package/dist/web/bridges/use-host-context.d.ts +5 -0
  264. package/dist/web/bridges/use-host-context.js +5 -0
  265. package/dist/web/bridges/use-host-context.js.map +1 -1
  266. package/dist/web/components/modal-provider.d.ts +1 -1
  267. package/dist/web/components/modal-provider.js +4 -3
  268. package/dist/web/components/modal-provider.js.map +1 -1
  269. package/dist/web/create-store.d.ts +26 -0
  270. package/dist/web/create-store.js +26 -0
  271. package/dist/web/create-store.js.map +1 -1
  272. package/dist/web/create-store.test.js +8 -5
  273. package/dist/web/create-store.test.js.map +1 -1
  274. package/dist/web/data-llm.d.ts +34 -1
  275. package/dist/web/data-llm.js +28 -0
  276. package/dist/web/data-llm.js.map +1 -1
  277. package/dist/web/data-llm.test.js +17 -5
  278. package/dist/web/data-llm.test.js.map +1 -1
  279. package/dist/web/generate-helpers.d.ts +2 -0
  280. package/dist/web/generate-helpers.js +2 -0
  281. package/dist/web/generate-helpers.js.map +1 -1
  282. package/dist/web/generate-helpers.test-d.js +4 -2
  283. package/dist/web/generate-helpers.test-d.js.map +1 -1
  284. package/dist/web/generate-helpers.test.js.map +1 -1
  285. package/dist/web/helpers/state.js.map +1 -1
  286. package/dist/web/helpers/state.test.js.map +1 -1
  287. package/dist/web/hooks/index.d.ts +5 -0
  288. package/dist/web/hooks/index.js +5 -0
  289. package/dist/web/hooks/index.js.map +1 -1
  290. package/dist/web/hooks/test/utils.d.ts +7 -2
  291. package/dist/web/hooks/test/utils.js +14 -3
  292. package/dist/web/hooks/test/utils.js.map +1 -1
  293. package/dist/web/hooks/use-call-tool.d.ts +45 -0
  294. package/dist/web/hooks/use-call-tool.js +28 -0
  295. package/dist/web/hooks/use-call-tool.js.map +1 -1
  296. package/dist/web/hooks/use-call-tool.test-d.js.map +1 -1
  297. package/dist/web/hooks/use-call-tool.test.js +62 -27
  298. package/dist/web/hooks/use-call-tool.test.js.map +1 -1
  299. package/dist/web/hooks/use-display-mode.d.ts +20 -0
  300. package/dist/web/hooks/use-display-mode.js +20 -0
  301. package/dist/web/hooks/use-display-mode.js.map +1 -1
  302. package/dist/web/hooks/use-display-mode.test-d.js.map +1 -1
  303. package/dist/web/hooks/use-display-mode.test.js +56 -20
  304. package/dist/web/hooks/use-display-mode.test.js.map +1 -1
  305. package/dist/web/hooks/use-download.d.ts +5 -0
  306. package/dist/web/hooks/use-download.js +8 -0
  307. package/dist/web/hooks/use-download.js.map +1 -0
  308. package/dist/web/hooks/use-download.test.d.ts +1 -0
  309. package/dist/web/hooks/use-download.test.js +103 -0
  310. package/dist/web/hooks/use-download.test.js.map +1 -0
  311. package/dist/web/hooks/use-files.d.ts +32 -0
  312. package/dist/web/hooks/use-files.js +32 -0
  313. package/dist/web/hooks/use-files.js.map +1 -1
  314. package/dist/web/hooks/use-files.test.js +10 -2
  315. package/dist/web/hooks/use-files.test.js.map +1 -1
  316. package/dist/web/hooks/use-host-info.d.ts +22 -0
  317. package/dist/web/hooks/use-host-info.js +30 -0
  318. package/dist/web/hooks/use-host-info.js.map +1 -0
  319. package/dist/web/hooks/use-host-info.test.d.ts +1 -0
  320. package/dist/web/hooks/use-host-info.test.js +59 -0
  321. package/dist/web/hooks/use-host-info.test.js.map +1 -0
  322. package/dist/web/hooks/use-layout.d.ts +2 -0
  323. package/dist/web/hooks/use-layout.js +2 -0
  324. package/dist/web/hooks/use-layout.js.map +1 -1
  325. package/dist/web/hooks/use-layout.test.js +59 -26
  326. package/dist/web/hooks/use-layout.test.js.map +1 -1
  327. package/dist/web/hooks/use-open-external.d.ts +17 -0
  328. package/dist/web/hooks/use-open-external.js +16 -0
  329. package/dist/web/hooks/use-open-external.js.map +1 -1
  330. package/dist/web/hooks/use-open-external.test.js +13 -3
  331. package/dist/web/hooks/use-open-external.test.js.map +1 -1
  332. package/dist/web/hooks/use-register-view-tool.d.ts +38 -0
  333. package/dist/web/hooks/use-register-view-tool.js +50 -0
  334. package/dist/web/hooks/use-register-view-tool.js.map +1 -0
  335. package/dist/web/hooks/use-request-close.d.ts +16 -0
  336. package/dist/web/hooks/use-request-close.js +21 -0
  337. package/dist/web/hooks/use-request-close.js.map +1 -0
  338. package/dist/web/hooks/use-request-close.test.d.ts +1 -0
  339. package/dist/web/hooks/use-request-close.test.js +47 -0
  340. package/dist/web/hooks/use-request-close.test.js.map +1 -0
  341. package/dist/web/hooks/use-request-modal.d.ts +16 -1
  342. package/dist/web/hooks/use-request-modal.js +16 -1
  343. package/dist/web/hooks/use-request-modal.js.map +1 -1
  344. package/dist/web/hooks/use-request-modal.test.js +10 -0
  345. package/dist/web/hooks/use-request-modal.test.js.map +1 -1
  346. package/dist/web/hooks/use-request-size.d.ts +20 -0
  347. package/dist/web/hooks/use-request-size.js +24 -0
  348. package/dist/web/hooks/use-request-size.js.map +1 -0
  349. package/dist/web/hooks/use-request-size.test.d.ts +1 -0
  350. package/dist/web/hooks/use-request-size.test.js +47 -0
  351. package/dist/web/hooks/use-request-size.test.js.map +1 -0
  352. package/dist/web/hooks/use-send-follow-up-message.d.ts +19 -1
  353. package/dist/web/hooks/use-send-follow-up-message.js +19 -2
  354. package/dist/web/hooks/use-send-follow-up-message.js.map +1 -1
  355. package/dist/web/hooks/use-set-open-in-app-url.d.ts +17 -0
  356. package/dist/web/hooks/use-set-open-in-app-url.js +17 -0
  357. package/dist/web/hooks/use-set-open-in-app-url.js.map +1 -1
  358. package/dist/web/hooks/use-set-open-in-app-url.test.js +28 -8
  359. package/dist/web/hooks/use-set-open-in-app-url.test.js.map +1 -1
  360. package/dist/web/hooks/use-tool-info.d.ts +53 -2
  361. package/dist/web/hooks/use-tool-info.js +30 -7
  362. package/dist/web/hooks/use-tool-info.js.map +1 -1
  363. package/dist/web/hooks/use-tool-info.test-d.js +11 -29
  364. package/dist/web/hooks/use-tool-info.test-d.js.map +1 -1
  365. package/dist/web/hooks/use-tool-info.test.js +42 -32
  366. package/dist/web/hooks/use-tool-info.test.js.map +1 -1
  367. package/dist/web/hooks/use-user.d.ts +2 -0
  368. package/dist/web/hooks/use-user.js +2 -0
  369. package/dist/web/hooks/use-user.js.map +1 -1
  370. package/dist/web/hooks/use-user.test.js +81 -35
  371. package/dist/web/hooks/use-user.test.js.map +1 -1
  372. package/dist/web/hooks/use-view-state.d.ts +21 -0
  373. package/dist/web/hooks/use-view-state.js +19 -9
  374. package/dist/web/hooks/use-view-state.js.map +1 -1
  375. package/dist/web/hooks/use-view-state.test.js +37 -2
  376. package/dist/web/hooks/use-view-state.test.js.map +1 -1
  377. package/dist/web/index.js.map +1 -1
  378. package/dist/web/mount-view.d.ts +19 -0
  379. package/dist/web/mount-view.js +19 -0
  380. package/dist/web/mount-view.js.map +1 -1
  381. package/dist/web/plugin/data-llm.test.js.map +1 -1
  382. package/dist/web/plugin/plugin.d.ts +34 -0
  383. package/dist/web/plugin/plugin.js +65 -17
  384. package/dist/web/plugin/plugin.js.map +1 -1
  385. package/dist/web/plugin/scan-views.d.ts +8 -0
  386. package/dist/web/plugin/scan-views.js +26 -8
  387. package/dist/web/plugin/scan-views.js.map +1 -1
  388. package/dist/web/plugin/scan-views.test.js +33 -1
  389. package/dist/web/plugin/scan-views.test.js.map +1 -1
  390. package/dist/web/plugin/transform-data-llm.js.map +1 -1
  391. package/dist/web/plugin/transform-data-llm.test.js.map +1 -1
  392. package/dist/web/plugin/validate-view.js.map +1 -1
  393. package/dist/web/plugin/validate-view.test.js.map +1 -1
  394. package/dist/web/proxy.js.map +1 -1
  395. package/dist/web/types.d.ts +4 -0
  396. package/dist/web/types.js.map +1 -1
  397. package/package.json +34 -24
  398. package/dist/server/templates/development.hbs +0 -12
  399. package/dist/server/templates/production.hbs +0 -6
  400. package/dist/web/bridges/apps-sdk/adaptor.d.ts +0 -24
  401. package/dist/web/bridges/apps-sdk/adaptor.js +0 -93
  402. package/dist/web/bridges/apps-sdk/adaptor.js.map +0 -1
  403. package/dist/web/bridges/mcp-app/adaptor.d.ts +0 -48
  404. package/dist/web/bridges/mcp-app/adaptor.js +0 -268
  405. package/dist/web/bridges/mcp-app/adaptor.js.map +0 -1
@@ -0,0 +1,64 @@
1
+ import { hostFromUserAgent } from "../host.js";
2
+ export function authToSecuritySchemes(auth) {
3
+ const oauth2 = {
4
+ type: "oauth2",
5
+ ...(auth.scopes?.length ? { scopes: auth.scopes } : {}),
6
+ };
7
+ return auth.allowsAnonymous ? [{ type: "noauth" }, oauth2] : [oauth2];
8
+ }
9
+ export function securitySchemesAllowAnonymous(schemes) {
10
+ return !!schemes?.some((scheme) => scheme.type === "noauth");
11
+ }
12
+ export function evaluateSecuritySchemes(schemes, authInfo) {
13
+ if (securitySchemesAllowAnonymous(schemes) && !authInfo) {
14
+ return undefined;
15
+ }
16
+ const oauth2 = (schemes ?? []).filter((scheme) => scheme.type === "oauth2");
17
+ const required = oauth2.length ? oauth2 : [{ type: "oauth2" }];
18
+ const scopes = [
19
+ ...new Set(required.flatMap((scheme) => scheme.scopes ?? [])),
20
+ ];
21
+ if (!authInfo) {
22
+ return {
23
+ error: "invalid_token",
24
+ description: "Sign in to use this tool.",
25
+ scopes,
26
+ };
27
+ }
28
+ const satisfied = required.some((scheme) => (scheme.scopes ?? []).every((scope) => authInfo.scopes.includes(scope)));
29
+ return satisfied
30
+ ? undefined
31
+ : {
32
+ error: "insufficient_scope",
33
+ description: "Missing required scope for this tool.",
34
+ scopes,
35
+ };
36
+ }
37
+ export function httpStatusForFailure(failure) {
38
+ return failure.error === "insufficient_scope" ? 403 : 401;
39
+ }
40
+ export function clientPrefersInBandChallenge(userAgent) {
41
+ return hostFromUserAgent(userAgent) === "openai";
42
+ }
43
+ export function wwwAuthenticateHeader(failure, resourceMetadataUrl) {
44
+ let header = `Bearer error="${failure.error}", error_description="${failure.description}"`;
45
+ if (failure.scopes.length) {
46
+ header += `, scope="${failure.scopes.join(" ")}"`;
47
+ }
48
+ if (resourceMetadataUrl) {
49
+ header += `, resource_metadata="${resourceMetadataUrl}"`;
50
+ }
51
+ return header;
52
+ }
53
+ export function inBandChallengeResult(failure, resourceMetadataUrl) {
54
+ return {
55
+ isError: true,
56
+ content: [{ type: "text", text: failure.description }],
57
+ _meta: {
58
+ "mcp/www_authenticate": [
59
+ wwwAuthenticateHeader(failure, resourceMetadataUrl),
60
+ ],
61
+ },
62
+ };
63
+ }
64
+ //# sourceMappingURL=security-schemes.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"security-schemes.js","sourceRoot":"","sources":["../../../src/server/auth/security-schemes.ts"],"names":[],"mappings":"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","sourcesContent":["import type { AuthInfo } from \"../auth.js\";\nimport { hostFromUserAgent } from \"../host.js\";\nimport type { SecurityScheme, ToolAuth } from \"../server.js\";\n\nexport function authToSecuritySchemes(auth: ToolAuth): SecurityScheme[] {\n const oauth2: SecurityScheme = {\n type: \"oauth2\",\n ...(auth.scopes?.length ? { scopes: auth.scopes } : {}),\n };\n return auth.allowsAnonymous ? [{ type: \"noauth\" }, oauth2] : [oauth2];\n}\n\nexport function securitySchemesAllowAnonymous(\n schemes: SecurityScheme[] | undefined,\n): boolean {\n return !!schemes?.some((scheme) => scheme.type === \"noauth\");\n}\n\nexport type SchemeFailure = {\n error: \"invalid_token\" | \"insufficient_scope\";\n description: string;\n scopes: string[];\n};\n\nexport function evaluateSecuritySchemes(\n schemes: SecurityScheme[] | undefined,\n authInfo: AuthInfo | undefined,\n): SchemeFailure | undefined {\n if (securitySchemesAllowAnonymous(schemes) && !authInfo) {\n return undefined;\n }\n const oauth2 = (schemes ?? []).filter((scheme) => scheme.type === \"oauth2\");\n const required = oauth2.length ? oauth2 : [{ type: \"oauth2\" as const }];\n const scopes = [\n ...new Set(required.flatMap((scheme) => scheme.scopes ?? [])),\n ];\n if (!authInfo) {\n return {\n error: \"invalid_token\",\n description: \"Sign in to use this tool.\",\n scopes,\n };\n }\n const satisfied = required.some((scheme) =>\n (scheme.scopes ?? []).every((scope) => authInfo.scopes.includes(scope)),\n );\n return satisfied\n ? undefined\n : {\n error: \"insufficient_scope\",\n description: \"Missing required scope for this tool.\",\n scopes,\n };\n}\n\nexport function httpStatusForFailure(failure: SchemeFailure): 401 | 403 {\n return failure.error === \"insufficient_scope\" ? 403 : 401;\n}\n\nexport function clientPrefersInBandChallenge(\n userAgent: string | undefined,\n): boolean {\n return hostFromUserAgent(userAgent) === \"openai\";\n}\n\nexport function wwwAuthenticateHeader(\n failure: SchemeFailure,\n resourceMetadataUrl?: string,\n): string {\n let header = `Bearer error=\"${failure.error}\", error_description=\"${failure.description}\"`;\n if (failure.scopes.length) {\n header += `, scope=\"${failure.scopes.join(\" \")}\"`;\n }\n if (resourceMetadataUrl) {\n header += `, resource_metadata=\"${resourceMetadataUrl}\"`;\n }\n return header;\n}\n\nexport function inBandChallengeResult(\n failure: SchemeFailure,\n resourceMetadataUrl?: string,\n) {\n return {\n isError: true,\n content: [{ type: \"text\" as const, text: failure.description }],\n _meta: {\n \"mcp/www_authenticate\": [\n wwwAuthenticateHeader(failure, resourceMetadataUrl),\n ],\n },\n };\n}\n"]}
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,99 @@
1
+ import { describe, expect, it } from "vitest";
2
+ import { authToSecuritySchemes, clientPrefersInBandChallenge, evaluateSecuritySchemes, securitySchemesAllowAnonymous, wwwAuthenticateHeader, } from "./security-schemes.js";
3
+ describe("clientPrefersInBandChallenge", () => {
4
+ it("detects ChatGPT / OpenAI user agents", () => {
5
+ expect(clientPrefersInBandChallenge("openai-mcp/1.0")).toBe(true);
6
+ expect(clientPrefersInBandChallenge("ChatGPT")).toBe(true);
7
+ expect(clientPrefersInBandChallenge("Claude-User/1.0")).toBe(false);
8
+ expect(clientPrefersInBandChallenge(undefined)).toBe(false);
9
+ });
10
+ });
11
+ describe("authToSecuritySchemes", () => {
12
+ it("maps the auth shorthand", () => {
13
+ expect(authToSecuritySchemes({ allowsAnonymous: true })).toEqual([
14
+ { type: "noauth" },
15
+ { type: "oauth2" },
16
+ ]);
17
+ expect(authToSecuritySchemes({})).toEqual([{ type: "oauth2" }]);
18
+ expect(authToSecuritySchemes({ scopes: ["checkout"] })).toEqual([
19
+ { type: "oauth2", scopes: ["checkout"] },
20
+ ]);
21
+ expect(authToSecuritySchemes({ allowsAnonymous: true, scopes: ["checkout"] })).toEqual([{ type: "noauth" }, { type: "oauth2", scopes: ["checkout"] }]);
22
+ });
23
+ });
24
+ const authInfo = (scopes) => ({
25
+ token: "t",
26
+ clientId: "c",
27
+ scopes,
28
+ });
29
+ describe("securitySchemesAllowAnonymous", () => {
30
+ it("is true only when a noauth scheme is present", () => {
31
+ expect(securitySchemesAllowAnonymous([{ type: "noauth" }])).toBe(true);
32
+ expect(securitySchemesAllowAnonymous([{ type: "noauth" }, { type: "oauth2" }])).toBe(true);
33
+ expect(securitySchemesAllowAnonymous([{ type: "oauth2" }])).toBe(false);
34
+ expect(securitySchemesAllowAnonymous(undefined)).toBe(false);
35
+ });
36
+ });
37
+ describe("evaluateSecuritySchemes", () => {
38
+ it("lets anonymous callers through a noauth tool", () => {
39
+ const schemes = [{ type: "noauth" }, { type: "oauth2" }];
40
+ expect(evaluateSecuritySchemes(schemes, undefined)).toBeUndefined();
41
+ });
42
+ it("enforces oauth2 scopes on a public tool once a token is present", () => {
43
+ const schemes = [
44
+ { type: "noauth" },
45
+ { type: "oauth2", scopes: ["checkout"] },
46
+ ];
47
+ expect(evaluateSecuritySchemes(schemes, undefined)).toBeUndefined();
48
+ expect(evaluateSecuritySchemes(schemes, authInfo(["openid"]))?.error).toBe("insufficient_scope");
49
+ expect(evaluateSecuritySchemes(schemes, authInfo(["checkout"]))).toBeUndefined();
50
+ });
51
+ it("fails an oauth2-only tool with no token (invalid_token / 401)", () => {
52
+ expect(evaluateSecuritySchemes([{ type: "oauth2" }], undefined)?.error).toBe("invalid_token");
53
+ });
54
+ it("fails when the token is missing a required scope (insufficient_scope / 403)", () => {
55
+ const schemes = [
56
+ { type: "oauth2", scopes: ["checkout"] },
57
+ ];
58
+ expect(evaluateSecuritySchemes(schemes, authInfo(["openid"]))?.error).toBe("insufficient_scope");
59
+ });
60
+ it("passes when the token carries every required scope", () => {
61
+ const schemes = [
62
+ { type: "oauth2", scopes: ["checkout"] },
63
+ ];
64
+ expect(evaluateSecuritySchemes(schemes, authInfo(["openid", "checkout"]))).toBeUndefined();
65
+ });
66
+ it("treats an undeclared tool as auth-required, satisfied by any valid token", () => {
67
+ expect(evaluateSecuritySchemes(undefined, undefined)?.error).toBe("invalid_token");
68
+ expect(evaluateSecuritySchemes(undefined, authInfo([]))).toBeUndefined();
69
+ });
70
+ it("carries the tool's required scopes on the failure", () => {
71
+ const schemes = [
72
+ { type: "oauth2", scopes: ["checkout"] },
73
+ ];
74
+ expect(evaluateSecuritySchemes(schemes, undefined)?.scopes).toEqual([
75
+ "checkout",
76
+ ]);
77
+ expect(evaluateSecuritySchemes(schemes, authInfo(["openid"]))?.scopes).toEqual(["checkout"]);
78
+ });
79
+ });
80
+ describe("wwwAuthenticateHeader", () => {
81
+ it("names the required scopes so the client can step up", () => {
82
+ const header = wwwAuthenticateHeader({
83
+ error: "insufficient_scope",
84
+ description: "Missing required scope for this tool.",
85
+ scopes: ["checkout"],
86
+ });
87
+ expect(header).toContain('error="insufficient_scope"');
88
+ expect(header).toContain('scope="checkout"');
89
+ });
90
+ it("omits the scope parameter when there are none", () => {
91
+ const header = wwwAuthenticateHeader({
92
+ error: "invalid_token",
93
+ description: "Sign in to use this tool.",
94
+ scopes: [],
95
+ });
96
+ expect(header).not.toContain("scope=");
97
+ });
98
+ });
99
+ //# sourceMappingURL=security-schemes.test.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"security-schemes.test.js","sourceRoot":"","sources":["../../../src/server/auth/security-schemes.test.ts"],"names":[],"mappings":"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","sourcesContent":["import { describe, expect, it } from \"vitest\";\nimport type { AuthInfo } from \"../auth.js\";\nimport type { SecurityScheme } from \"../server.js\";\nimport {\n authToSecuritySchemes,\n clientPrefersInBandChallenge,\n evaluateSecuritySchemes,\n securitySchemesAllowAnonymous,\n wwwAuthenticateHeader,\n} from \"./security-schemes.js\";\n\ndescribe(\"clientPrefersInBandChallenge\", () => {\n it(\"detects ChatGPT / OpenAI user agents\", () => {\n expect(clientPrefersInBandChallenge(\"openai-mcp/1.0\")).toBe(true);\n expect(clientPrefersInBandChallenge(\"ChatGPT\")).toBe(true);\n expect(clientPrefersInBandChallenge(\"Claude-User/1.0\")).toBe(false);\n expect(clientPrefersInBandChallenge(undefined)).toBe(false);\n });\n});\n\ndescribe(\"authToSecuritySchemes\", () => {\n it(\"maps the auth shorthand\", () => {\n expect(authToSecuritySchemes({ allowsAnonymous: true })).toEqual([\n { type: \"noauth\" },\n { type: \"oauth2\" },\n ]);\n expect(authToSecuritySchemes({})).toEqual([{ type: \"oauth2\" }]);\n expect(authToSecuritySchemes({ scopes: [\"checkout\"] })).toEqual([\n { type: \"oauth2\", scopes: [\"checkout\"] },\n ]);\n expect(\n authToSecuritySchemes({ allowsAnonymous: true, scopes: [\"checkout\"] }),\n ).toEqual([{ type: \"noauth\" }, { type: \"oauth2\", scopes: [\"checkout\"] }]);\n });\n});\n\nconst authInfo = (scopes: string[]): AuthInfo => ({\n token: \"t\",\n clientId: \"c\",\n scopes,\n});\n\ndescribe(\"securitySchemesAllowAnonymous\", () => {\n it(\"is true only when a noauth scheme is present\", () => {\n expect(securitySchemesAllowAnonymous([{ type: \"noauth\" }])).toBe(true);\n expect(\n securitySchemesAllowAnonymous([{ type: \"noauth\" }, { type: \"oauth2\" }]),\n ).toBe(true);\n expect(securitySchemesAllowAnonymous([{ type: \"oauth2\" }])).toBe(false);\n expect(securitySchemesAllowAnonymous(undefined)).toBe(false);\n });\n});\n\ndescribe(\"evaluateSecuritySchemes\", () => {\n it(\"lets anonymous callers through a noauth tool\", () => {\n const schemes: SecurityScheme[] = [{ type: \"noauth\" }, { type: \"oauth2\" }];\n expect(evaluateSecuritySchemes(schemes, undefined)).toBeUndefined();\n });\n\n it(\"enforces oauth2 scopes on a public tool once a token is present\", () => {\n const schemes: SecurityScheme[] = [\n { type: \"noauth\" },\n { type: \"oauth2\", scopes: [\"checkout\"] },\n ];\n expect(evaluateSecuritySchemes(schemes, undefined)).toBeUndefined();\n expect(evaluateSecuritySchemes(schemes, authInfo([\"openid\"]))?.error).toBe(\n \"insufficient_scope\",\n );\n expect(\n evaluateSecuritySchemes(schemes, authInfo([\"checkout\"])),\n ).toBeUndefined();\n });\n\n it(\"fails an oauth2-only tool with no token (invalid_token / 401)\", () => {\n expect(\n evaluateSecuritySchemes([{ type: \"oauth2\" }], undefined)?.error,\n ).toBe(\"invalid_token\");\n });\n\n it(\"fails when the token is missing a required scope (insufficient_scope / 403)\", () => {\n const schemes: SecurityScheme[] = [\n { type: \"oauth2\", scopes: [\"checkout\"] },\n ];\n expect(evaluateSecuritySchemes(schemes, authInfo([\"openid\"]))?.error).toBe(\n \"insufficient_scope\",\n );\n });\n\n it(\"passes when the token carries every required scope\", () => {\n const schemes: SecurityScheme[] = [\n { type: \"oauth2\", scopes: [\"checkout\"] },\n ];\n expect(\n evaluateSecuritySchemes(schemes, authInfo([\"openid\", \"checkout\"])),\n ).toBeUndefined();\n });\n\n it(\"treats an undeclared tool as auth-required, satisfied by any valid token\", () => {\n expect(evaluateSecuritySchemes(undefined, undefined)?.error).toBe(\n \"invalid_token\",\n );\n expect(evaluateSecuritySchemes(undefined, authInfo([]))).toBeUndefined();\n });\n\n it(\"carries the tool's required scopes on the failure\", () => {\n const schemes: SecurityScheme[] = [\n { type: \"oauth2\", scopes: [\"checkout\"] },\n ];\n expect(evaluateSecuritySchemes(schemes, undefined)?.scopes).toEqual([\n \"checkout\",\n ]);\n expect(\n evaluateSecuritySchemes(schemes, authInfo([\"openid\"]))?.scopes,\n ).toEqual([\"checkout\"]);\n });\n});\n\ndescribe(\"wwwAuthenticateHeader\", () => {\n it(\"names the required scopes so the client can step up\", () => {\n const header = wwwAuthenticateHeader({\n error: \"insufficient_scope\",\n description: \"Missing required scope for this tool.\",\n scopes: [\"checkout\"],\n });\n expect(header).toContain('error=\"insufficient_scope\"');\n expect(header).toContain('scope=\"checkout\"');\n });\n\n it(\"omits the scope parameter when there are none\", () => {\n const header = wwwAuthenticateHeader({\n error: \"invalid_token\",\n description: \"Sign in to use this tool.\",\n scopes: [],\n });\n expect(header).not.toContain(\"scope=\");\n });\n});\n"]}
@@ -0,0 +1,6 @@
1
+ import type { Express } from "express";
2
+ import type { SecurityScheme } from "../server.js";
3
+ import type { OAuthConfig } from "./index.js";
4
+ export type ResourceMetadataUrlResolver = (getHeader: (key: string) => string | undefined) => string;
5
+ /** Mounts the well-known OAuth metadata and bearer auth on `/mcp`. */
6
+ export declare function setupOAuth(app: Express, config: OAuthConfig, schemesByTool: Map<string, SecurityScheme[] | undefined>): ResourceMetadataUrlResolver;
@@ -0,0 +1,92 @@
1
+ import { getOAuthProtectedResourceMetadataUrl, mcpAuthMetadataRouter, } from "@modelcontextprotocol/sdk/server/auth/router.js";
2
+ import cors from "cors";
3
+ import { optionalBearerAuth, requireBearerAuth } from "../auth.js";
4
+ import { resolveServerOrigin } from "../requestOrigin.js";
5
+ import { clientPrefersInBandChallenge, evaluateSecuritySchemes, httpStatusForFailure, inBandChallengeResult, securitySchemesAllowAnonymous, wwwAuthenticateHeader, } from "./security-schemes.js";
6
+ import { createJwksVerifier } from "./verify.js";
7
+ /** Mounts the well-known OAuth metadata and bearer auth on `/mcp`. */
8
+ export function setupOAuth(app, config, schemesByTool) {
9
+ if (!config.verify?.issuer) {
10
+ throw new Error("oauth.verify requires an `issuer`");
11
+ }
12
+ const acceptsAnonymous = () => [...schemesByTool.values()].some(securitySchemesAllowAnonymous);
13
+ const verifier = createJwksVerifier(config.verify);
14
+ const bearer = (options) => {
15
+ const required = requireBearerAuth(options);
16
+ const optional = optionalBearerAuth(options);
17
+ return (req, res, next) => (acceptsAnonymous() ? optional : required)(req, res, next);
18
+ };
19
+ let resourceMetadataUrl;
20
+ // baseUrl known at boot: bake the resource URLs once, no Host-header trust.
21
+ if (config.baseUrl !== undefined) {
22
+ let baseUrl;
23
+ try {
24
+ baseUrl = new URL(config.baseUrl);
25
+ }
26
+ catch {
27
+ throw new Error(`oauth.baseUrl must be a valid absolute URL, got: ${JSON.stringify(config.baseUrl)}`);
28
+ }
29
+ app.use(mcpAuthMetadataRouter({
30
+ oauthMetadata: config.oauthMetadata,
31
+ resourceServerUrl: baseUrl,
32
+ scopesSupported: config.scopesSupported,
33
+ }));
34
+ const url = getOAuthProtectedResourceMetadataUrl(baseUrl);
35
+ resourceMetadataUrl = () => url;
36
+ }
37
+ else {
38
+ // No baseUrl: resolve the resource origin per request from forwarded headers
39
+ // (same precedence the framework uses for view serverUrl). Origin headers are
40
+ // pathless, so the PRM path stays at root, matching the SDK's static layout.
41
+ const resolveOrigin = (getHeader) => new URL(resolveServerOrigin(getHeader));
42
+ app.use("/.well-known/oauth-authorization-server", cors(), (_req, res) => void res.json(config.oauthMetadata));
43
+ app.use("/.well-known/oauth-protected-resource", cors(), (req, res) => {
44
+ res.json({
45
+ resource: resolveOrigin((key) => req.get(key)).href,
46
+ authorization_servers: [config.oauthMetadata.issuer],
47
+ scopes_supported: config.scopesSupported,
48
+ });
49
+ });
50
+ resourceMetadataUrl = (getHeader) => getOAuthProtectedResourceMetadataUrl(resolveOrigin(getHeader));
51
+ }
52
+ app.use("/mcp", (req, res, next) => bearer({
53
+ verifier,
54
+ requiredScopes: config.requiredScopes,
55
+ resourceMetadataUrl: resourceMetadataUrl((key) => req.get(key)),
56
+ })(req, res, next));
57
+ app.use("/mcp", (req, res, next) => {
58
+ const body = req.body;
59
+ const calls = Array.isArray(body) ? body : [body];
60
+ const auth = req.auth;
61
+ let failure;
62
+ for (const call of calls) {
63
+ const tool = call?.params?.name;
64
+ if (call?.method === "tools/call" && tool && schemesByTool.has(tool)) {
65
+ failure = evaluateSecuritySchemes(schemesByTool.get(tool), auth);
66
+ if (failure) {
67
+ break;
68
+ }
69
+ }
70
+ }
71
+ if (!failure) {
72
+ return next();
73
+ }
74
+ const url = resourceMetadataUrl((key) => req.get(key));
75
+ if (!Array.isArray(body) &&
76
+ clientPrefersInBandChallenge(req.get("user-agent"))) {
77
+ res.json({
78
+ jsonrpc: "2.0",
79
+ id: body?.id ?? null,
80
+ result: inBandChallengeResult(failure, url),
81
+ });
82
+ return;
83
+ }
84
+ res.set("WWW-Authenticate", wwwAuthenticateHeader(failure, url));
85
+ res.status(httpStatusForFailure(failure)).json({
86
+ error: failure.error,
87
+ error_description: failure.description,
88
+ });
89
+ });
90
+ return resourceMetadataUrl;
91
+ }
92
+ //# sourceMappingURL=setup.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"setup.js","sourceRoot":"","sources":["../../../src/server/auth/setup.ts"],"names":[],"mappings":"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","sourcesContent":["import type { BearerAuthMiddlewareOptions } from \"@modelcontextprotocol/sdk/server/auth/middleware/bearerAuth.js\";\nimport {\n getOAuthProtectedResourceMetadataUrl,\n mcpAuthMetadataRouter,\n} from \"@modelcontextprotocol/sdk/server/auth/router.js\";\nimport cors from \"cors\";\nimport type { Express, Request, RequestHandler } from \"express\";\nimport type { AuthInfo } from \"../auth.js\";\nimport { optionalBearerAuth, requireBearerAuth } from \"../auth.js\";\nimport { resolveServerOrigin } from \"../requestOrigin.js\";\nimport type { SecurityScheme } from \"../server.js\";\nimport type { OAuthConfig } from \"./index.js\";\nimport {\n clientPrefersInBandChallenge,\n evaluateSecuritySchemes,\n httpStatusForFailure,\n inBandChallengeResult,\n type SchemeFailure,\n securitySchemesAllowAnonymous,\n wwwAuthenticateHeader,\n} from \"./security-schemes.js\";\nimport { createJwksVerifier } from \"./verify.js\";\n\nexport type ResourceMetadataUrlResolver = (\n getHeader: (key: string) => string | undefined,\n) => string;\n\n/** Mounts the well-known OAuth metadata and bearer auth on `/mcp`. */\nexport function setupOAuth(\n app: Express,\n config: OAuthConfig,\n schemesByTool: Map<string, SecurityScheme[] | undefined>,\n): ResourceMetadataUrlResolver {\n if (!config.verify?.issuer) {\n throw new Error(\"oauth.verify requires an `issuer`\");\n }\n\n const acceptsAnonymous = () =>\n [...schemesByTool.values()].some(securitySchemesAllowAnonymous);\n const verifier = createJwksVerifier(config.verify);\n const bearer = (options: BearerAuthMiddlewareOptions): RequestHandler => {\n const required = requireBearerAuth(options);\n const optional = optionalBearerAuth(options);\n return (req, res, next) =>\n (acceptsAnonymous() ? optional : required)(req, res, next);\n };\n\n let resourceMetadataUrl: ResourceMetadataUrlResolver;\n\n // baseUrl known at boot: bake the resource URLs once, no Host-header trust.\n if (config.baseUrl !== undefined) {\n let baseUrl: URL;\n try {\n baseUrl = new URL(config.baseUrl);\n } catch {\n throw new Error(\n `oauth.baseUrl must be a valid absolute URL, got: ${JSON.stringify(\n config.baseUrl,\n )}`,\n );\n }\n app.use(\n mcpAuthMetadataRouter({\n oauthMetadata: config.oauthMetadata,\n resourceServerUrl: baseUrl,\n scopesSupported: config.scopesSupported,\n }),\n );\n const url = getOAuthProtectedResourceMetadataUrl(baseUrl);\n resourceMetadataUrl = () => url;\n } else {\n // No baseUrl: resolve the resource origin per request from forwarded headers\n // (same precedence the framework uses for view serverUrl). Origin headers are\n // pathless, so the PRM path stays at root, matching the SDK's static layout.\n const resolveOrigin = (getHeader: (key: string) => string | undefined) =>\n new URL(resolveServerOrigin(getHeader));\n app.use(\n \"/.well-known/oauth-authorization-server\",\n cors(),\n (_req, res) => void res.json(config.oauthMetadata),\n );\n app.use(\"/.well-known/oauth-protected-resource\", cors(), (req, res) => {\n res.json({\n resource: resolveOrigin((key) => req.get(key)).href,\n authorization_servers: [config.oauthMetadata.issuer],\n scopes_supported: config.scopesSupported,\n });\n });\n resourceMetadataUrl = (getHeader) =>\n getOAuthProtectedResourceMetadataUrl(resolveOrigin(getHeader));\n }\n\n app.use(\"/mcp\", (req, res, next) =>\n bearer({\n verifier,\n requiredScopes: config.requiredScopes,\n resourceMetadataUrl: resourceMetadataUrl((key) => req.get(key)),\n })(req, res, next),\n );\n\n app.use(\"/mcp\", (req, res, next) => {\n type Call = {\n id?: string | number | null;\n method?: string;\n params?: { name?: string };\n };\n const body = req.body as Call | Call[] | undefined;\n const calls = Array.isArray(body) ? body : [body];\n const auth = (req as Request & { auth?: AuthInfo }).auth;\n let failure: SchemeFailure | undefined;\n for (const call of calls) {\n const tool = call?.params?.name;\n if (call?.method === \"tools/call\" && tool && schemesByTool.has(tool)) {\n failure = evaluateSecuritySchemes(schemesByTool.get(tool), auth);\n if (failure) {\n break;\n }\n }\n }\n if (!failure) {\n return next();\n }\n const url = resourceMetadataUrl((key) => req.get(key));\n if (\n !Array.isArray(body) &&\n clientPrefersInBandChallenge(req.get(\"user-agent\"))\n ) {\n res.json({\n jsonrpc: \"2.0\",\n id: body?.id ?? null,\n result: inBandChallengeResult(failure, url),\n });\n return;\n }\n res.set(\"WWW-Authenticate\", wwwAuthenticateHeader(failure, url));\n res.status(httpStatusForFailure(failure)).json({\n error: failure.error,\n error_description: failure.description,\n });\n });\n\n return resourceMetadataUrl;\n}\n"]}
@@ -0,0 +1 @@
1
+ export {};