@frontmcp/sdk 0.6.2 → 0.7.1

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 (798) hide show
  1. package/adapter/adapter.instance.d.ts +3 -1
  2. package/adapter/adapter.instance.d.ts.map +1 -0
  3. package/adapter/adapter.regsitry.d.ts +1 -0
  4. package/adapter/adapter.regsitry.d.ts.map +1 -0
  5. package/adapter/adapter.utils.d.ts +3 -1
  6. package/adapter/adapter.utils.d.ts.map +1 -0
  7. package/agent/adapters/adapter.factory.d.ts +105 -0
  8. package/agent/adapters/adapter.factory.d.ts.map +1 -0
  9. package/agent/adapters/base.adapter.d.ts +116 -0
  10. package/agent/adapters/base.adapter.d.ts.map +1 -0
  11. package/agent/adapters/index.d.ts +47 -0
  12. package/agent/adapters/index.d.ts.map +1 -0
  13. package/agent/adapters/langchain.adapter.d.ts +178 -0
  14. package/agent/adapters/langchain.adapter.d.ts.map +1 -0
  15. package/agent/adapters/providers/index.d.ts +36 -0
  16. package/agent/adapters/providers/index.d.ts.map +1 -0
  17. package/agent/adapters/providers/types.d.ts +15 -0
  18. package/agent/adapters/providers/types.d.ts.map +1 -0
  19. package/agent/agent-execution-loop.d.ts +209 -0
  20. package/agent/agent-execution-loop.d.ts.map +1 -0
  21. package/agent/agent.events.d.ts +149 -0
  22. package/agent/agent.events.d.ts.map +1 -0
  23. package/agent/agent.instance.d.ts +201 -0
  24. package/agent/agent.instance.d.ts.map +1 -0
  25. package/agent/agent.registry.d.ts +137 -0
  26. package/agent/agent.registry.d.ts.map +1 -0
  27. package/agent/agent.scope.d.ts +333 -0
  28. package/agent/agent.scope.d.ts.map +1 -0
  29. package/agent/agent.utils.d.ts +72 -0
  30. package/agent/agent.utils.d.ts.map +1 -0
  31. package/agent/flows/call-agent.flow.d.ts +306 -0
  32. package/agent/flows/call-agent.flow.d.ts.map +1 -0
  33. package/agent/flows/index.d.ts +2 -0
  34. package/agent/flows/index.d.ts.map +1 -0
  35. package/agent/hooks/agent.hooks.d.ts +52 -0
  36. package/agent/hooks/agent.hooks.d.ts.map +1 -0
  37. package/agent/hooks/index.d.ts +2 -0
  38. package/agent/hooks/index.d.ts.map +1 -0
  39. package/agent/index.d.ts +51 -0
  40. package/agent/index.d.ts.map +1 -0
  41. package/app/app.registry.d.ts +1 -0
  42. package/app/app.registry.d.ts.map +1 -0
  43. package/app/app.utils.d.ts +3 -1
  44. package/app/app.utils.d.ts.map +1 -0
  45. package/app/instances/app.local.instance.d.ts +4 -0
  46. package/app/instances/app.local.instance.d.ts.map +1 -0
  47. package/app/instances/app.remote.instance.d.ts +98 -0
  48. package/app/instances/app.remote.instance.d.ts.map +1 -0
  49. package/app/instances/index.d.ts +1 -0
  50. package/app/instances/index.d.ts.map +1 -0
  51. package/auth/auth.registry.d.ts +1 -0
  52. package/auth/auth.registry.d.ts.map +1 -0
  53. package/auth/auth.utils.d.ts +3 -1
  54. package/auth/auth.utils.d.ts.map +1 -0
  55. package/auth/authorization/authorization.class.d.ts +1 -0
  56. package/auth/authorization/authorization.class.d.ts.map +1 -0
  57. package/auth/authorization/authorization.types.d.ts +1 -0
  58. package/auth/authorization/authorization.types.d.ts.map +1 -0
  59. package/auth/authorization/index.d.ts +1 -0
  60. package/auth/authorization/index.d.ts.map +1 -0
  61. package/auth/authorization/orchestrated.authorization.d.ts +1 -0
  62. package/auth/authorization/orchestrated.authorization.d.ts.map +1 -0
  63. package/auth/authorization/public.authorization.d.ts +1 -0
  64. package/auth/authorization/public.authorization.d.ts.map +1 -0
  65. package/auth/authorization/transparent.authorization.d.ts +1 -0
  66. package/auth/authorization/transparent.authorization.d.ts.map +1 -0
  67. package/auth/consent/consent.types.d.ts +1 -0
  68. package/auth/consent/consent.types.d.ts.map +1 -0
  69. package/auth/consent/index.d.ts +1 -0
  70. package/auth/consent/index.d.ts.map +1 -0
  71. package/auth/detection/auth-provider-detection.d.ts +1 -0
  72. package/auth/detection/auth-provider-detection.d.ts.map +1 -0
  73. package/auth/detection/index.d.ts +1 -0
  74. package/auth/detection/index.d.ts.map +1 -0
  75. package/auth/flows/auth.verify.flow.d.ts +8 -2
  76. package/auth/flows/auth.verify.flow.d.ts.map +1 -0
  77. package/auth/flows/oauth.authorize.flow.d.ts +1 -0
  78. package/auth/flows/oauth.authorize.flow.d.ts.map +1 -0
  79. package/auth/flows/oauth.callback.flow.d.ts +1 -0
  80. package/auth/flows/oauth.callback.flow.d.ts.map +1 -0
  81. package/auth/flows/oauth.register.flow.d.ts +4 -3
  82. package/auth/flows/oauth.register.flow.d.ts.map +1 -0
  83. package/auth/flows/oauth.token.flow.d.ts +1 -0
  84. package/auth/flows/oauth.token.flow.d.ts.map +1 -0
  85. package/auth/flows/session.verify.flow.d.ts +12 -1
  86. package/auth/flows/session.verify.flow.d.ts.map +1 -0
  87. package/auth/flows/well-known.jwks.flow.d.ts +1 -0
  88. package/auth/flows/well-known.jwks.flow.d.ts.map +1 -0
  89. package/auth/flows/well-known.oauth-authorization-server.flow.d.ts +1 -0
  90. package/auth/flows/well-known.oauth-authorization-server.flow.d.ts.map +1 -0
  91. package/auth/flows/well-known.prm.flow.d.ts +1 -0
  92. package/auth/flows/well-known.prm.flow.d.ts.map +1 -0
  93. package/auth/instances/instance.local-primary-auth.d.ts +1 -0
  94. package/auth/instances/instance.local-primary-auth.d.ts.map +1 -0
  95. package/auth/instances/instance.remote-primary-auth.d.ts +1 -0
  96. package/auth/instances/instance.remote-primary-auth.d.ts.map +1 -0
  97. package/auth/jwks/dev-key-persistence.d.ts +1 -0
  98. package/auth/jwks/dev-key-persistence.d.ts.map +1 -0
  99. package/auth/jwks/index.d.ts +1 -0
  100. package/auth/jwks/index.d.ts.map +1 -0
  101. package/auth/jwks/jwks.service.d.ts +16 -2
  102. package/auth/jwks/jwks.service.d.ts.map +1 -0
  103. package/auth/jwks/jwks.types.d.ts +1 -0
  104. package/auth/jwks/jwks.types.d.ts.map +1 -0
  105. package/auth/jwks/jwks.utils.d.ts +1 -0
  106. package/auth/jwks/jwks.utils.d.ts.map +1 -0
  107. package/auth/machine-id.d.ts +1 -0
  108. package/auth/machine-id.d.ts.map +1 -0
  109. package/auth/oauth/flows/oauth.authorize.flow.d.ts +1 -0
  110. package/auth/oauth/flows/oauth.authorize.flow.d.ts.map +1 -0
  111. package/auth/oauth/flows/oauth.device-authorization.flow.d.ts +1 -0
  112. package/auth/oauth/flows/oauth.device-authorization.flow.d.ts.map +1 -0
  113. package/auth/oauth/flows/oauth.introspect.flow.d.ts +1 -0
  114. package/auth/oauth/flows/oauth.introspect.flow.d.ts.map +1 -0
  115. package/auth/oauth/flows/oauth.par.flow.d.ts +1 -0
  116. package/auth/oauth/flows/oauth.par.flow.d.ts.map +1 -0
  117. package/auth/oauth/flows/oauth.revoke.flow.d.ts +1 -0
  118. package/auth/oauth/flows/oauth.revoke.flow.d.ts.map +1 -0
  119. package/auth/oauth/flows/oauth.token.flow.d.ts +1 -0
  120. package/auth/oauth/flows/oauth.token.flow.d.ts.map +1 -0
  121. package/auth/oauth/flows/oauth.userinfo.flow.d.ts +1 -0
  122. package/auth/oauth/flows/oauth.userinfo.flow.d.ts.map +1 -0
  123. package/auth/oauth/flows/oidc.logout.flow.d.ts +1 -0
  124. package/auth/oauth/flows/oidc.logout.flow.d.ts.map +1 -0
  125. package/auth/session/authorization-vault.d.ts +5 -4
  126. package/auth/session/authorization-vault.d.ts.map +1 -0
  127. package/auth/session/authorization.store.d.ts +1 -0
  128. package/auth/session/authorization.store.d.ts.map +1 -0
  129. package/auth/session/encrypted-authorization-vault.d.ts +1 -0
  130. package/auth/session/encrypted-authorization-vault.d.ts.map +1 -0
  131. package/auth/session/index.d.ts +5 -2
  132. package/auth/session/index.d.ts.map +1 -0
  133. package/auth/session/record/session.base.d.ts +1 -0
  134. package/auth/session/record/session.base.d.ts.map +1 -0
  135. package/auth/session/record/session.stateful.d.ts +1 -0
  136. package/auth/session/record/session.stateful.d.ts.map +1 -0
  137. package/auth/session/record/session.stateless.d.ts +1 -0
  138. package/auth/session/record/session.stateless.d.ts.map +1 -0
  139. package/auth/session/record/session.transparent.d.ts +1 -0
  140. package/auth/session/record/session.transparent.d.ts.map +1 -0
  141. package/auth/session/redis-session.store.d.ts +27 -3
  142. package/auth/session/redis-session.store.d.ts.map +1 -0
  143. package/auth/session/session-crypto.d.ts +87 -0
  144. package/auth/session/session-crypto.d.ts.map +1 -0
  145. package/auth/session/session-rate-limiter.d.ts +114 -0
  146. package/auth/session/session-rate-limiter.d.ts.map +1 -0
  147. package/auth/session/session.crypto.d.ts +1 -0
  148. package/auth/session/session.crypto.d.ts.map +1 -0
  149. package/auth/session/session.schema.d.ts +1 -0
  150. package/auth/session/session.schema.d.ts.map +1 -0
  151. package/auth/session/session.service.d.ts +1 -0
  152. package/auth/session/session.service.d.ts.map +1 -0
  153. package/auth/session/session.transport.d.ts +1 -0
  154. package/auth/session/session.transport.d.ts.map +1 -0
  155. package/auth/session/session.types.d.ts +1 -0
  156. package/auth/session/session.types.d.ts.map +1 -0
  157. package/auth/session/token.refresh.d.ts +1 -0
  158. package/auth/session/token.refresh.d.ts.map +1 -0
  159. package/auth/session/token.store.d.ts +3 -2
  160. package/auth/session/token.store.d.ts.map +1 -0
  161. package/auth/session/token.vault.d.ts +1 -0
  162. package/auth/session/token.vault.d.ts.map +1 -0
  163. package/auth/session/transport-session.manager.d.ts +1 -0
  164. package/auth/session/transport-session.manager.d.ts.map +1 -0
  165. package/auth/session/transport-session.types.d.ts +60 -42
  166. package/auth/session/transport-session.types.d.ts.map +1 -0
  167. package/auth/session/utils/auth-token.utils.d.ts +1 -0
  168. package/auth/session/utils/auth-token.utils.d.ts.map +1 -0
  169. package/auth/session/utils/session-id.utils.d.ts +1 -0
  170. package/auth/session/utils/session-id.utils.d.ts.map +1 -0
  171. package/auth/session/utils/tiny-ttl-cache.d.ts +1 -0
  172. package/auth/session/utils/tiny-ttl-cache.d.ts.map +1 -0
  173. package/auth/session/vault-encryption.d.ts +1 -0
  174. package/auth/session/vault-encryption.d.ts.map +1 -0
  175. package/auth/session/vercel-kv-session.store.d.ts +23 -2
  176. package/auth/session/vercel-kv-session.store.d.ts.map +1 -0
  177. package/auth/ui/base-layout.d.ts +1 -0
  178. package/auth/ui/base-layout.d.ts.map +1 -0
  179. package/auth/ui/index.d.ts +1 -0
  180. package/auth/ui/index.d.ts.map +1 -0
  181. package/auth/ui/templates.d.ts +1 -0
  182. package/auth/ui/templates.d.ts.map +1 -0
  183. package/auth/utils/audience.validator.d.ts +1 -0
  184. package/auth/utils/audience.validator.d.ts.map +1 -0
  185. package/auth/utils/index.d.ts +1 -0
  186. package/auth/utils/index.d.ts.map +1 -0
  187. package/auth/utils/www-authenticate.utils.d.ts +1 -0
  188. package/auth/utils/www-authenticate.utils.d.ts.map +1 -0
  189. package/common/common.schema.d.ts +1 -0
  190. package/common/common.schema.d.ts.map +1 -0
  191. package/common/decorators/adapter.decorator.d.ts +1 -0
  192. package/common/decorators/adapter.decorator.d.ts.map +1 -0
  193. package/common/decorators/agent.decorator.d.ts +116 -0
  194. package/common/decorators/agent.decorator.d.ts.map +1 -0
  195. package/common/decorators/app.decorator.d.ts +1 -0
  196. package/common/decorators/app.decorator.d.ts.map +1 -0
  197. package/common/decorators/auth-provider.decorator.d.ts +1 -0
  198. package/common/decorators/auth-provider.decorator.d.ts.map +1 -0
  199. package/common/decorators/decorator-utils.d.ts +1 -0
  200. package/common/decorators/decorator-utils.d.ts.map +1 -0
  201. package/common/decorators/flow.decorator.d.ts +1 -0
  202. package/common/decorators/flow.decorator.d.ts.map +1 -0
  203. package/common/decorators/front-mcp.decorator.d.ts +1 -0
  204. package/common/decorators/front-mcp.decorator.d.ts.map +1 -0
  205. package/common/decorators/hook.decorator.d.ts +1 -0
  206. package/common/decorators/hook.decorator.d.ts.map +1 -0
  207. package/common/decorators/index.d.ts +2 -0
  208. package/common/decorators/index.d.ts.map +1 -0
  209. package/common/decorators/logger.decorator.d.ts +1 -0
  210. package/common/decorators/logger.decorator.d.ts.map +1 -0
  211. package/common/decorators/plugin.decorator.d.ts +1 -0
  212. package/common/decorators/plugin.decorator.d.ts.map +1 -0
  213. package/common/decorators/prompt.decorator.d.ts +8 -3
  214. package/common/decorators/prompt.decorator.d.ts.map +1 -0
  215. package/common/decorators/provider.decorator.d.ts +1 -0
  216. package/common/decorators/provider.decorator.d.ts.map +1 -0
  217. package/common/decorators/resource.decorator.d.ts +1 -0
  218. package/common/decorators/resource.decorator.d.ts.map +1 -0
  219. package/common/decorators/tool.decorator.d.ts +1 -0
  220. package/common/decorators/tool.decorator.d.ts.map +1 -0
  221. package/common/dynamic/dynamic.adapter.d.ts +1 -0
  222. package/common/dynamic/dynamic.adapter.d.ts.map +1 -0
  223. package/common/dynamic/dynamic.plugin.d.ts +3 -1
  224. package/common/dynamic/dynamic.plugin.d.ts.map +1 -0
  225. package/common/dynamic/dynamic.utils.d.ts +1 -0
  226. package/common/dynamic/dynamic.utils.d.ts.map +1 -0
  227. package/common/dynamic/index.d.ts +1 -0
  228. package/common/dynamic/index.d.ts.map +1 -0
  229. package/common/entries/adapter.entry.d.ts +1 -0
  230. package/common/entries/adapter.entry.d.ts.map +1 -0
  231. package/common/entries/agent.entry.d.ts +143 -0
  232. package/common/entries/agent.entry.d.ts.map +1 -0
  233. package/common/entries/app.entry.d.ts +8 -0
  234. package/common/entries/app.entry.d.ts.map +1 -0
  235. package/common/entries/auth-provider.entry.d.ts +1 -0
  236. package/common/entries/auth-provider.entry.d.ts.map +1 -0
  237. package/common/entries/base.entry.d.ts +3 -2
  238. package/common/entries/base.entry.d.ts.map +1 -0
  239. package/common/entries/flow.entry.d.ts +3 -1
  240. package/common/entries/flow.entry.d.ts.map +1 -0
  241. package/common/entries/hook.entry.d.ts +7 -5
  242. package/common/entries/hook.entry.d.ts.map +1 -0
  243. package/common/entries/index.d.ts +2 -0
  244. package/common/entries/index.d.ts.map +1 -0
  245. package/common/entries/logger.entry.d.ts +1 -0
  246. package/common/entries/logger.entry.d.ts.map +1 -0
  247. package/common/entries/plugin.entry.d.ts +3 -1
  248. package/common/entries/plugin.entry.d.ts.map +1 -0
  249. package/common/entries/prompt.entry.d.ts +13 -0
  250. package/common/entries/prompt.entry.d.ts.map +1 -0
  251. package/common/entries/provider.entry.d.ts +1 -0
  252. package/common/entries/provider.entry.d.ts.map +1 -0
  253. package/common/entries/resource.entry.d.ts +7 -0
  254. package/common/entries/resource.entry.d.ts.map +1 -0
  255. package/common/entries/scope.entry.d.ts +3 -1
  256. package/common/entries/scope.entry.d.ts.map +1 -0
  257. package/common/entries/tool.entry.d.ts +17 -0
  258. package/common/entries/tool.entry.d.ts.map +1 -0
  259. package/common/flow/flow.utils.d.ts +1 -0
  260. package/common/flow/flow.utils.d.ts.map +1 -0
  261. package/common/index.d.ts +1 -1
  262. package/common/index.d.ts.map +1 -0
  263. package/common/interfaces/adapter.interface.d.ts +2 -1
  264. package/common/interfaces/adapter.interface.d.ts.map +1 -0
  265. package/common/interfaces/agent.interface.d.ts +255 -0
  266. package/common/interfaces/agent.interface.d.ts.map +1 -0
  267. package/common/interfaces/app.interface.d.ts +5 -3
  268. package/common/interfaces/app.interface.d.ts.map +1 -0
  269. package/common/interfaces/auth-hook.interface.d.ts +1 -0
  270. package/common/interfaces/auth-hook.interface.d.ts.map +1 -0
  271. package/common/interfaces/auth-provider.interface.d.ts +2 -1
  272. package/common/interfaces/auth-provider.interface.d.ts.map +1 -0
  273. package/common/interfaces/base.interface.d.ts +2 -77
  274. package/common/interfaces/base.interface.d.ts.map +1 -0
  275. package/common/interfaces/execution-context.interface.d.ts +2 -1
  276. package/common/interfaces/execution-context.interface.d.ts.map +1 -0
  277. package/common/interfaces/flow.interface.d.ts +2 -1
  278. package/common/interfaces/flow.interface.d.ts.map +1 -0
  279. package/common/interfaces/front-mcp.interface.d.ts +1 -0
  280. package/common/interfaces/front-mcp.interface.d.ts.map +1 -0
  281. package/common/interfaces/hook.interface.d.ts +2 -1
  282. package/common/interfaces/hook.interface.d.ts.map +1 -0
  283. package/common/interfaces/index.d.ts +4 -0
  284. package/common/interfaces/index.d.ts.map +1 -0
  285. package/common/interfaces/internal/flow.utils.d.ts +1 -0
  286. package/common/interfaces/internal/flow.utils.d.ts.map +1 -0
  287. package/common/interfaces/internal/index.d.ts +1 -0
  288. package/common/interfaces/internal/index.d.ts.map +1 -0
  289. package/common/interfaces/internal/primary-auth-provider.interface.d.ts +1 -0
  290. package/common/interfaces/internal/primary-auth-provider.interface.d.ts.map +1 -0
  291. package/common/interfaces/internal/registry.interface.d.ts +13 -3
  292. package/common/interfaces/internal/registry.interface.d.ts.map +1 -0
  293. package/common/interfaces/llm-adapter.interface.d.ts +221 -0
  294. package/common/interfaces/llm-adapter.interface.d.ts.map +1 -0
  295. package/common/interfaces/logger.interface.d.ts +7 -6
  296. package/common/interfaces/logger.interface.d.ts.map +1 -0
  297. package/common/interfaces/plugin.interface.d.ts +2 -1
  298. package/common/interfaces/plugin.interface.d.ts.map +1 -0
  299. package/common/interfaces/prompt.interface.d.ts +10 -2
  300. package/common/interfaces/prompt.interface.d.ts.map +1 -0
  301. package/common/interfaces/provider.interface.d.ts +2 -1
  302. package/common/interfaces/provider.interface.d.ts.map +1 -0
  303. package/common/interfaces/resource.interface.d.ts +12 -2
  304. package/common/interfaces/resource.interface.d.ts.map +1 -0
  305. package/common/interfaces/scope.interface.d.ts +3 -2
  306. package/common/interfaces/scope.interface.d.ts.map +1 -0
  307. package/common/interfaces/server.interface.d.ts +1 -0
  308. package/common/interfaces/server.interface.d.ts.map +1 -0
  309. package/common/interfaces/session-hook.interface.d.ts +1 -0
  310. package/common/interfaces/session-hook.interface.d.ts.map +1 -0
  311. package/common/interfaces/tool-hook.interface.d.ts +1 -0
  312. package/common/interfaces/tool-hook.interface.d.ts.map +1 -0
  313. package/common/interfaces/tool.interface.d.ts +52 -2
  314. package/common/interfaces/tool.interface.d.ts.map +1 -0
  315. package/common/metadata/adapter.metadata.d.ts +1 -0
  316. package/common/metadata/adapter.metadata.d.ts.map +1 -0
  317. package/common/metadata/agent.metadata.d.ts +398 -0
  318. package/common/metadata/agent.metadata.d.ts.map +1 -0
  319. package/common/metadata/app.metadata.d.ts +162 -16
  320. package/common/metadata/app.metadata.d.ts.map +1 -0
  321. package/common/metadata/auth-provider.metadata.d.ts +1 -0
  322. package/common/metadata/auth-provider.metadata.d.ts.map +1 -0
  323. package/common/metadata/flow.metadata.d.ts +5 -3
  324. package/common/metadata/flow.metadata.d.ts.map +1 -0
  325. package/common/metadata/front-mcp.metadata.d.ts +138 -46
  326. package/common/metadata/front-mcp.metadata.d.ts.map +1 -0
  327. package/common/metadata/hook.metadata.d.ts +2 -1
  328. package/common/metadata/hook.metadata.d.ts.map +1 -0
  329. package/common/metadata/index.d.ts +3 -0
  330. package/common/metadata/index.d.ts.map +1 -0
  331. package/common/metadata/logger.metadata.d.ts +1 -0
  332. package/common/metadata/logger.metadata.d.ts.map +1 -0
  333. package/common/metadata/plugin.metadata.d.ts +74 -7
  334. package/common/metadata/plugin.metadata.d.ts.map +1 -0
  335. package/common/metadata/prompt.metadata.d.ts +1 -0
  336. package/common/metadata/prompt.metadata.d.ts.map +1 -0
  337. package/common/metadata/provider.metadata.d.ts +5 -30
  338. package/common/metadata/provider.metadata.d.ts.map +1 -0
  339. package/common/metadata/resource.metadata.d.ts +1 -0
  340. package/common/metadata/resource.metadata.d.ts.map +1 -0
  341. package/common/metadata/tool-ui.metadata.d.ts +1 -0
  342. package/common/metadata/tool-ui.metadata.d.ts.map +1 -0
  343. package/common/metadata/tool.metadata.d.ts +1 -0
  344. package/common/metadata/tool.metadata.d.ts.map +1 -0
  345. package/common/migrate/auth-transport.migrate.d.ts +1 -0
  346. package/common/migrate/auth-transport.migrate.d.ts.map +1 -0
  347. package/common/migrate/index.d.ts +1 -0
  348. package/common/migrate/index.d.ts.map +1 -0
  349. package/common/providers/base-config.provider.d.ts +1 -0
  350. package/common/providers/base-config.provider.d.ts.map +1 -0
  351. package/common/records/adapter.record.d.ts +2 -1
  352. package/common/records/adapter.record.d.ts.map +1 -0
  353. package/common/records/agent.record.d.ts +89 -0
  354. package/common/records/agent.record.d.ts.map +1 -0
  355. package/common/records/app.record.d.ts +2 -1
  356. package/common/records/app.record.d.ts.map +1 -0
  357. package/common/records/auth-provider.record.d.ts +3 -1
  358. package/common/records/auth-provider.record.d.ts.map +1 -0
  359. package/common/records/flow.record.d.ts +1 -0
  360. package/common/records/flow.record.d.ts.map +1 -0
  361. package/common/records/hook.record.d.ts +1 -0
  362. package/common/records/hook.record.d.ts.map +1 -0
  363. package/common/records/index.d.ts +3 -0
  364. package/common/records/index.d.ts.map +1 -0
  365. package/common/records/logger.record.d.ts +4 -2
  366. package/common/records/logger.record.d.ts.map +1 -0
  367. package/common/records/plugin.record.d.ts +3 -1
  368. package/common/records/plugin.record.d.ts.map +1 -0
  369. package/common/records/prompt.record.d.ts +2 -1
  370. package/common/records/prompt.record.d.ts.map +1 -0
  371. package/common/records/provider.record.d.ts +2 -36
  372. package/common/records/provider.record.d.ts.map +1 -0
  373. package/common/records/resource.record.d.ts +2 -1
  374. package/common/records/resource.record.d.ts.map +1 -0
  375. package/common/records/scope.record.d.ts +2 -1
  376. package/common/records/scope.record.d.ts.map +1 -0
  377. package/common/records/tool.record.d.ts +3 -1
  378. package/common/records/tool.record.d.ts.map +1 -0
  379. package/common/schemas/annotated-class.schema.d.ts +4 -1
  380. package/common/schemas/annotated-class.schema.d.ts.map +1 -0
  381. package/common/schemas/http-input.schema.d.ts +1 -0
  382. package/common/schemas/http-input.schema.d.ts.map +1 -0
  383. package/common/schemas/http-output.schema.d.ts +1 -0
  384. package/common/schemas/http-output.schema.d.ts.map +1 -0
  385. package/common/schemas/index.d.ts +1 -0
  386. package/common/schemas/index.d.ts.map +1 -0
  387. package/common/schemas/session-header.schema.d.ts +1 -0
  388. package/common/schemas/session-header.schema.d.ts.map +1 -0
  389. package/common/tokens/adapter.tokens.d.ts +1 -0
  390. package/common/tokens/adapter.tokens.d.ts.map +1 -0
  391. package/common/tokens/agent.tokens.d.ts +33 -0
  392. package/common/tokens/agent.tokens.d.ts.map +1 -0
  393. package/common/tokens/app.tokens.d.ts +1 -0
  394. package/common/tokens/app.tokens.d.ts.map +1 -0
  395. package/common/tokens/auth-provider.tokens.d.ts +1 -0
  396. package/common/tokens/auth-provider.tokens.d.ts.map +1 -0
  397. package/common/tokens/base.tokens.d.ts +6 -4
  398. package/common/tokens/base.tokens.d.ts.map +1 -0
  399. package/common/tokens/flow-hook.tokens.d.ts +1 -0
  400. package/common/tokens/flow-hook.tokens.d.ts.map +1 -0
  401. package/common/tokens/flow.tokens.d.ts +1 -0
  402. package/common/tokens/flow.tokens.d.ts.map +1 -0
  403. package/common/tokens/front-mcp.tokens.d.ts +1 -0
  404. package/common/tokens/front-mcp.tokens.d.ts.map +1 -0
  405. package/common/tokens/index.d.ts +2 -0
  406. package/common/tokens/index.d.ts.map +1 -0
  407. package/common/tokens/logger.tokens.d.ts +1 -0
  408. package/common/tokens/logger.tokens.d.ts.map +1 -0
  409. package/common/tokens/plugin.tokens.d.ts +3 -0
  410. package/common/tokens/plugin.tokens.d.ts.map +1 -0
  411. package/common/tokens/prompt.tokens.d.ts +1 -0
  412. package/common/tokens/prompt.tokens.d.ts.map +1 -0
  413. package/common/tokens/provider.tokens.d.ts +1 -0
  414. package/common/tokens/provider.tokens.d.ts.map +1 -0
  415. package/common/tokens/resource.tokens.d.ts +1 -0
  416. package/common/tokens/resource.tokens.d.ts.map +1 -0
  417. package/common/tokens/server.tokens.d.ts +1 -0
  418. package/common/tokens/server.tokens.d.ts.map +1 -0
  419. package/common/tokens/tool.tokens.d.ts +1 -0
  420. package/common/tokens/tool.tokens.d.ts.map +1 -0
  421. package/common/types/auth/index.d.ts +1 -0
  422. package/common/types/auth/index.d.ts.map +1 -0
  423. package/common/types/auth/jwt.types.d.ts +1 -0
  424. package/common/types/auth/jwt.types.d.ts.map +1 -0
  425. package/common/types/auth/session.types.d.ts +1 -0
  426. package/common/types/auth/session.types.d.ts.map +1 -0
  427. package/common/types/common.types.d.ts +1 -0
  428. package/common/types/common.types.d.ts.map +1 -0
  429. package/common/types/index.d.ts +1 -0
  430. package/common/types/index.d.ts.map +1 -0
  431. package/common/types/options/auth/app-auth.schema.d.ts +1 -0
  432. package/common/types/options/auth/app-auth.schema.d.ts.map +1 -0
  433. package/common/types/options/auth/auth.interfaces.d.ts +1 -0
  434. package/common/types/options/auth/auth.interfaces.d.ts.map +1 -0
  435. package/common/types/options/auth/auth.schema.d.ts +1 -0
  436. package/common/types/options/auth/auth.schema.d.ts.map +1 -0
  437. package/common/types/options/auth/auth.typecheck.d.ts +1 -0
  438. package/common/types/options/auth/auth.typecheck.d.ts.map +1 -0
  439. package/common/types/options/auth/auth.utils.d.ts +1 -0
  440. package/common/types/options/auth/auth.utils.d.ts.map +1 -0
  441. package/common/types/options/auth/index.d.ts +1 -0
  442. package/common/types/options/auth/index.d.ts.map +1 -0
  443. package/common/types/options/auth/orchestrated.schema.d.ts +1 -0
  444. package/common/types/options/auth/orchestrated.schema.d.ts.map +1 -0
  445. package/common/types/options/auth/public.schema.d.ts +1 -0
  446. package/common/types/options/auth/public.schema.d.ts.map +1 -0
  447. package/common/types/options/auth/shared.schemas.d.ts +1 -0
  448. package/common/types/options/auth/shared.schemas.d.ts.map +1 -0
  449. package/common/types/options/auth/transparent.schema.d.ts +1 -0
  450. package/common/types/options/auth/transparent.schema.d.ts.map +1 -0
  451. package/common/types/options/auth/transport.deprecated.d.ts +1 -0
  452. package/common/types/options/auth/transport.deprecated.d.ts.map +1 -0
  453. package/common/types/options/http.options.d.ts +1 -0
  454. package/common/types/options/http.options.d.ts.map +1 -0
  455. package/common/types/options/index.d.ts +1 -0
  456. package/common/types/options/index.d.ts.map +1 -0
  457. package/common/types/options/logging.options.d.ts +2 -5
  458. package/common/types/options/logging.options.d.ts.map +1 -0
  459. package/common/types/options/redis.options.d.ts +1 -0
  460. package/common/types/options/redis.options.d.ts.map +1 -0
  461. package/common/types/options/server-info.options.d.ts +1 -0
  462. package/common/types/options/server-info.options.d.ts.map +1 -0
  463. package/common/types/options/session.options.d.ts +1 -0
  464. package/common/types/options/session.options.d.ts.map +1 -0
  465. package/common/types/options/transport.options.d.ts +25 -0
  466. package/common/types/options/transport.options.d.ts.map +1 -0
  467. package/common/utils/decide-request-intent.utils.d.ts +1 -0
  468. package/common/utils/decide-request-intent.utils.d.ts.map +1 -0
  469. package/common/utils/global-config.utils.d.ts +1 -0
  470. package/common/utils/global-config.utils.d.ts.map +1 -0
  471. package/common/utils/index.d.ts +1 -0
  472. package/common/utils/index.d.ts.map +1 -0
  473. package/common/utils/path.utils.d.ts +3 -4
  474. package/common/utils/path.utils.d.ts.map +1 -0
  475. package/completion/flows/complete.flow.d.ts +1 -0
  476. package/completion/flows/complete.flow.d.ts.map +1 -0
  477. package/context/context-extension.d.ts +52 -0
  478. package/context/context-extension.d.ts.map +1 -0
  479. package/context/frontmcp-context-storage.d.ts +1 -0
  480. package/context/frontmcp-context-storage.d.ts.map +1 -0
  481. package/context/frontmcp-context.d.ts +1 -0
  482. package/context/frontmcp-context.d.ts.map +1 -0
  483. package/context/frontmcp-context.provider.d.ts +3 -2
  484. package/context/frontmcp-context.provider.d.ts.map +1 -0
  485. package/context/index.d.ts +1 -0
  486. package/context/index.d.ts.map +1 -0
  487. package/context/request-context-storage.d.ts +1 -0
  488. package/context/request-context-storage.d.ts.map +1 -0
  489. package/context/request-context.d.ts +1 -0
  490. package/context/request-context.d.ts.map +1 -0
  491. package/context/request-context.provider.d.ts +1 -0
  492. package/context/request-context.provider.d.ts.map +1 -0
  493. package/context/session-key.provider.d.ts +1 -0
  494. package/context/session-key.provider.d.ts.map +1 -0
  495. package/context/trace-context.d.ts +1 -0
  496. package/context/trace-context.d.ts.map +1 -0
  497. package/errors/agent.errors.d.ts +80 -0
  498. package/errors/agent.errors.d.ts.map +1 -0
  499. package/errors/authorization-required.error.d.ts +1 -0
  500. package/errors/authorization-required.error.d.ts.map +1 -0
  501. package/errors/error-handler.d.ts +1 -0
  502. package/errors/error-handler.d.ts.map +1 -0
  503. package/errors/index.d.ts +4 -1
  504. package/errors/index.d.ts.map +1 -0
  505. package/errors/mcp.error.d.ts +31 -0
  506. package/errors/mcp.error.d.ts.map +1 -0
  507. package/errors/remote.errors.d.ts +156 -0
  508. package/errors/remote.errors.d.ts.map +1 -0
  509. package/esm/index.mjs +18399 -10886
  510. package/esm/package.json +26 -18
  511. package/flows/flow.instance.d.ts +1 -0
  512. package/flows/flow.instance.d.ts.map +1 -0
  513. package/flows/flow.registry.d.ts +3 -1
  514. package/flows/flow.registry.d.ts.map +1 -0
  515. package/flows/flow.stages.d.ts +1 -0
  516. package/flows/flow.stages.d.ts.map +1 -0
  517. package/flows/flow.utils.d.ts +3 -1
  518. package/flows/flow.utils.d.ts.map +1 -0
  519. package/front-mcp/front-mcp.d.ts +21 -1
  520. package/front-mcp/front-mcp.d.ts.map +1 -0
  521. package/front-mcp/front-mcp.providers.d.ts +42 -21
  522. package/front-mcp/front-mcp.providers.d.ts.map +1 -0
  523. package/front-mcp/front-mcp.tokens.d.ts +3 -1
  524. package/front-mcp/front-mcp.tokens.d.ts.map +1 -0
  525. package/front-mcp/index.d.ts +1 -0
  526. package/front-mcp/index.d.ts.map +1 -0
  527. package/front-mcp/serverless-handler.d.ts +1 -0
  528. package/front-mcp/serverless-handler.d.ts.map +1 -0
  529. package/hooks/hook.instance.d.ts +1 -0
  530. package/hooks/hook.instance.d.ts.map +1 -0
  531. package/hooks/hook.registry.d.ts +1 -0
  532. package/hooks/hook.registry.d.ts.map +1 -0
  533. package/hooks/hooks.utils.d.ts +3 -1
  534. package/hooks/hooks.utils.d.ts.map +1 -0
  535. package/index.d.ts +29 -20
  536. package/index.d.ts.map +1 -0
  537. package/index.js +18589 -11006
  538. package/logger/instances/instance.console-logger.d.ts +1 -0
  539. package/logger/instances/instance.console-logger.d.ts.map +1 -0
  540. package/logger/instances/instance.logger.d.ts +1 -0
  541. package/logger/instances/instance.logger.d.ts.map +1 -0
  542. package/logger/logger.registry.d.ts +1 -0
  543. package/logger/logger.registry.d.ts.map +1 -0
  544. package/logger/logger.tokens.d.ts +1 -0
  545. package/logger/logger.tokens.d.ts.map +1 -0
  546. package/logger/logger.types.d.ts +1 -0
  547. package/logger/logger.types.d.ts.map +1 -0
  548. package/logger/logger.utils.d.ts +3 -1
  549. package/logger/logger.utils.d.ts.map +1 -0
  550. package/logging/flows/set-level.flow.d.ts +1 -0
  551. package/logging/flows/set-level.flow.d.ts.map +1 -0
  552. package/notification/index.d.ts +1 -0
  553. package/notification/index.d.ts.map +1 -0
  554. package/notification/notification.service.d.ts +17 -4
  555. package/notification/notification.service.d.ts.map +1 -0
  556. package/package.json +17 -7
  557. package/plugin/plugin.registry.d.ts +25 -6
  558. package/plugin/plugin.registry.d.ts.map +1 -0
  559. package/plugin/plugin.utils.d.ts +3 -1
  560. package/plugin/plugin.utils.d.ts.map +1 -0
  561. package/prompt/flows/get-prompt.flow.d.ts +8 -1
  562. package/prompt/flows/get-prompt.flow.d.ts.map +1 -0
  563. package/prompt/flows/prompts-list.flow.d.ts +8 -1
  564. package/prompt/flows/prompts-list.flow.d.ts.map +1 -0
  565. package/prompt/index.d.ts +1 -0
  566. package/prompt/index.d.ts.map +1 -0
  567. package/prompt/prompt.events.d.ts +3 -2
  568. package/prompt/prompt.events.d.ts.map +1 -0
  569. package/prompt/prompt.instance.d.ts +7 -1
  570. package/prompt/prompt.instance.d.ts.map +1 -0
  571. package/prompt/prompt.registry.d.ts +32 -7
  572. package/prompt/prompt.registry.d.ts.map +1 -0
  573. package/prompt/prompt.types.d.ts +5 -4
  574. package/prompt/prompt.types.d.ts.map +1 -0
  575. package/prompt/prompt.utils.d.ts +3 -3
  576. package/prompt/prompt.utils.d.ts.map +1 -0
  577. package/provider/flow-context-providers.d.ts +24 -0
  578. package/provider/flow-context-providers.d.ts.map +1 -0
  579. package/provider/provider.registry.d.ts +26 -4
  580. package/provider/provider.registry.d.ts.map +1 -0
  581. package/provider/provider.types.d.ts +2 -1
  582. package/provider/provider.types.d.ts.map +1 -0
  583. package/provider/provider.utils.d.ts +21 -2
  584. package/provider/provider.utils.d.ts.map +1 -0
  585. package/regsitry/index.d.ts +1 -0
  586. package/regsitry/index.d.ts.map +1 -0
  587. package/regsitry/registry.base.d.ts +3 -1
  588. package/regsitry/registry.base.d.ts.map +1 -0
  589. package/remote-mcp/cache/capability-cache.d.ts +87 -0
  590. package/remote-mcp/cache/capability-cache.d.ts.map +1 -0
  591. package/remote-mcp/cache/index.d.ts +6 -0
  592. package/remote-mcp/cache/index.d.ts.map +1 -0
  593. package/remote-mcp/factories/context-factories.d.ts +43 -0
  594. package/remote-mcp/factories/context-factories.d.ts.map +1 -0
  595. package/remote-mcp/factories/index.d.ts +12 -0
  596. package/remote-mcp/factories/index.d.ts.map +1 -0
  597. package/remote-mcp/factories/instance-factories.d.ts +81 -0
  598. package/remote-mcp/factories/instance-factories.d.ts.map +1 -0
  599. package/remote-mcp/factories/record-builders.d.ts +50 -0
  600. package/remote-mcp/factories/record-builders.d.ts.map +1 -0
  601. package/remote-mcp/index.d.ts +14 -0
  602. package/remote-mcp/index.d.ts.map +1 -0
  603. package/remote-mcp/mcp-client.service.d.ts +169 -0
  604. package/remote-mcp/mcp-client.service.d.ts.map +1 -0
  605. package/remote-mcp/mcp-client.types.d.ts +298 -0
  606. package/remote-mcp/mcp-client.types.d.ts.map +1 -0
  607. package/remote-mcp/resilience/circuit-breaker.d.ts +100 -0
  608. package/remote-mcp/resilience/circuit-breaker.d.ts.map +1 -0
  609. package/remote-mcp/resilience/health-check.d.ts +107 -0
  610. package/remote-mcp/resilience/health-check.d.ts.map +1 -0
  611. package/remote-mcp/resilience/index.d.ts +8 -0
  612. package/remote-mcp/resilience/index.d.ts.map +1 -0
  613. package/remote-mcp/resilience/retry.d.ts +37 -0
  614. package/remote-mcp/resilience/retry.d.ts.map +1 -0
  615. package/resource/flows/read-resource.flow.d.ts +8 -1
  616. package/resource/flows/read-resource.flow.d.ts.map +1 -0
  617. package/resource/flows/resource-templates-list.flow.d.ts +8 -1
  618. package/resource/flows/resource-templates-list.flow.d.ts.map +1 -0
  619. package/resource/flows/resources-list.flow.d.ts +8 -1
  620. package/resource/flows/resources-list.flow.d.ts.map +1 -0
  621. package/resource/flows/subscribe-resource.flow.d.ts +1 -0
  622. package/resource/flows/subscribe-resource.flow.d.ts.map +1 -0
  623. package/resource/flows/unsubscribe-resource.flow.d.ts +1 -0
  624. package/resource/flows/unsubscribe-resource.flow.d.ts.map +1 -0
  625. package/resource/index.d.ts +1 -0
  626. package/resource/index.d.ts.map +1 -0
  627. package/resource/resource.events.d.ts +3 -2
  628. package/resource/resource.events.d.ts.map +1 -0
  629. package/resource/resource.instance.d.ts +1 -0
  630. package/resource/resource.instance.d.ts.map +1 -0
  631. package/resource/resource.registry.d.ts +33 -8
  632. package/resource/resource.registry.d.ts.map +1 -0
  633. package/resource/resource.types.d.ts +5 -4
  634. package/resource/resource.types.d.ts.map +1 -0
  635. package/resource/resource.utils.d.ts +3 -5
  636. package/resource/resource.utils.d.ts.map +1 -0
  637. package/scope/flows/http.request.flow.d.ts +1 -0
  638. package/scope/flows/http.request.flow.d.ts.map +1 -0
  639. package/scope/index.d.ts +1 -0
  640. package/scope/index.d.ts.map +1 -0
  641. package/scope/scope.instance.d.ts +7 -0
  642. package/scope/scope.instance.d.ts.map +1 -0
  643. package/scope/scope.registry.d.ts +6 -0
  644. package/scope/scope.registry.d.ts.map +1 -0
  645. package/scope/scope.utils.d.ts +3 -1
  646. package/scope/scope.utils.d.ts.map +1 -0
  647. package/server/adapters/base.host.adapter.d.ts +1 -0
  648. package/server/adapters/base.host.adapter.d.ts.map +1 -0
  649. package/server/adapters/express.host.adapter.d.ts +1 -0
  650. package/server/adapters/express.host.adapter.d.ts.map +1 -0
  651. package/server/server.instance.d.ts +1 -0
  652. package/server/server.instance.d.ts.map +1 -0
  653. package/server/server.types.d.ts +1 -0
  654. package/server/server.types.d.ts.map +1 -0
  655. package/server/server.validation.d.ts +1 -0
  656. package/server/server.validation.d.ts.map +1 -0
  657. package/store/adapters/store.base.adapter.d.ts +1 -0
  658. package/store/adapters/store.base.adapter.d.ts.map +1 -0
  659. package/store/adapters/store.memory.adapter.d.ts +1 -0
  660. package/store/adapters/store.memory.adapter.d.ts.map +1 -0
  661. package/store/adapters/store.redis.adapter.d.ts +1 -0
  662. package/store/adapters/store.redis.adapter.d.ts.map +1 -0
  663. package/store/adapters/store.vercel-kv.adapter.d.ts +1 -0
  664. package/store/adapters/store.vercel-kv.adapter.d.ts.map +1 -0
  665. package/store/index.d.ts +1 -0
  666. package/store/index.d.ts.map +1 -0
  667. package/store/store.factory.d.ts +1 -0
  668. package/store/store.factory.d.ts.map +1 -0
  669. package/store/store.helpers.d.ts +1 -0
  670. package/store/store.helpers.d.ts.map +1 -0
  671. package/store/store.registry.d.ts +1 -0
  672. package/store/store.registry.d.ts.map +1 -0
  673. package/store/store.tokens.d.ts +1 -0
  674. package/store/store.tokens.d.ts.map +1 -0
  675. package/store/store.types.d.ts +1 -0
  676. package/store/store.types.d.ts.map +1 -0
  677. package/store/store.utils.d.ts +1 -0
  678. package/store/store.utils.d.ts.map +1 -0
  679. package/tool/flows/call-tool.flow.d.ts +9 -1
  680. package/tool/flows/call-tool.flow.d.ts.map +1 -0
  681. package/tool/flows/tools-list.flow.d.ts +8 -1
  682. package/tool/flows/tools-list.flow.d.ts.map +1 -0
  683. package/tool/tool.events.d.ts +3 -2
  684. package/tool/tool.events.d.ts.map +1 -0
  685. package/tool/tool.instance.d.ts +18 -1
  686. package/tool/tool.instance.d.ts.map +1 -0
  687. package/tool/tool.registry.d.ts +57 -5
  688. package/tool/tool.registry.d.ts.map +1 -0
  689. package/tool/tool.types.d.ts +5 -4
  690. package/tool/tool.types.d.ts.map +1 -0
  691. package/tool/tool.utils.d.ts +20 -3
  692. package/tool/tool.utils.d.ts.map +1 -0
  693. package/tool/ui/index.d.ts +1 -0
  694. package/tool/ui/index.d.ts.map +1 -0
  695. package/tool/ui/platform-adapters.d.ts +1 -0
  696. package/tool/ui/platform-adapters.d.ts.map +1 -0
  697. package/tool/ui/template-helpers.d.ts +1 -0
  698. package/tool/ui/template-helpers.d.ts.map +1 -0
  699. package/tool/ui/ui-resource-template.d.ts +1 -0
  700. package/tool/ui/ui-resource-template.d.ts.map +1 -0
  701. package/tool/ui/ui-resource.handler.d.ts +1 -0
  702. package/tool/ui/ui-resource.handler.d.ts.map +1 -0
  703. package/transport/adapters/sse-transport.d.ts +66 -0
  704. package/transport/adapters/sse-transport.d.ts.map +1 -0
  705. package/transport/adapters/streamable-http-transport.d.ts +96 -0
  706. package/transport/adapters/streamable-http-transport.d.ts.map +1 -0
  707. package/transport/adapters/transport.local.adapter.d.ts +27 -1
  708. package/transport/adapters/transport.local.adapter.d.ts.map +1 -0
  709. package/transport/adapters/transport.sse.adapter.d.ts +17 -3
  710. package/transport/adapters/transport.sse.adapter.d.ts.map +1 -0
  711. package/transport/adapters/transport.streamable-http.adapter.d.ts +13 -3
  712. package/transport/adapters/transport.streamable-http.adapter.d.ts.map +1 -0
  713. package/transport/flows/handle.sse.flow.d.ts +1 -0
  714. package/transport/flows/handle.sse.flow.d.ts.map +1 -0
  715. package/transport/flows/handle.stateless-http.flow.d.ts +1 -0
  716. package/transport/flows/handle.stateless-http.flow.d.ts.map +1 -0
  717. package/transport/flows/handle.streamable-http.flow.d.ts +1 -0
  718. package/transport/flows/handle.streamable-http.flow.d.ts.map +1 -0
  719. package/transport/index.d.ts +22 -0
  720. package/transport/index.d.ts.map +1 -0
  721. package/transport/legacy/legacy.sse.tranporter.d.ts +1 -0
  722. package/transport/legacy/legacy.sse.tranporter.d.ts.map +1 -0
  723. package/transport/mcp-handlers/Initialized-notification.hanlder.d.ts +1 -0
  724. package/transport/mcp-handlers/Initialized-notification.hanlder.d.ts.map +1 -0
  725. package/transport/mcp-handlers/call-tool-request.handler.d.ts +1 -0
  726. package/transport/mcp-handlers/call-tool-request.handler.d.ts.map +1 -0
  727. package/transport/mcp-handlers/complete-request.handler.d.ts +1 -0
  728. package/transport/mcp-handlers/complete-request.handler.d.ts.map +1 -0
  729. package/transport/mcp-handlers/get-prompt-request.handler.d.ts +1 -0
  730. package/transport/mcp-handlers/get-prompt-request.handler.d.ts.map +1 -0
  731. package/transport/mcp-handlers/index.d.ts +2 -1
  732. package/transport/mcp-handlers/index.d.ts.map +1 -0
  733. package/transport/mcp-handlers/initialize-request.handler.d.ts +1 -0
  734. package/transport/mcp-handlers/initialize-request.handler.d.ts.map +1 -0
  735. package/transport/mcp-handlers/list-prompts-request.handler.d.ts +1 -0
  736. package/transport/mcp-handlers/list-prompts-request.handler.d.ts.map +1 -0
  737. package/transport/mcp-handlers/list-resource-templates-request.handler.d.ts +1 -0
  738. package/transport/mcp-handlers/list-resource-templates-request.handler.d.ts.map +1 -0
  739. package/transport/mcp-handlers/list-resources-request.handler.d.ts +1 -0
  740. package/transport/mcp-handlers/list-resources-request.handler.d.ts.map +1 -0
  741. package/transport/mcp-handlers/list-tools-request.handler.d.ts +1 -0
  742. package/transport/mcp-handlers/list-tools-request.handler.d.ts.map +1 -0
  743. package/transport/mcp-handlers/logging-set-level-request.handler.d.ts +2 -1
  744. package/transport/mcp-handlers/logging-set-level-request.handler.d.ts.map +1 -0
  745. package/transport/mcp-handlers/mcp-handlers.types.d.ts +1 -0
  746. package/transport/mcp-handlers/mcp-handlers.types.d.ts.map +1 -0
  747. package/transport/mcp-handlers/read-resource-request.handler.d.ts +1 -0
  748. package/transport/mcp-handlers/read-resource-request.handler.d.ts.map +1 -0
  749. package/transport/mcp-handlers/roots-list-changed-notification.handler.d.ts +1 -0
  750. package/transport/mcp-handlers/roots-list-changed-notification.handler.d.ts.map +1 -0
  751. package/transport/mcp-handlers/subscribe-request.handler.d.ts +1 -0
  752. package/transport/mcp-handlers/subscribe-request.handler.d.ts.map +1 -0
  753. package/transport/mcp-handlers/unsubscribe-request.handler.d.ts +1 -0
  754. package/transport/mcp-handlers/unsubscribe-request.handler.d.ts.map +1 -0
  755. package/transport/transport.error.d.ts +1 -0
  756. package/transport/transport.error.d.ts.map +1 -0
  757. package/transport/transport.event-store.d.ts +1 -0
  758. package/transport/transport.event-store.d.ts.map +1 -0
  759. package/transport/transport.local.d.ts +7 -0
  760. package/transport/transport.local.d.ts.map +1 -0
  761. package/transport/transport.registry.d.ts +8 -1
  762. package/transport/transport.registry.d.ts.map +1 -0
  763. package/transport/transport.remote.d.ts +2 -0
  764. package/transport/transport.remote.d.ts.map +1 -0
  765. package/transport/transport.types.d.ts +8 -1
  766. package/transport/transport.types.d.ts.map +1 -0
  767. package/types/drinen-hooks.types.d.ts +1 -0
  768. package/types/drinen-hooks.types.d.ts.map +1 -0
  769. package/types/invoke.type.d.ts +1 -0
  770. package/types/invoke.type.d.ts.map +1 -0
  771. package/types/token.types.d.ts +1 -0
  772. package/types/token.types.d.ts.map +1 -0
  773. package/{utils/types.utils.d.ts → types/zod.types.d.ts} +1 -0
  774. package/types/zod.types.d.ts.map +1 -0
  775. package/utils/content.utils.d.ts +1 -19
  776. package/utils/content.utils.d.ts.map +1 -0
  777. package/utils/index.d.ts +3 -7
  778. package/utils/index.d.ts.map +1 -0
  779. package/utils/lineage.utils.d.ts +1 -0
  780. package/utils/lineage.utils.d.ts.map +1 -0
  781. package/utils/naming.utils.d.ts +2 -34
  782. package/utils/naming.utils.d.ts.map +1 -0
  783. package/common/constants.d.ts +0 -5
  784. package/esm/mcp-apps/index.mjs +0 -723
  785. package/exceptions/mcp-exceptions/session-missing.exception.d.ts +0 -3
  786. package/exceptions/mcp-exceptions/unsupported-client-version.exception.d.ts +0 -5
  787. package/mcp-apps/csp.d.ts +0 -111
  788. package/mcp-apps/index.d.ts +0 -23
  789. package/mcp-apps/index.js +0 -799
  790. package/mcp-apps/schemas.d.ts +0 -403
  791. package/mcp-apps/template.d.ts +0 -94
  792. package/mcp-apps/types.d.ts +0 -323
  793. package/utils/metadata.utils.d.ts +0 -5
  794. package/utils/server.utils.d.ts +0 -19
  795. package/utils/string.utils.d.ts +0 -1
  796. package/utils/token.utils.d.ts +0 -11
  797. package/utils/uri-template.utils.d.ts +0 -57
  798. package/utils/uri-validation.utils.d.ts +0 -40
@@ -0,0 +1,221 @@
1
+ /**
2
+ * Injection token for the LLM adapter.
3
+ * Use this to inject a custom LLM adapter via the provider system.
4
+ *
5
+ * @example
6
+ * ```typescript
7
+ * @Agent({
8
+ * name: 'my-agent',
9
+ * llm: LLM_ADAPTER, // Use injected adapter
10
+ * providers: [
11
+ * { provide: LLM_ADAPTER, useFactory: () => new OpenAIAdapter(...) },
12
+ * ],
13
+ * })
14
+ * ```
15
+ */
16
+ export declare const LLM_ADAPTER: symbol & {
17
+ __type: AgentLlmAdapter;
18
+ };
19
+ /**
20
+ * Represents a message in the agent conversation.
21
+ */
22
+ export interface AgentMessage {
23
+ /**
24
+ * Role of the message sender.
25
+ */
26
+ role: 'user' | 'assistant' | 'tool' | 'system';
27
+ /**
28
+ * Text content of the message (null if only tool calls).
29
+ */
30
+ content: string | null;
31
+ /**
32
+ * Tool calls made by the assistant (only for assistant messages).
33
+ */
34
+ toolCalls?: AgentToolCall[];
35
+ /**
36
+ * ID of the tool call this message is responding to (only for tool messages).
37
+ */
38
+ toolCallId?: string;
39
+ /**
40
+ * Name of the tool (only for tool messages).
41
+ */
42
+ name?: string;
43
+ }
44
+ /**
45
+ * Represents a tool call made by the LLM.
46
+ */
47
+ export interface AgentToolCall {
48
+ /**
49
+ * Unique identifier for this tool call.
50
+ */
51
+ id: string;
52
+ /**
53
+ * Name of the tool to call.
54
+ */
55
+ name: string;
56
+ /**
57
+ * Arguments to pass to the tool.
58
+ */
59
+ arguments: Record<string, unknown>;
60
+ }
61
+ /**
62
+ * Represents a tool definition for the LLM.
63
+ */
64
+ export interface AgentToolDefinition {
65
+ /**
66
+ * Name of the tool.
67
+ */
68
+ name: string;
69
+ /**
70
+ * Description of what the tool does.
71
+ */
72
+ description?: string;
73
+ /**
74
+ * JSON Schema describing the tool's parameters.
75
+ */
76
+ parameters: Record<string, unknown>;
77
+ /**
78
+ * Whether this tool requires user confirmation before execution.
79
+ */
80
+ requiresConfirmation?: boolean;
81
+ }
82
+ /**
83
+ * Prompt to send to the LLM.
84
+ */
85
+ export interface AgentPrompt {
86
+ /**
87
+ * System instructions for the LLM.
88
+ */
89
+ system?: string;
90
+ /**
91
+ * Conversation history.
92
+ */
93
+ messages: AgentMessage[];
94
+ }
95
+ /**
96
+ * Options for LLM completion requests.
97
+ */
98
+ export interface AgentCompletionOptions {
99
+ /**
100
+ * Temperature for generation (0-2).
101
+ * Lower values make output more deterministic.
102
+ */
103
+ temperature?: number;
104
+ /**
105
+ * Maximum tokens to generate.
106
+ */
107
+ maxTokens?: number;
108
+ /**
109
+ * Stop sequences to end generation.
110
+ */
111
+ stopSequences?: string[];
112
+ /**
113
+ * Whether to force a tool call.
114
+ */
115
+ toolChoice?: 'auto' | 'required' | 'none' | {
116
+ name: string;
117
+ };
118
+ /**
119
+ * Additional provider-specific options.
120
+ */
121
+ [key: string]: unknown;
122
+ }
123
+ /**
124
+ * Result from an LLM completion request.
125
+ */
126
+ export interface AgentCompletion {
127
+ /**
128
+ * Text content of the response (null if only tool calls).
129
+ */
130
+ content: string | null;
131
+ /**
132
+ * Tool calls requested by the LLM.
133
+ */
134
+ toolCalls?: AgentToolCall[];
135
+ /**
136
+ * Reason the generation stopped.
137
+ */
138
+ finishReason: 'stop' | 'tool_calls' | 'length' | 'content_filter';
139
+ /**
140
+ * Token usage statistics.
141
+ */
142
+ usage?: {
143
+ promptTokens: number;
144
+ completionTokens: number;
145
+ totalTokens?: number;
146
+ };
147
+ /**
148
+ * Raw response from the LLM provider (for debugging/advanced use).
149
+ */
150
+ raw?: unknown;
151
+ }
152
+ /**
153
+ * Chunk from a streaming LLM completion.
154
+ */
155
+ export interface AgentCompletionChunk {
156
+ /**
157
+ * Type of chunk.
158
+ */
159
+ type: 'content' | 'tool_call' | 'done';
160
+ /**
161
+ * Partial content (for 'content' type).
162
+ */
163
+ content?: string;
164
+ /**
165
+ * Partial tool call (for 'tool_call' type).
166
+ */
167
+ toolCall?: Partial<AgentToolCall> & {
168
+ id: string;
169
+ };
170
+ /**
171
+ * Full completion (for 'done' type).
172
+ */
173
+ completion?: AgentCompletion;
174
+ }
175
+ /**
176
+ * Abstract adapter interface for LLM integration.
177
+ *
178
+ * Implement this interface to connect agents to different LLM providers
179
+ * like OpenAI, Anthropic, LangChain, or custom solutions.
180
+ *
181
+ * @example
182
+ * ```typescript
183
+ * class MyAdapter implements AgentLlmAdapter {
184
+ * async completion(prompt, tools, options) {
185
+ * // Call your LLM provider
186
+ * return { content: 'Hello!', finishReason: 'stop' };
187
+ * }
188
+ *
189
+ * async *streamCompletion(prompt, tools, options) {
190
+ * yield { type: 'content', content: 'Hello' };
191
+ * yield { type: 'content', content: '!' };
192
+ * yield { type: 'done', completion: { content: 'Hello!', finishReason: 'stop' } };
193
+ * }
194
+ * }
195
+ * ```
196
+ */
197
+ export interface AgentLlmAdapter {
198
+ /**
199
+ * Generate a completion from the LLM.
200
+ *
201
+ * @param prompt - The prompt to send (system + messages)
202
+ * @param tools - Available tools the LLM can call
203
+ * @param options - Completion options (temperature, maxTokens, etc.)
204
+ * @returns The LLM's response
205
+ */
206
+ completion(prompt: AgentPrompt, tools?: AgentToolDefinition[], options?: AgentCompletionOptions): Promise<AgentCompletion>;
207
+ /**
208
+ * Stream a completion from the LLM.
209
+ *
210
+ * @param prompt - The prompt to send (system + messages)
211
+ * @param tools - Available tools the LLM can call
212
+ * @param options - Completion options (temperature, maxTokens, etc.)
213
+ * @returns AsyncGenerator yielding completion chunks
214
+ */
215
+ streamCompletion?(prompt: AgentPrompt, tools?: AgentToolDefinition[], options?: AgentCompletionOptions): AsyncGenerator<AgentCompletionChunk>;
216
+ }
217
+ /**
218
+ * Type guard to check if an adapter supports streaming.
219
+ */
220
+ export declare function supportsStreaming(adapter: AgentLlmAdapter): adapter is AgentLlmAdapter & Required<Pick<AgentLlmAdapter, 'streamCompletion'>>;
221
+ //# sourceMappingURL=llm-adapter.interface.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"llm-adapter.interface.d.ts","sourceRoot":"","sources":["../../../src/common/interfaces/llm-adapter.interface.ts"],"names":[],"mappings":"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"}
@@ -1,4 +1,4 @@
1
- import { Type } from './base.interface';
1
+ import { Type } from '@frontmcp/di';
2
2
  import { LogLevel } from '../types';
3
3
  export interface LogRecord {
4
4
  level: LogLevel;
@@ -19,24 +19,25 @@ export declare abstract class FrontMcpLogger {
19
19
  * Verbose — extremely granular, high-volume logs useful when diagnosing tricky bugs
20
20
  * (function entry/exit, detailed branches, low-level I/O). Disable in most environments.
21
21
  */
22
- abstract get verbose(): ((...args: any[]) => void);
22
+ abstract get verbose(): (...args: any[]) => void;
23
23
  /**
24
24
  * Debug — development-focused diagnostics (state changes, computed values, API request params),
25
25
  * still fairly verbose but less noisy than TRACE. Typically disabled in production.
26
26
  */
27
- abstract get debug(): ((...args: any[]) => void);
27
+ abstract get debug(): (...args: any[]) => void;
28
28
  /**
29
29
  * Info — key milestones in normal operation (server start, feature toggles, user actions,
30
30
  * successful requests). Safe to keep enabled in production.
31
31
  */
32
- abstract get info(): ((...args: any[]) => void);
32
+ abstract get info(): (...args: any[]) => void;
33
33
  /**
34
34
  * Warn — unexpected or suboptimal situations that the system handled and continued
35
35
  * (fallbacks, retries, partial failures). Worth investigating but not service-breaking.
36
36
  */
37
- abstract get warn(): ((...args: any[]) => void);
37
+ abstract get warn(): (...args: any[]) => void;
38
38
  /**
39
39
  * Error — failures where an operation could not complete or data is invalid,
40
40
  */
41
- abstract get error(): ((...args: any[]) => void);
41
+ abstract get error(): (...args: any[]) => void;
42
42
  }
43
+ //# sourceMappingURL=logger.interface.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"logger.interface.d.ts","sourceRoot":"","sources":["../../../src/common/interfaces/logger.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,cAAc,CAAC;AACpC,OAAO,EAAE,QAAQ,EAAE,MAAM,UAAU,CAAC;AAEpC,MAAM,WAAW,SAAS;IACxB,KAAK,EAAE,QAAQ,CAAC;IAChB,SAAS,EAAE,MAAM,CAAC;IAClB,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,OAAO,EAAE,CAAC;IAChB,SAAS,EAAE,IAAI,CAAC;IAChB,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,MAAM,KAAK,GAAG,CAAC,GAAG,CAAC,EAAE,GAAG,EAAE,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,IAAI,CAAC;AAExD,8BAAsB,qBAAqB;IACzC,QAAQ,CAAC,GAAG,CAAC,GAAG,EAAE,SAAS,GAAG,IAAI;CACnC;AAED,MAAM,MAAM,gBAAgB,CAAC,CAAC,GAAG,GAAG,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC;AAEhD,8BAAsB,cAAc;IAClC,QAAQ,CAAC,KAAK,CAAC,MAAM,EAAE,MAAM,GAAG,cAAc;IAE9C;;;OAGG;IACH,QAAQ,KAAK,OAAO,IAAI,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,IAAI,CAAC;IAEjD;;;OAGG;IACH,QAAQ,KAAK,KAAK,IAAI,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,IAAI,CAAC;IAE/C;;;OAGG;IACH,QAAQ,KAAK,IAAI,IAAI,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,IAAI,CAAC;IAE9C;;;OAGG;IACH,QAAQ,KAAK,IAAI,IAAI,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,IAAI,CAAC;IAE9C;;OAEG;IACH,QAAQ,KAAK,KAAK,IAAI,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,IAAI,CAAC;CAChD"}
@@ -1,4 +1,4 @@
1
- import { Type, Token, ValueType, ClassType, FactoryType } from './base.interface';
1
+ import { Type, Token, ValueType, ClassType, FactoryType } from '@frontmcp/di';
2
2
  import { PluginMetadata } from '../metadata';
3
3
  export interface PluginInterface {
4
4
  }
@@ -6,3 +6,4 @@ export type PluginClassType<Provide> = ClassType<Provide> & PluginMetadata;
6
6
  export type PluginValueType<Provide> = ValueType<Provide> & PluginMetadata;
7
7
  export type PluginFactoryType<Provide, Tokens extends readonly Token[]> = FactoryType<Provide, Tokens> & PluginMetadata;
8
8
  export type PluginType<Provide extends PluginInterface = PluginInterface> = Type<Provide> | PluginClassType<Provide> | PluginValueType<Provide> | PluginFactoryType<Provide, readonly any[]>;
9
+ //# sourceMappingURL=plugin.interface.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"plugin.interface.d.ts","sourceRoot":"","sources":["../../../src/common/interfaces/plugin.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,KAAK,EAAE,SAAS,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAC9E,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAE7C,MAAM,WAAW,eAAe;CAAG;AAEnC,MAAM,MAAM,eAAe,CAAC,OAAO,IAAI,SAAS,CAAC,OAAO,CAAC,GAAG,cAAc,CAAC;AAC3E,MAAM,MAAM,eAAe,CAAC,OAAO,IAAI,SAAS,CAAC,OAAO,CAAC,GAAG,cAAc,CAAC;AAC3E,MAAM,MAAM,iBAAiB,CAAC,OAAO,EAAE,MAAM,SAAS,SAAS,KAAK,EAAE,IAAI,WAAW,CAAC,OAAO,EAAE,MAAM,CAAC,GAAG,cAAc,CAAC;AAExH,MAAM,MAAM,UAAU,CAAC,OAAO,SAAS,eAAe,GAAG,eAAe,IACpE,IAAI,CAAC,OAAO,CAAC,GACb,eAAe,CAAC,OAAO,CAAC,GACxB,eAAe,CAAC,OAAO,CAAC,GACxB,iBAAiB,CAAC,OAAO,EAAE,SAAS,GAAG,EAAE,CAAC,CAAC"}
@@ -1,5 +1,5 @@
1
+ import { FuncType, Token, Type } from '@frontmcp/di';
1
2
  import { PromptMetadata } from '../metadata';
2
- import { FuncType, Token, Type } from './base.interface';
3
3
  import { ProviderRegistryInterface } from './internal';
4
4
  import { FrontMcpLogger } from './logger.interface';
5
5
  import { AuthInfo } from '@modelcontextprotocol/sdk/server/auth/types.js';
@@ -8,7 +8,14 @@ import { GetPromptResult } from '@modelcontextprotocol/sdk/types.js';
8
8
  export interface PromptInterface {
9
9
  execute(args: Record<string, string>): Promise<GetPromptResult>;
10
10
  }
11
- export type PromptType = Type<PromptInterface> | FuncType<PromptInterface>;
11
+ /**
12
+ * Functional prompt pattern - returned by prompt() builder.
13
+ * A callable that returns an execute handler, with metadata attached.
14
+ */
15
+ export type FunctionalPromptType = (() => any) & {
16
+ [key: symbol]: unknown;
17
+ };
18
+ export type PromptType = Type<PromptInterface> | FuncType<PromptInterface> | FunctionalPromptType;
12
19
  type HistoryEntry<T> = {
13
20
  at: number;
14
21
  stage?: string;
@@ -52,3 +59,4 @@ export declare abstract class PromptContext {
52
59
  mark(stage: string): void;
53
60
  }
54
61
  export {};
62
+ //# sourceMappingURL=prompt.interface.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"prompt.interface.d.ts","sourceRoot":"","sources":["../../../src/common/interfaces/prompt.interface.ts"],"names":[],"mappings":"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"}
@@ -1,4 +1,4 @@
1
- import { Type, Token, ValueType, ClassType, FactoryType, ClassToken } from './base.interface';
1
+ import { Type, Token, ValueType, ClassType, FactoryType, ClassToken } from '@frontmcp/di';
2
2
  import { ProviderMetadata } from '../metadata';
3
3
  export interface ProviderInterface {
4
4
  }
@@ -18,3 +18,4 @@ export type ProviderType<Provide extends ProviderInterface = any, Tokens extends
18
18
  * });
19
19
  */
20
20
  export declare function AsyncProvider<Provide, const Tokens extends readonly (ClassToken | Token)[]>(cfg: ProviderFactoryType<Provide, Tokens>): ProviderFactoryType<Provide, Tokens>;
21
+ //# sourceMappingURL=provider.interface.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"provider.interface.d.ts","sourceRoot":"","sources":["../../../src/common/interfaces/provider.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,KAAK,EAAE,SAAS,EAAE,SAAS,EAAE,WAAW,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1F,OAAO,EAAE,gBAAgB,EAAE,MAAM,aAAa,CAAC;AAE/C,MAAM,WAAW,iBAAiB;CAAG;AAErC,MAAM,MAAM,iBAAiB,CAAC,OAAO,IAAI,SAAS,CAAC,OAAO,CAAC,GAAG,gBAAgB,CAAC;AAC/E,MAAM,MAAM,iBAAiB,CAAC,OAAO,IAAI,SAAS,CAAC,OAAO,CAAC,GAAG,gBAAgB,CAAC;AAC/E,MAAM,MAAM,mBAAmB,CAAC,OAAO,EAAE,MAAM,SAAS,SAAS,CAAC,UAAU,GAAG,KAAK,CAAC,EAAE,IAAI,WAAW,CACpG,OAAO,EACP,MAAM,CACP,GACC,gBAAgB,CAAC;AAEnB,MAAM,MAAM,YAAY,CACtB,OAAO,SAAS,iBAAiB,GAAG,GAAG,EACvC,MAAM,SAAS,SAAS,CAAC,UAAU,GAAG,KAAK,CAAC,EAAE,GAAG,SAAS,CAAC,UAAU,GAAG,KAAK,CAAC,EAAE,IAC9E,IAAI,CAAC,OAAO,CAAC,GAAG,iBAAiB,CAAC,OAAO,CAAC,GAAG,iBAAiB,CAAC,OAAO,CAAC,GAAG,mBAAmB,CAAC,OAAO,EAAE,MAAM,CAAC,CAAC;AAEnH;;;;;;;;;;GAUG;AACH,wBAAgB,aAAa,CAAC,OAAO,EAAE,KAAK,CAAC,MAAM,SAAS,SAAS,CAAC,UAAU,GAAG,KAAK,CAAC,EAAE,EACzF,GAAG,EAAE,mBAAmB,CAAC,OAAO,EAAE,MAAM,CAAC,GACxC,mBAAmB,CAAC,OAAO,EAAE,MAAM,CAAC,CAEtC"}
@@ -1,5 +1,5 @@
1
+ import { Type } from '@frontmcp/di';
1
2
  import { ResourceMetadata, ResourceTemplateMetadata } from '../metadata';
2
- import { FuncType, Type } from './base.interface';
3
3
  import { ExecutionContextBase, ExecutionContextBaseArgs } from './execution-context.interface';
4
4
  /**
5
5
  * Base interface for resource implementations.
@@ -9,12 +9,21 @@ import { ExecutionContextBase, ExecutionContextBaseArgs } from './execution-cont
9
9
  export interface ResourceInterface<Params extends Record<string, string> = Record<string, string>, Out = unknown> {
10
10
  execute(uri: string, params: Params): Promise<Out>;
11
11
  }
12
+ /**
13
+ * Function-style resource type.
14
+ * This represents resources created via resource() or resourceTemplate() builders.
15
+ * The function returns a handler that will be invoked for the resource.
16
+ */
17
+ export type FunctionResourceType = (...args: any[]) => any;
12
18
  /**
13
19
  * Type for resource class or function.
20
+ * Supports both class-based resources (implementing ResourceInterface)
21
+ * and function-style resources (created via resource/resourceTemplate builders).
22
+ *
14
23
  * @template Params - Type for URI template parameters
15
24
  * @template Out - Type for the resource output
16
25
  */
17
- export type ResourceType<Params extends Record<string, string> = Record<string, string>, Out = unknown> = Type<ResourceInterface<Params, Out>> | FuncType<ResourceInterface<Params, Out>>;
26
+ export type ResourceType<Params extends Record<string, string> = Record<string, string>, Out = unknown> = Type<ResourceInterface<Params, Out>> | FunctionResourceType;
18
27
  type HistoryEntry<T> = {
19
28
  at: number;
20
29
  stage?: string;
@@ -49,3 +58,4 @@ export declare abstract class ResourceContext<Params extends Record<string, stri
49
58
  respond(value: Out): never;
50
59
  }
51
60
  export {};
61
+ //# sourceMappingURL=resource.interface.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"resource.interface.d.ts","sourceRoot":"","sources":["../../../src/common/interfaces/resource.interface.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,IAAI,EAAE,MAAM,cAAc,CAAC;AACpC,OAAO,EAAE,gBAAgB,EAAE,wBAAwB,EAAE,MAAM,aAAa,CAAC;AAGzE,OAAO,EAAE,oBAAoB,EAAE,wBAAwB,EAAE,MAAM,+BAA+B,CAAC;AAE/F;;;;GAIG;AACH,MAAM,WAAW,iBAAiB,CAAC,MAAM,SAAS,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,EAAE,GAAG,GAAG,OAAO;IAC9G,OAAO,CAAC,GAAG,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,GAAG,CAAC,CAAC;CACpD;AAED;;;;GAIG;AACH,MAAM,MAAM,oBAAoB,GAAG,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAC;AAE3D;;;;;;;GAOG;AACH,MAAM,MAAM,YAAY,CAAC,MAAM,SAAS,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,EAAE,GAAG,GAAG,OAAO,IAClG,IAAI,CAAC,iBAAiB,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,GACpC,oBAAoB,CAAC;AAEzB,KAAK,YAAY,CAAC,CAAC,IAAI;IACrB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,CAAC,GAAG,SAAS,CAAC;IACrB,IAAI,CAAC,EAAE,MAAM,CAAC;CACf,CAAC;AAEF,MAAM,MAAM,gBAAgB,CAAC,MAAM,SAAS,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,IACzF,wBAAwB,GAAG;IACzB,QAAQ,EAAE,gBAAgB,GAAG,wBAAwB,CAAC;IACtD,GAAG,EAAE,MAAM,CAAC;IACZ,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAEJ;;;;GAIG;AACH,8BAAsB,eAAe,CACnC,MAAM,SAAS,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,EAC9D,GAAG,GAAG,OAAO,CACb,SAAQ,oBAAoB,CAAC,GAAG,CAAC;IACjC,SAAS,CAAC,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAC;IACtC,SAAS,CAAC,QAAQ,CAAC,YAAY,EAAE,MAAM,CAAC;IACxC,QAAQ,CAAC,QAAQ,EAAE,gBAAgB,GAAG,wBAAwB,CAAC;IAE/D,gCAAgC;IAChC,QAAQ,CAAC,GAAG,EAAE,MAAM,CAAC;IACrB,qEAAqE;IACrE,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC;IAGxB,OAAO,CAAC,OAAO,CAAC,CAAM;IAGtB,OAAO,CAAC,QAAQ,CAAC,cAAc,CAA2B;gBAE9C,IAAI,EAAE,gBAAgB,CAAC,MAAM,CAAC;IAgB1C,QAAQ,CAAC,OAAO,CAAC,GAAG,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,GAAG,CAAC;IAE3D,IAAW,MAAM,IAAI,GAAG,GAAG,SAAS,CAEnC;IAED,IAAW,MAAM,CAAC,CAAC,EAAE,GAAG,GAAG,SAAS,EAGnC;IAED,IAAW,aAAa,IAAI,aAAa,CAAC,YAAY,CAAC,GAAG,CAAC,CAAC,CAE3D;IAED,OAAO,CAAC,KAAK,EAAE,GAAG,GAAG,KAAK;CAK3B"}
@@ -1,5 +1,6 @@
1
- import { Type } from './base.interface';
1
+ import { Type } from '@frontmcp/di';
2
2
  export interface ScopeInterface {
3
3
  }
4
4
  export type ScopeType = Type<ScopeInterface>;
5
- export { ScopeInterface as FrontMcpScopeInterface, ScopeType as FrontMcpScopeType, };
5
+ export { ScopeInterface as FrontMcpScopeInterface, ScopeType as FrontMcpScopeType };
6
+ //# sourceMappingURL=scope.interface.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"scope.interface.d.ts","sourceRoot":"","sources":["../../../src/common/interfaces/scope.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,cAAc,CAAC;AAEpC,MAAM,WAAW,cAAc;CAAG;AAElC,MAAM,MAAM,SAAS,GAAG,IAAI,CAAC,cAAc,CAAC,CAAC;AAE7C,OAAO,EAAE,cAAc,IAAI,sBAAsB,EAAE,SAAS,IAAI,iBAAiB,EAAE,CAAC"}
@@ -53,3 +53,4 @@ export declare abstract class FrontMcpServer {
53
53
  */
54
54
  abstract start(port?: number): Promise<void> | void;
55
55
  }
56
+ //# sourceMappingURL=server.interface.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"server.interface.d.ts","sourceRoot":"","sources":["../../../src/common/interfaces/server.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,cAAc,IAAI,kBAAkB,EAAE,MAAM,MAAM,CAAC;AAC7E,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,MAAM,MAAM,UAAU,GAAG,KAAK,GAAG,MAAM,GAAG,KAAK,GAAG,OAAO,GAAG,QAAQ,GAAG,SAAS,GAAG,MAAM,CAAC;AAE1F,qBAAa,aAAc,SAAQ,eAAe;IACxC,MAAM,EAAE,UAAU,CAAC;IAC3B,IAAI,EAAE,MAAM,CAAC;IACL,GAAG,EAAE,MAAM,CAAC;IACZ,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACxC,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC,CAAC;IACzC,IAAI,CAAC,EAAE,GAAG,CAAC;IACX,WAAW,CAAC,EAAE,aAAa,CAAC;CAC7B;AAED,8BAAsB,cAAe,SAAQ,kBAAkB;IAC7D,QAAQ,CAAC,MAAM,CAAC,IAAI,EAAE,MAAM,GAAG,cAAc;IAE7C,QAAQ,CAAC,IAAI,CAAC,OAAO,EAAE,GAAG,GAAG,IAAI;IAEjC,QAAQ,CAAC,IAAI,CAAC,OAAO,EAAE,GAAG,GAAG,IAAI;IAEjC,QAAQ,CAAC,QAAQ,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;IAEpC,QAAQ,CAAC,QAAQ,CAAC,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,IAAI;CACrD;AAED,MAAM,MAAM,MAAM,GAAG,MAAM,OAAO,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;AAEhD,MAAM,MAAM,oBAAoB,GAAG,CAAC,GAAG,EAAE,aAAa,EAAE,GAAG,EAAE,cAAc,EAAE,IAAI,EAAE,MAAM,KAAK,OAAO,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;AAEnH,8BAAsB,cAAc;IAClC;;;;OAIG;IACH,QAAQ,CAAC,kBAAkB,CAAC,SAAS,EAAE,MAAM,EAAE,OAAO,EAAE,oBAAoB,GAAG,OAAO,CAAC,IAAI,CAAC,GAAG,IAAI;IAEnG;;;;;OAKG;IACH,QAAQ,CAAC,aAAa,CAAC,MAAM,EAAE,UAAU,EAAE,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,oBAAoB,GAAG,OAAO,CAAC,IAAI,CAAC,GAAG,IAAI;IAE7G;;;;OAIG;IACH,QAAQ,CAAC,eAAe,CACtB,OAAO,EAAE,oBAAoB,GAC5B,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,MAAM,GAAG,KAAK,OAAO,CAAC,IAAI,CAAC,GAAG,IAAI;IAEhE;;;OAGG;IACH,QAAQ,CAAC,OAAO,IAAI,IAAI;IAExB;;OAEG;IACH,QAAQ,CAAC,UAAU,IAAI,OAAO;IAE9B;;OAEG;IACH,QAAQ,CAAC,KAAK,CAAC,IAAI,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,GAAG,IAAI;CACpD"}
@@ -129,3 +129,4 @@ export declare enum SessionHookStage {
129
129
  */
130
130
  onMetrics = "onMetrics"
131
131
  }
132
+ //# sourceMappingURL=session-hook.interface.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"session-hook.interface.d.ts","sourceRoot":"","sources":["../../../src/common/interfaces/session-hook.interface.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;GAkBG;AACH,oBAAY,gBAAgB;IAC1B;;;;;;OAMG;IACH,iBAAiB,sBAAsB;IAEvC;;;;OAIG;IACH,gBAAgB,qBAAqB;IAErC;;;;OAIG;IACH,iBAAiB,sBAAsB;IAIvC;;;;OAIG;IACH,aAAa,kBAAkB;IAE/B;;;;OAIG;IACH,aAAa,kBAAkB,CAAE,kCAAkC;IAEnE;;;;;;OAMG;IACH,iBAAiB,sBAAsB;IAEvC;;;;;OAKG;IACH,iBAAiB,sBAAsB;IAEvC;;;;OAIG;IACH,eAAe,oBAAoB;IAInC;;;;OAIG;IACH,cAAc,mBAAmB;IAEjC;;;;OAIG;IACH,aAAa,kBAAkB;IAI/B;;;OAGG;IACH,kBAAkB,uBAAuB;IAEzC;;;OAGG;IACH,iBAAiB,sBAAsB;IAIvC;;;;;OAKG;IACH,YAAY,iBAAiB;IAE7B;;;;;;OAMG;IACH,OAAO,YAAY;IAEnB;;;;OAIG;IACH,SAAS,cAAc;IAEvB;;;;OAIG;IACH,QAAQ,aAAa;IAErB;;;;;;OAMG;IACH,SAAS,cAAc;CACxB"}
@@ -78,3 +78,4 @@ export declare enum ToolHookStage {
78
78
  /** Always runs at the very end (success or error). Cleanup/releases here. */
79
79
  willFinalizeInvoke = "willFinalizeInvoke"
80
80
  }
81
+ //# sourceMappingURL=tool-hook.interface.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tool-hook.interface.d.ts","sourceRoot":"","sources":["../../../src/common/interfaces/tool-hook.interface.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AACH,oBAAY,aAAa;IACvB;gEAC4D;IAC5D,iBAAiB,sBAAsB;IAEvC,uFAAuF;IACvF,uBAAuB,4BAA4B;IAEnD,0EAA0E;IAC1E,sBAAsB,2BAA2B;IAEjD,kFAAkF;IAClF,aAAa,kBAAkB;IAE/B,8FAA8F;IAC9F,gBAAgB,qBAAqB;IAErC,oFAAoF;IACpF,qBAAqB,0BAA0B;IAI/C,+EAA+E;IAC/E,gBAAgB,qBAAqB;IAErC,0EAA0E;IAC1E,eAAe,oBAAoB;IAEnC,2EAA2E;IAC3E,oBAAoB,yBAAyB;IAE7C,wDAAwD;IACxD,mBAAmB,wBAAwB;IAI3C,8EAA8E;IAC9E,cAAc,mBAAmB;IAEjC,sEAAsE;IACtE,iBAAiB,sBAAsB;IAEvC,2EAA2E;IAC3E,kBAAkB,uBAAuB;IAEzC,+DAA+D;IAC/D,eAAe,oBAAoB;IAEnC,2EAA2E;IAC3E,iBAAiB,sBAAsB;IAIvC,gFAAgF;IAChF,aAAa,kBAAkB;IAE/B,0EAA0E;IAC1E,WAAW,gBAAgB;IAE3B,2EAA2E;IAC3E,YAAY,iBAAiB;IAE7B,wDAAwD;IACxD,cAAc,mBAAmB;IAIjC,mHAAmH;IACnH,aAAa,kBAAkB;IAE/B,4EAA4E;IAC5E,WAAW,gBAAgB;IAE3B,gFAAgF;IAChF,UAAU,eAAe;IAIzB,8EAA8E;IAC9E,gBAAgB,qBAAqB;IAErC,2EAA2E;IAC3E,kBAAkB,uBAAuB;IAEzC,mFAAmF;IACnF,mBAAmB,wBAAwB;IAI3C,oFAAoF;IACpF,OAAO,YAAY;IAEnB,gEAAgE;IAChE,QAAQ,aAAa;IAErB,uEAAuE;IACvE,SAAS,cAAc;IAEvB,+DAA+D;IAC/D,QAAQ,aAAa;IAErB,mDAAmD;IACnD,SAAS,cAAc;IAIvB,yFAAyF;IACzF,OAAO,YAAY;IAEnB,6EAA6E;IAC7E,kBAAkB,uBAAuB;CAC1C"}
@@ -1,8 +1,8 @@
1
- import { FuncType, Type } from './base.interface';
1
+ import { FuncType, Type } from '@frontmcp/di';
2
2
  import { ToolInputType, ToolMetadata, ToolOutputType } from '../metadata';
3
3
  import { ToolInputOf, ToolOutputOf } from '../decorators';
4
4
  import { ExecutionContextBase, ExecutionContextBaseArgs } from './execution-context.interface';
5
- import type { AIPlatformType, ClientInfo } from '../../notification';
5
+ import type { AIPlatformType, ClientInfo, McpLoggingLevel } from '../../notification';
6
6
  export type ToolType<T = any> = Type<T> | FuncType<T>;
7
7
  type HistoryEntry<T> = {
8
8
  at: number;
@@ -13,6 +13,8 @@ type HistoryEntry<T> = {
13
13
  export type ToolCtorArgs<In> = ExecutionContextBaseArgs & {
14
14
  metadata: ToolMetadata;
15
15
  input: In;
16
+ /** Progress token from the request's _meta, used for progress notifications */
17
+ progressToken?: string | number;
16
18
  };
17
19
  export declare abstract class ToolContext<InSchema extends ToolInputType = ToolInputType, OutSchema extends ToolOutputType = ToolOutputType, In = ToolInputOf<{
18
20
  inputSchema: InSchema;
@@ -28,6 +30,7 @@ export declare abstract class ToolContext<InSchema extends ToolInputType = ToolI
28
30
  private _output?;
29
31
  private readonly _inputHistory;
30
32
  private readonly _outputHistory;
33
+ private readonly _progressToken?;
31
34
  constructor(args: ToolCtorArgs<In>);
32
35
  abstract execute(input: In): Promise<Out>;
33
36
  get input(): In;
@@ -37,6 +40,52 @@ export declare abstract class ToolContext<InSchema extends ToolInputType = ToolI
37
40
  set output(v: Out | undefined);
38
41
  get outputHistory(): ReadonlyArray<HistoryEntry<Out>>;
39
42
  respond(value: Out): never;
43
+ /**
44
+ * Send a notification message to the current session.
45
+ * Uses 'notifications/message' per MCP 2025-11-25 spec.
46
+ *
47
+ * @param message - The notification message (string) or structured data (object)
48
+ * @param level - Log level: 'debug', 'info', 'warning', or 'error' (default: 'info')
49
+ * @returns true if the notification was sent, false if session unavailable
50
+ *
51
+ * @example
52
+ * ```typescript
53
+ * async execute(input: Input): Promise<Output> {
54
+ * await this.notify('Starting processing...', 'info');
55
+ * await this.notify({ step: 1, total: 5, status: 'in_progress' });
56
+ * // ... processing
57
+ * await this.notify('Processing complete', 'info');
58
+ * return result;
59
+ * }
60
+ * ```
61
+ */
62
+ protected notify(message: string | Record<string, unknown>, level?: McpLoggingLevel): Promise<boolean>;
63
+ /**
64
+ * Send a progress notification to the current session.
65
+ * Uses 'notifications/progress' per MCP 2025-11-25 spec.
66
+ *
67
+ * Only works if the client requested progress updates by including a
68
+ * progressToken in the request's _meta field. If no progressToken was
69
+ * provided, this method logs a debug message and returns false.
70
+ *
71
+ * @param progress - Current progress value (should increase monotonically)
72
+ * @param total - Total progress value (optional)
73
+ * @param message - Progress message (optional)
74
+ * @returns true if the notification was sent, false if no progressToken or session
75
+ *
76
+ * @example
77
+ * ```typescript
78
+ * async execute(input: Input): Promise<Output> {
79
+ * const items = input.items;
80
+ * for (let i = 0; i < items.length; i++) {
81
+ * await this.progress(i + 1, items.length, `Processing item ${i + 1}`);
82
+ * await processItem(items[i]);
83
+ * }
84
+ * return { processed: items.length };
85
+ * }
86
+ * ```
87
+ */
88
+ protected progress(progress: number, total?: number, message?: string): Promise<boolean>;
40
89
  /**
41
90
  * Get the detected AI platform type for the current session.
42
91
  * This is auto-detected from the client info during MCP initialization.
@@ -73,3 +122,4 @@ export declare abstract class ToolContext<InSchema extends ToolInputType = ToolI
73
122
  get clientInfo(): ClientInfo | undefined;
74
123
  }
75
124
  export {};
125
+ //# sourceMappingURL=tool.interface.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tool.interface.d.ts","sourceRoot":"","sources":["../../../src/common/interfaces/tool.interface.ts"],"names":[],"mappings":"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"}
@@ -12,3 +12,4 @@ export declare const frontMcpAdapterMetadataSchema: z.ZodObject<{
12
12
  name: z.ZodString;
13
13
  description: z.ZodOptional<z.ZodString>;
14
14
  }, z.core.$loose>;
15
+ //# sourceMappingURL=adapter.metadata.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"adapter.metadata.d.ts","sourceRoot":"","sources":["../../../src/common/metadata/adapter.metadata.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB;;GAEG;AACH,MAAM,WAAW,eAAe;IAC9B,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAGD,eAAO,MAAM,6BAA6B;;;;iBAIa,CAAC"}