@frontmcp/sdk 0.4.0 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +30 -18
- package/package.json +20 -5
- package/src/app/app.registry.d.ts +3 -2
- package/src/app/app.registry.js +3 -1
- package/src/app/app.registry.js.map +1 -1
- package/src/app/instances/app.local.instance.js +2 -2
- package/src/app/instances/app.local.instance.js.map +1 -1
- package/src/auth/auth.registry.d.ts +34 -2
- package/src/auth/auth.registry.js +162 -24
- package/src/auth/auth.registry.js.map +1 -1
- package/src/auth/auth.utils.js +8 -9
- package/src/auth/auth.utils.js.map +1 -1
- package/src/auth/authorization/authorization.class.d.ts +125 -0
- package/src/auth/authorization/authorization.class.js +224 -0
- package/src/auth/authorization/authorization.class.js.map +1 -0
- package/src/auth/authorization/authorization.types.d.ts +300 -0
- package/src/auth/authorization/authorization.types.js +79 -0
- package/src/auth/authorization/authorization.types.js.map +1 -0
- package/src/auth/authorization/index.d.ts +5 -0
- package/src/auth/authorization/index.js +19 -0
- package/src/auth/authorization/index.js.map +1 -0
- package/src/auth/authorization/orchestrated.authorization.d.ts +242 -0
- package/src/auth/authorization/orchestrated.authorization.js +306 -0
- package/src/auth/authorization/orchestrated.authorization.js.map +1 -0
- package/src/auth/authorization/public.authorization.d.ts +91 -0
- package/src/auth/authorization/public.authorization.js +132 -0
- package/src/auth/authorization/public.authorization.js.map +1 -0
- package/src/auth/authorization/transparent.authorization.d.ts +130 -0
- package/src/auth/authorization/transparent.authorization.js +147 -0
- package/src/auth/authorization/transparent.authorization.js.map +1 -0
- package/src/auth/consent/consent.types.d.ts +111 -0
- package/src/auth/consent/consent.types.js +119 -0
- package/src/auth/consent/consent.types.js.map +1 -0
- package/src/auth/consent/index.d.ts +1 -0
- package/src/auth/consent/index.js +13 -0
- package/src/auth/consent/index.js.map +1 -0
- package/src/auth/detection/auth-provider-detection.d.ts +84 -0
- package/src/auth/detection/auth-provider-detection.js +230 -0
- package/src/auth/detection/auth-provider-detection.js.map +1 -0
- package/src/auth/detection/index.d.ts +1 -0
- package/src/auth/detection/index.js +15 -0
- package/src/auth/detection/index.js.map +1 -0
- package/src/auth/flows/auth.verify.flow.d.ts +110 -0
- package/src/auth/flows/auth.verify.flow.js +379 -0
- package/src/auth/flows/auth.verify.flow.js.map +1 -0
- package/src/auth/flows/oauth.authorize.flow.d.ts +118 -164
- package/src/auth/flows/oauth.authorize.flow.js +701 -33
- package/src/auth/flows/oauth.authorize.flow.js.map +1 -1
- package/src/auth/flows/oauth.callback.flow.d.ts +117 -0
- package/src/auth/flows/oauth.callback.flow.js +357 -0
- package/src/auth/flows/oauth.callback.flow.js.map +1 -0
- package/src/auth/flows/oauth.register.flow.d.ts +32 -125
- package/src/auth/flows/oauth.token.flow.d.ts +52 -154
- package/src/auth/flows/oauth.token.flow.js +193 -55
- package/src/auth/flows/oauth.token.flow.js.map +1 -1
- package/src/auth/flows/session.verify.flow.d.ts +66 -321
- package/src/auth/flows/session.verify.flow.js +107 -18
- package/src/auth/flows/session.verify.flow.js.map +1 -1
- package/src/auth/flows/well-known.jwks.flow.d.ts +34 -205
- package/src/auth/flows/well-known.jwks.flow.js +15 -8
- package/src/auth/flows/well-known.jwks.flow.js.map +1 -1
- package/src/auth/flows/well-known.oauth-authorization-server.flow.d.ts +48 -223
- package/src/auth/flows/well-known.oauth-authorization-server.flow.js +2 -3
- package/src/auth/flows/well-known.oauth-authorization-server.flow.js.map +1 -1
- package/src/auth/flows/well-known.prm.flow.d.ts +19 -120
- package/src/auth/flows/well-known.prm.flow.js +3 -4
- package/src/auth/flows/well-known.prm.flow.js.map +1 -1
- package/src/auth/instances/instance.local-primary-auth.d.ts +91 -4
- package/src/auth/instances/instance.local-primary-auth.js +236 -6
- package/src/auth/instances/instance.local-primary-auth.js.map +1 -1
- package/src/auth/instances/instance.remote-primary-auth.d.ts +4 -3
- package/src/auth/instances/instance.remote-primary-auth.js +2 -2
- package/src/auth/instances/instance.remote-primary-auth.js.map +1 -1
- package/src/auth/session/authorization-vault.d.ts +611 -0
- package/src/auth/session/authorization-vault.js +817 -0
- package/src/auth/session/authorization-vault.js.map +1 -0
- package/src/auth/session/authorization.store.d.ts +301 -0
- package/src/auth/session/authorization.store.js +323 -0
- package/src/auth/session/authorization.store.js.map +1 -0
- package/src/auth/session/encrypted-authorization-vault.d.ts +181 -0
- package/src/auth/session/encrypted-authorization-vault.js +493 -0
- package/src/auth/session/encrypted-authorization-vault.js.map +1 -0
- package/src/auth/session/index.d.ts +4 -4
- package/src/auth/session/index.js +11 -7
- package/src/auth/session/index.js.map +1 -1
- package/src/auth/session/session.schema.d.ts +1 -1
- package/src/auth/session/session.service.d.ts +1 -1
- package/src/auth/session/transport-session.manager.d.ts +101 -0
- package/src/auth/session/transport-session.manager.js +300 -0
- package/src/auth/session/transport-session.manager.js.map +1 -0
- package/src/auth/session/transport-session.types.d.ts +457 -0
- package/src/auth/session/transport-session.types.js +110 -0
- package/src/auth/session/transport-session.types.js.map +1 -0
- package/src/auth/session/utils/session-id.utils.d.ts +14 -2
- package/src/auth/session/utils/session-id.utils.js +68 -19
- package/src/auth/session/utils/session-id.utils.js.map +1 -1
- package/src/auth/session/vault-encryption.d.ts +189 -0
- package/src/auth/session/vault-encryption.js +263 -0
- package/src/auth/session/vault-encryption.js.map +1 -0
- package/src/auth/ui/base-layout.d.ts +188 -0
- package/src/auth/ui/base-layout.js +292 -0
- package/src/auth/ui/base-layout.js.map +1 -0
- package/src/auth/ui/htmx-templates.d.ts +135 -0
- package/src/auth/ui/htmx-templates.js +433 -0
- package/src/auth/ui/htmx-templates.js.map +1 -0
- package/src/auth/ui/index.d.ts +11 -0
- package/src/auth/ui/index.js +35 -0
- package/src/auth/ui/index.js.map +1 -0
- package/src/auth/utils/audience.validator.d.ts +129 -0
- package/src/auth/utils/audience.validator.js +196 -0
- package/src/auth/utils/audience.validator.js.map +1 -0
- package/src/auth/utils/index.d.ts +2 -0
- package/src/auth/utils/index.js +7 -0
- package/src/auth/utils/index.js.map +1 -0
- package/src/auth/utils/www-authenticate.utils.d.ts +97 -0
- package/src/auth/utils/www-authenticate.utils.js +183 -0
- package/src/auth/utils/www-authenticate.utils.js.map +1 -0
- package/src/common/common.schema.d.ts +2 -16
- package/src/common/constants.d.ts +3 -0
- package/src/common/constants.js +6 -1
- package/src/common/constants.js.map +1 -1
- package/src/common/decorators/decorator-utils.d.ts +131 -0
- package/src/common/decorators/decorator-utils.js +195 -0
- package/src/common/decorators/decorator-utils.js.map +1 -0
- package/src/common/decorators/front-mcp.decorator.js +3 -2
- package/src/common/decorators/front-mcp.decorator.js.map +1 -1
- package/src/common/decorators/hook.decorator.d.ts +58 -2
- package/src/common/decorators/hook.decorator.js +127 -17
- package/src/common/decorators/hook.decorator.js.map +1 -1
- package/src/common/decorators/plugin.decorator.d.ts +1 -1
- package/src/common/decorators/plugin.decorator.js +11 -10
- package/src/common/decorators/plugin.decorator.js.map +1 -1
- package/src/common/decorators/resource.decorator.d.ts +32 -3
- package/src/common/decorators/resource.decorator.js +46 -4
- package/src/common/decorators/resource.decorator.js.map +1 -1
- package/src/common/decorators/tool.decorator.d.ts +54 -5
- package/src/common/decorators/tool.decorator.js.map +1 -1
- package/src/common/dynamic/dynamic.plugin.d.ts +22 -11
- package/src/common/dynamic/dynamic.plugin.js +7 -1
- package/src/common/dynamic/dynamic.plugin.js.map +1 -1
- package/src/common/entries/prompt.entry.d.ts +46 -2
- package/src/common/entries/prompt.entry.js +10 -0
- package/src/common/entries/prompt.entry.js.map +1 -1
- package/src/common/entries/resource.entry.d.ts +69 -6
- package/src/common/entries/resource.entry.js +27 -3
- package/src/common/entries/resource.entry.js.map +1 -1
- package/src/common/entries/scope.entry.d.ts +5 -1
- package/src/common/entries/scope.entry.js +3 -3
- package/src/common/entries/scope.entry.js.map +1 -1
- package/src/common/flow/flow.utils.d.ts +56 -0
- package/src/common/flow/flow.utils.js +96 -0
- package/src/common/flow/flow.utils.js.map +1 -0
- package/src/common/index.d.ts +2 -2
- package/src/common/index.js +2 -2
- package/src/common/index.js.map +1 -1
- package/src/common/interfaces/execution-context.interface.d.ts +59 -0
- package/src/common/interfaces/execution-context.interface.js +81 -0
- package/src/common/interfaces/execution-context.interface.js.map +1 -0
- package/src/common/interfaces/flow.interface.d.ts +1 -1
- package/src/common/interfaces/flow.interface.js.map +1 -1
- package/src/common/interfaces/index.d.ts +1 -0
- package/src/common/interfaces/index.js +1 -0
- package/src/common/interfaces/index.js.map +1 -1
- package/src/common/interfaces/internal/primary-auth-provider.interface.d.ts +17 -2
- package/src/common/interfaces/internal/primary-auth-provider.interface.js +52 -4
- package/src/common/interfaces/internal/primary-auth-provider.interface.js.map +1 -1
- package/src/common/interfaces/internal/registry.interface.d.ts +16 -2
- package/src/common/interfaces/internal/registry.interface.js.map +1 -1
- package/src/common/interfaces/plugin.interface.js.map +1 -1
- package/src/common/interfaces/prompt.interface.d.ts +53 -4
- package/src/common/interfaces/prompt.interface.js +78 -0
- package/src/common/interfaces/prompt.interface.js.map +1 -1
- package/src/common/interfaces/resource.interface.d.ts +47 -17
- package/src/common/interfaces/resource.interface.js +53 -0
- package/src/common/interfaces/resource.interface.js.map +1 -1
- package/src/common/interfaces/tool.interface.d.ts +39 -22
- package/src/common/interfaces/tool.interface.js +61 -34
- package/src/common/interfaces/tool.interface.js.map +1 -1
- package/src/common/metadata/adapter.metadata.d.ts +1 -9
- package/src/common/metadata/app.metadata.d.ts +425 -730
- package/src/common/metadata/auth-provider.metadata.d.ts +2 -12
- package/src/common/metadata/flow.metadata.d.ts +10 -25
- package/src/common/metadata/front-mcp.metadata.d.ts +602 -1023
- package/src/common/metadata/front-mcp.metadata.js +6 -4
- package/src/common/metadata/front-mcp.metadata.js.map +1 -1
- package/src/common/metadata/hook.metadata.d.ts +1 -1
- package/src/common/metadata/hook.metadata.js.map +1 -1
- package/src/common/metadata/index.d.ts +1 -0
- package/src/common/metadata/index.js +1 -0
- package/src/common/metadata/index.js.map +1 -1
- package/src/common/metadata/logger.metadata.d.ts +1 -9
- package/src/common/metadata/plugin.metadata.d.ts +8 -30
- package/src/common/metadata/prompt.metadata.d.ts +4 -161
- package/src/common/metadata/provider.metadata.d.ts +2 -12
- package/src/common/metadata/resource.metadata.d.ts +6 -98
- package/src/common/metadata/resource.metadata.js +15 -6
- package/src/common/metadata/resource.metadata.js.map +1 -1
- package/src/common/metadata/tool-ui.metadata.d.ts +10 -0
- package/src/common/metadata/tool-ui.metadata.js +12 -0
- package/src/common/metadata/tool-ui.metadata.js.map +1 -0
- package/src/common/metadata/tool.metadata.d.ts +78 -199
- package/src/common/metadata/tool.metadata.js +11 -14
- package/src/common/metadata/tool.metadata.js.map +1 -1
- package/src/common/providers/base-config.provider.d.ts +84 -0
- package/src/common/providers/base-config.provider.js +128 -0
- package/src/common/providers/base-config.provider.js.map +1 -0
- package/src/common/records/plugin.record.d.ts +5 -6
- package/src/common/records/plugin.record.js.map +1 -1
- package/src/common/records/prompt.record.js.map +1 -1
- package/src/common/records/resource.record.d.ts +17 -1
- package/src/common/records/resource.record.js +12 -6
- package/src/common/records/resource.record.js.map +1 -1
- package/src/common/records/tool.record.js.map +1 -1
- package/src/common/schemas/annotated-class.schema.d.ts +9 -9
- package/src/common/schemas/annotated-class.schema.js +92 -27
- package/src/common/schemas/annotated-class.schema.js.map +1 -1
- package/src/common/schemas/http-input.schema.d.ts +6 -30
- package/src/common/schemas/http-output.schema.d.ts +326 -1630
- package/src/common/schemas/http-output.schema.js +39 -1
- package/src/common/schemas/http-output.schema.js.map +1 -1
- package/src/common/tokens/front-mcp.tokens.js +4 -1
- package/src/common/tokens/front-mcp.tokens.js.map +1 -1
- package/src/common/tokens/resource.tokens.d.ts +2 -0
- package/src/common/tokens/resource.tokens.js +4 -1
- package/src/common/tokens/resource.tokens.js.map +1 -1
- package/src/common/tokens/tool.tokens.d.ts +2 -0
- package/src/common/tokens/tool.tokens.js +2 -0
- package/src/common/tokens/tool.tokens.js.map +1 -1
- package/src/common/types/auth/jwt.types.d.ts +5 -31
- package/src/common/types/auth/session.types.d.ts +97 -192
- package/src/common/types/auth/session.types.js +24 -11
- package/src/common/types/auth/session.types.js.map +1 -1
- package/src/common/types/options/auth.options.d.ts +1013 -490
- package/src/common/types/options/auth.options.js +554 -36
- package/src/common/types/options/auth.options.js.map +1 -1
- package/src/common/types/options/http.options.d.ts +1 -9
- package/src/common/types/options/logging.options.d.ts +7 -13
- package/src/common/types/options/logging.options.js +4 -0
- package/src/common/types/options/logging.options.js.map +1 -1
- package/src/common/types/options/server-info.options.d.ts +3 -31
- package/src/common/types/options/session.options.d.ts +90 -10
- package/src/common/types/options/session.options.js +26 -3
- package/src/common/types/options/session.options.js.map +1 -1
- package/src/common/utils/decide-request-intent.utils.d.ts +8 -46
- package/src/common/utils/decide-request-intent.utils.js +88 -23
- package/src/common/utils/decide-request-intent.utils.js.map +1 -1
- package/src/completion/flows/complete.flow.d.ts +74 -0
- package/src/completion/flows/complete.flow.js +199 -0
- package/src/completion/flows/complete.flow.js.map +1 -0
- package/src/errors/authorization-required.error.d.ts +189 -0
- package/src/errors/authorization-required.error.js +274 -0
- package/src/errors/authorization-required.error.js.map +1 -0
- package/src/errors/index.d.ts +2 -1
- package/src/errors/index.js +17 -1
- package/src/errors/index.js.map +1 -1
- package/src/errors/mcp.error.d.ts +101 -1
- package/src/errors/mcp.error.js +147 -2
- package/src/errors/mcp.error.js.map +1 -1
- package/src/flows/flow.instance.js +4 -3
- package/src/flows/flow.instance.js.map +1 -1
- package/src/flows/flow.registry.js.map +1 -1
- package/src/flows/flow.stages.js +14 -11
- package/src/flows/flow.stages.js.map +1 -1
- package/src/front-mcp/front-mcp.providers.d.ts +464 -102
- package/src/front-mcp/front-mcp.providers.js +3 -5
- package/src/front-mcp/front-mcp.providers.js.map +1 -1
- package/src/hooks/hook.instance.d.ts +1 -1
- package/src/hooks/hook.instance.js +5 -2
- package/src/hooks/hook.instance.js.map +1 -1
- package/src/hooks/hook.registry.js +7 -5
- package/src/hooks/hook.registry.js.map +1 -1
- package/src/index.d.ts +28 -9
- package/src/index.js +5 -1
- package/src/index.js.map +1 -1
- package/src/logger/instances/instance.logger.js +3 -2
- package/src/logger/instances/instance.logger.js.map +1 -1
- package/src/logger/logger.registry.js +7 -2
- package/src/logger/logger.registry.js.map +1 -1
- package/src/logging/flows/set-level.flow.d.ts +62 -0
- package/src/logging/flows/set-level.flow.js +108 -0
- package/src/logging/flows/set-level.flow.js.map +1 -0
- package/src/mcp-apps/csp.d.ts +111 -0
- package/src/mcp-apps/csp.js +267 -0
- package/src/mcp-apps/csp.js.map +1 -0
- package/src/mcp-apps/index.d.ts +23 -0
- package/src/mcp-apps/index.js +91 -0
- package/src/mcp-apps/index.js.map +1 -0
- package/src/mcp-apps/schemas.d.ts +403 -0
- package/src/mcp-apps/schemas.js +345 -0
- package/src/mcp-apps/schemas.js.map +1 -0
- package/src/mcp-apps/template.d.ts +94 -0
- package/src/mcp-apps/template.js +419 -0
- package/src/mcp-apps/template.js.map +1 -0
- package/src/mcp-apps/types.d.ts +323 -0
- package/src/mcp-apps/types.js +59 -0
- package/src/mcp-apps/types.js.map +1 -0
- package/src/notification/index.d.ts +1 -0
- package/src/notification/index.js +13 -0
- package/src/notification/index.js.map +1 -0
- package/src/notification/notification.service.d.ts +378 -0
- package/src/notification/notification.service.js +727 -0
- package/src/notification/notification.service.js.map +1 -0
- package/src/plugin/plugin.registry.js +12 -9
- package/src/plugin/plugin.registry.js.map +1 -1
- package/src/prompt/flows/get-prompt.flow.d.ts +153 -0
- package/src/prompt/flows/get-prompt.flow.js +214 -0
- package/src/prompt/flows/get-prompt.flow.js.map +1 -0
- package/src/prompt/flows/prompts-list.flow.d.ts +67 -0
- package/src/prompt/flows/prompts-list.flow.js +176 -0
- package/src/prompt/flows/prompts-list.flow.js.map +1 -0
- package/src/prompt/index.d.ts +7 -0
- package/src/prompt/index.js +17 -0
- package/src/prompt/index.js.map +1 -0
- package/src/prompt/prompt.events.d.ts +17 -0
- package/src/prompt/prompt.events.js +25 -0
- package/src/prompt/prompt.events.js.map +1 -0
- package/src/prompt/prompt.instance.d.ts +30 -0
- package/src/prompt/prompt.instance.js +120 -0
- package/src/prompt/prompt.instance.js.map +1 -0
- package/src/prompt/prompt.registry.d.ts +79 -12
- package/src/prompt/prompt.registry.js +360 -15
- package/src/prompt/prompt.registry.js.map +1 -1
- package/src/prompt/prompt.types.d.ts +26 -0
- package/src/prompt/prompt.types.js +11 -0
- package/src/prompt/prompt.types.js.map +1 -0
- package/src/prompt/prompt.utils.d.ts +26 -0
- package/src/prompt/prompt.utils.js +136 -0
- package/src/prompt/prompt.utils.js.map +1 -0
- package/src/provider/provider.registry.d.ts +12 -5
- package/src/provider/provider.registry.js +30 -138
- package/src/provider/provider.registry.js.map +1 -1
- package/src/regsitry/registry.base.d.ts +1 -1
- package/src/regsitry/registry.base.js.map +1 -1
- package/src/resource/flows/read-resource.flow.d.ts +91 -0
- package/src/resource/flows/read-resource.flow.js +270 -0
- package/src/resource/flows/read-resource.flow.js.map +1 -0
- package/src/resource/flows/resource-templates-list.flow.d.ts +64 -0
- package/src/resource/flows/resource-templates-list.flow.js +191 -0
- package/src/resource/flows/resource-templates-list.flow.js.map +1 -0
- package/src/resource/flows/resources-list.flow.d.ts +64 -0
- package/src/resource/flows/resources-list.flow.js +196 -0
- package/src/resource/flows/resources-list.flow.js.map +1 -0
- package/src/resource/flows/subscribe-resource.flow.d.ts +45 -0
- package/src/resource/flows/subscribe-resource.flow.js +123 -0
- package/src/resource/flows/subscribe-resource.flow.js.map +1 -0
- package/src/resource/flows/unsubscribe-resource.flow.d.ts +44 -0
- package/src/resource/flows/unsubscribe-resource.flow.js +107 -0
- package/src/resource/flows/unsubscribe-resource.flow.js.map +1 -0
- package/src/resource/index.d.ts +8 -0
- package/src/resource/index.js +20 -0
- package/src/resource/index.js.map +1 -0
- package/src/resource/resource.events.d.ts +24 -0
- package/src/resource/resource.events.js +17 -0
- package/src/resource/resource.events.js.map +1 -0
- package/src/resource/resource.instance.d.ts +35 -0
- package/src/resource/resource.instance.js +163 -0
- package/src/resource/resource.instance.js.map +1 -0
- package/src/resource/resource.registry.d.ts +106 -12
- package/src/resource/resource.registry.js +449 -13
- package/src/resource/resource.registry.js.map +1 -1
- package/src/resource/resource.types.d.ts +35 -0
- package/src/resource/resource.types.js +11 -0
- package/src/resource/resource.types.js.map +1 -0
- package/src/resource/resource.utils.d.ts +30 -0
- package/src/resource/resource.utils.js +151 -0
- package/src/resource/resource.utils.js.map +1 -0
- package/src/scope/flows/http.request.flow.d.ts +48 -330
- package/src/scope/flows/http.request.flow.js +306 -78
- package/src/scope/flows/http.request.flow.js.map +1 -1
- package/src/scope/scope.instance.d.ts +12 -0
- package/src/scope/scope.instance.js +145 -15
- package/src/scope/scope.instance.js.map +1 -1
- package/src/tool/flows/call-tool.flow.d.ts +64 -1110
- package/src/tool/flows/call-tool.flow.js +303 -15
- package/src/tool/flows/call-tool.flow.js.map +1 -1
- package/src/tool/flows/tools-list.flow.d.ts +32 -473
- package/src/tool/flows/tools-list.flow.js +111 -10
- package/src/tool/flows/tools-list.flow.js.map +1 -1
- package/src/tool/tool.events.d.ts +8 -1
- package/src/tool/tool.events.js.map +1 -1
- package/src/tool/tool.instance.d.ts +3 -1
- package/src/tool/tool.instance.js +17 -3
- package/src/tool/tool.instance.js.map +1 -1
- package/src/tool/tool.registry.d.ts +7 -1
- package/src/tool/tool.registry.js +26 -10
- package/src/tool/tool.registry.js.map +1 -1
- package/src/tool/tool.types.d.ts +4 -4
- package/src/tool/tool.types.js.map +1 -1
- package/src/tool/tool.utils.d.ts +3 -12
- package/src/tool/tool.utils.js +39 -193
- package/src/tool/tool.utils.js.map +1 -1
- package/src/tool/ui/index.d.ts +22 -0
- package/src/tool/ui/index.js +63 -0
- package/src/tool/ui/index.js.map +1 -0
- package/src/tool/ui/platform-adapters.d.ts +10 -0
- package/src/tool/ui/platform-adapters.js +18 -0
- package/src/tool/ui/platform-adapters.js.map +1 -0
- package/src/tool/ui/template-helpers.d.ts +46 -0
- package/src/tool/ui/template-helpers.js +112 -0
- package/src/tool/ui/template-helpers.js.map +1 -0
- package/src/tool/ui/ui-resource-template.d.ts +34 -0
- package/src/tool/ui/ui-resource-template.js +64 -0
- package/src/tool/ui/ui-resource-template.js.map +1 -0
- package/src/tool/ui/ui-resource.handler.d.ts +74 -0
- package/src/tool/ui/ui-resource.handler.js +129 -0
- package/src/tool/ui/ui-resource.handler.js.map +1 -0
- package/src/transport/adapters/transport.local.adapter.d.ts +2 -2
- package/src/transport/adapters/transport.local.adapter.js +28 -7
- package/src/transport/adapters/transport.local.adapter.js.map +1 -1
- package/src/transport/adapters/transport.sse.adapter.d.ts +2 -2
- package/src/transport/adapters/transport.sse.adapter.js +4 -3
- package/src/transport/adapters/transport.sse.adapter.js.map +1 -1
- package/src/transport/adapters/transport.streamable-http.adapter.d.ts +10 -3
- package/src/transport/adapters/transport.streamable-http.adapter.js +54 -8
- package/src/transport/adapters/transport.streamable-http.adapter.js.map +1 -1
- package/src/transport/flows/handle.sse.flow.d.ts +29 -63
- package/src/transport/flows/handle.sse.flow.js +78 -10
- package/src/transport/flows/handle.sse.flow.js.map +1 -1
- package/src/transport/flows/handle.stateless-http.flow.d.ts +29 -0
- package/src/transport/flows/handle.stateless-http.flow.js +102 -0
- package/src/transport/flows/handle.stateless-http.flow.js.map +1 -0
- package/src/transport/flows/handle.streamable-http.flow.d.ts +32 -64
- package/src/transport/flows/handle.streamable-http.flow.js +158 -26
- package/src/transport/flows/handle.streamable-http.flow.js.map +1 -1
- package/src/transport/legacy/legacy.sse.tranporter.d.ts +9 -0
- package/src/transport/legacy/legacy.sse.tranporter.js +17 -2
- package/src/transport/legacy/legacy.sse.tranporter.js.map +1 -1
- package/src/transport/mcp-handlers/call-tool-request.handler.js +27 -1
- package/src/transport/mcp-handlers/call-tool-request.handler.js.map +1 -1
- package/src/transport/mcp-handlers/complete-request.handler.d.ts +69 -0
- package/src/transport/mcp-handlers/complete-request.handler.js +11 -0
- package/src/transport/mcp-handlers/complete-request.handler.js.map +1 -0
- package/src/transport/mcp-handlers/get-prompt-request.handler.d.ts +87 -0
- package/src/transport/mcp-handlers/get-prompt-request.handler.js +11 -0
- package/src/transport/mcp-handlers/get-prompt-request.handler.js.map +1 -0
- package/src/transport/mcp-handlers/index.d.ts +517 -208
- package/src/transport/mcp-handlers/index.js +39 -2
- package/src/transport/mcp-handlers/index.js.map +1 -1
- package/src/transport/mcp-handlers/initialize-request.handler.d.ts +1 -1
- package/src/transport/mcp-handlers/initialize-request.handler.js +73 -7
- package/src/transport/mcp-handlers/initialize-request.handler.js.map +1 -1
- package/src/transport/mcp-handlers/list-prompts-request.handler.d.ts +54 -0
- package/src/transport/mcp-handlers/list-prompts-request.handler.js +11 -0
- package/src/transport/mcp-handlers/list-prompts-request.handler.js.map +1 -0
- package/src/transport/mcp-handlers/list-resource-templates-request.handler.d.ts +51 -0
- package/src/transport/mcp-handlers/list-resource-templates-request.handler.js +12 -0
- package/src/transport/mcp-handlers/list-resource-templates-request.handler.js.map +1 -0
- package/src/transport/mcp-handlers/list-resources-request.handler.d.ts +51 -0
- package/src/transport/mcp-handlers/list-resources-request.handler.js +12 -0
- package/src/transport/mcp-handlers/list-resources-request.handler.js.map +1 -0
- package/src/transport/mcp-handlers/list-tools-request.handler.d.ts +19 -146
- package/src/transport/mcp-handlers/logging-set-level-request.handler.d.ts +46 -0
- package/src/transport/mcp-handlers/logging-set-level-request.handler.js +34 -0
- package/src/transport/mcp-handlers/logging-set-level-request.handler.js.map +1 -0
- package/src/transport/mcp-handlers/mcp-handlers.types.d.ts +3 -7
- package/src/transport/mcp-handlers/mcp-handlers.types.js.map +1 -1
- package/src/transport/mcp-handlers/read-resource-request.handler.d.ts +46 -0
- package/src/transport/mcp-handlers/read-resource-request.handler.js +12 -0
- package/src/transport/mcp-handlers/read-resource-request.handler.js.map +1 -0
- package/src/transport/mcp-handlers/roots-list-changed-notification.handler.d.ts +11 -0
- package/src/transport/mcp-handlers/roots-list-changed-notification.handler.js +26 -0
- package/src/transport/mcp-handlers/roots-list-changed-notification.handler.js.map +1 -0
- package/src/transport/mcp-handlers/subscribe-request.handler.d.ts +37 -0
- package/src/transport/mcp-handlers/subscribe-request.handler.js +34 -0
- package/src/transport/mcp-handlers/subscribe-request.handler.js.map +1 -0
- package/src/transport/mcp-handlers/unsubscribe-request.handler.d.ts +37 -0
- package/src/transport/mcp-handlers/unsubscribe-request.handler.js +34 -0
- package/src/transport/mcp-handlers/unsubscribe-request.handler.js.map +1 -0
- package/src/transport/transport.local.js +7 -2
- package/src/transport/transport.local.js.map +1 -1
- package/src/transport/transport.registry.d.ts +30 -0
- package/src/transport/transport.registry.js +84 -1
- package/src/transport/transport.registry.js.map +1 -1
- package/src/transport/transport.types.d.ts +3 -3
- package/src/transport/transport.types.js.map +1 -1
- package/src/utils/content.utils.d.ts +48 -0
- package/src/utils/content.utils.js +194 -0
- package/src/utils/content.utils.js.map +1 -0
- package/src/utils/index.d.ts +8 -0
- package/src/utils/index.js +55 -0
- package/src/utils/index.js.map +1 -0
- package/src/utils/lineage.utils.d.ts +40 -0
- package/src/utils/lineage.utils.js +82 -0
- package/src/utils/lineage.utils.js.map +1 -0
- package/src/utils/naming.utils.d.ts +46 -0
- package/src/utils/naming.utils.js +136 -0
- package/src/utils/naming.utils.js.map +1 -0
- package/src/utils/types.utils.d.ts +2 -2
- package/src/utils/types.utils.js.map +1 -1
- package/src/utils/uri-template.utils.d.ts +57 -0
- package/src/utils/uri-template.utils.js +113 -0
- package/src/utils/uri-template.utils.js.map +1 -0
- package/src/utils/uri-validation.utils.d.ts +40 -0
- package/src/utils/uri-validation.utils.js +76 -0
- package/src/utils/uri-validation.utils.js.map +1 -0
- package/src/__test-utils__/fixtures/hook.fixtures.d.ts +0 -46
- package/src/__test-utils__/fixtures/hook.fixtures.js +0 -114
- package/src/__test-utils__/fixtures/hook.fixtures.js.map +0 -1
- package/src/__test-utils__/fixtures/index.d.ts +0 -7
- package/src/__test-utils__/fixtures/index.js +0 -11
- package/src/__test-utils__/fixtures/index.js.map +0 -1
- package/src/__test-utils__/fixtures/plugin.fixtures.d.ts +0 -46
- package/src/__test-utils__/fixtures/plugin.fixtures.js +0 -127
- package/src/__test-utils__/fixtures/plugin.fixtures.js.map +0 -1
- package/src/__test-utils__/fixtures/provider.fixtures.d.ts +0 -69
- package/src/__test-utils__/fixtures/provider.fixtures.js +0 -131
- package/src/__test-utils__/fixtures/provider.fixtures.js.map +0 -1
- package/src/__test-utils__/fixtures/scope.fixtures.d.ts +0 -14
- package/src/__test-utils__/fixtures/scope.fixtures.js +0 -59
- package/src/__test-utils__/fixtures/scope.fixtures.js.map +0 -1
- package/src/__test-utils__/fixtures/tool.fixtures.d.ts +0 -36
- package/src/__test-utils__/fixtures/tool.fixtures.js +0 -91
- package/src/__test-utils__/fixtures/tool.fixtures.js.map +0 -1
- package/src/__test-utils__/helpers/assertion.helpers.d.ts +0 -45
- package/src/__test-utils__/helpers/assertion.helpers.js +0 -153
- package/src/__test-utils__/helpers/assertion.helpers.js.map +0 -1
- package/src/__test-utils__/helpers/async.helpers.d.ts +0 -48
- package/src/__test-utils__/helpers/async.helpers.js +0 -112
- package/src/__test-utils__/helpers/async.helpers.js.map +0 -1
- package/src/__test-utils__/helpers/index.d.ts +0 -6
- package/src/__test-utils__/helpers/index.js +0 -10
- package/src/__test-utils__/helpers/index.js.map +0 -1
- package/src/__test-utils__/helpers/setup.helpers.d.ts +0 -54
- package/src/__test-utils__/helpers/setup.helpers.js +0 -106
- package/src/__test-utils__/helpers/setup.helpers.js.map +0 -1
- package/src/__test-utils__/index.d.ts +0 -9
- package/src/__test-utils__/index.js +0 -14
- package/src/__test-utils__/index.js.map +0 -1
- package/src/__test-utils__/mocks/flow-instance.mock.d.ts +0 -50
- package/src/__test-utils__/mocks/flow-instance.mock.js +0 -72
- package/src/__test-utils__/mocks/flow-instance.mock.js.map +0 -1
- package/src/__test-utils__/mocks/hook-registry.mock.d.ts +0 -25
- package/src/__test-utils__/mocks/hook-registry.mock.js +0 -65
- package/src/__test-utils__/mocks/hook-registry.mock.js.map +0 -1
- package/src/__test-utils__/mocks/index.d.ts +0 -8
- package/src/__test-utils__/mocks/index.js +0 -12
- package/src/__test-utils__/mocks/index.js.map +0 -1
- package/src/__test-utils__/mocks/plugin-registry.mock.d.ts +0 -43
- package/src/__test-utils__/mocks/plugin-registry.mock.js +0 -70
- package/src/__test-utils__/mocks/plugin-registry.mock.js.map +0 -1
- package/src/__test-utils__/mocks/provider-registry.mock.d.ts +0 -39
- package/src/__test-utils__/mocks/provider-registry.mock.js +0 -72
- package/src/__test-utils__/mocks/provider-registry.mock.js.map +0 -1
- package/src/__test-utils__/mocks/tool-registry.mock.d.ts +0 -43
- package/src/__test-utils__/mocks/tool-registry.mock.js +0 -79
- package/src/__test-utils__/mocks/tool-registry.mock.js.map +0 -1
- package/src/auth/path.utils.d.ts +0 -20
- package/src/auth/path.utils.js +0 -71
- package/src/auth/path.utils.js.map +0 -1
- package/src/common/decorators-old/async-with.decorator.d.ts +0 -10
- package/src/common/decorators-old/async-with.decorator.js +0 -24
- package/src/common/decorators-old/async-with.decorator.js.map +0 -1
- package/src/common/decorators-old/auth-hook.decorator.d.ts +0 -14
- package/src/common/decorators-old/auth-hook.decorator.js +0 -27
- package/src/common/decorators-old/auth-hook.decorator.js.map +0 -1
- package/src/common/decorators-old/session-hook.decorator.d.ts +0 -14
- package/src/common/decorators-old/session-hook.decorator.js +0 -27
- package/src/common/decorators-old/session-hook.decorator.js.map +0 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"read-resource.flow.js","sourceRoot":"","sources":["../../../../src/resource/flows/read-resource.flow.ts"],"names":[],"mappings":"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","sourcesContent":["// file: libs/sdk/src/resource/flows/read-resource.flow.ts\n\nimport { Flow, FlowBase, FlowHooksOf, FlowPlan, FlowRunOptions, ResourceContext, ResourceEntry } from '../../common';\nimport { z } from 'zod';\nimport { ReadResourceRequestSchema, ReadResourceResultSchema } from '@modelcontextprotocol/sdk/types.js';\nimport { AuthInfo } from '@modelcontextprotocol/sdk/server/auth/types.js';\nimport {\n InvalidMethodError,\n ResourceNotFoundError,\n InvalidInputError,\n InvalidOutputError,\n ResourceReadError,\n} from '../../errors';\nimport { isUIResourceUri, handleUIResourceRead } from '../../tool/ui';\nimport { Scope } from '../../scope';\n\nconst inputSchema = z.object({\n request: ReadResourceRequestSchema,\n // z.any() used because ctx is the MCP SDK's ResourceReadExtra type which varies by SDK version\n ctx: z.any(),\n});\n\nconst outputSchema = ReadResourceResultSchema;\n\nconst stateSchema = z.object({\n input: z.object({\n uri: z.string().min(1),\n }),\n // z.any() used because AuthInfo is a complex external type from @modelcontextprotocol/sdk\n authInfo: z.any().optional() as z.ZodType<AuthInfo>,\n params: z.record(z.string(), z.string()).default({}), // URI template parameters\n // z.any() used because ResourceEntry is a complex abstract class type\n resource: z.any() as z.ZodType<ResourceEntry>,\n // z.any() used because ResourceContext is a complex abstract class type\n resourceContext: z.any() as z.ZodType<ResourceContext>,\n // z.any() used because resource output type varies by resource implementation\n rawOutput: z.any().optional(),\n output: outputSchema,\n // Resource owner ID for hook filtering (stored in state instead of mutating rawInput)\n resourceOwnerId: z.string().optional(),\n // Session ID for platform type detection\n sessionId: z.string().optional(),\n // Flag indicating this is a UI resource (ui:// scheme)\n isUIResource: z.boolean().default(false),\n // Pre-resolved UI resource result (if isUIResource is true)\n uiResourceResult: outputSchema.optional(),\n});\n\nconst plan = {\n pre: ['parseInput', 'findResource', 'createResourceContext'],\n execute: ['execute', 'validateOutput'],\n finalize: ['finalize'],\n} as const satisfies FlowPlan<string>;\n\ndeclare global {\n interface ExtendFlows {\n 'resources:read-resource': FlowRunOptions<\n ReadResourceFlow,\n typeof plan,\n typeof inputSchema,\n typeof outputSchema,\n typeof stateSchema\n >;\n }\n}\n\nconst name = 'resources:read-resource' as const;\nconst { Stage } = FlowHooksOf<'resources:read-resource'>(name);\n\n@Flow({\n name,\n plan,\n inputSchema,\n outputSchema,\n access: 'authorized',\n})\nexport default class ReadResourceFlow extends FlowBase<typeof name> {\n logger = this.scopeLogger.child('ReadResourceFlow');\n\n @Stage('parseInput')\n async parseInput() {\n this.logger.verbose('parseInput:start');\n\n let method!: string;\n let params: any;\n let ctx: any;\n try {\n const inputData = inputSchema.parse(this.rawInput);\n method = inputData.request.method;\n params = inputData.request.params;\n ctx = inputData.ctx;\n } catch (e) {\n throw new InvalidInputError('Invalid Input', e instanceof z.ZodError ? e.issues : undefined);\n }\n\n if (method !== 'resources/read') {\n this.logger.warn(`parseInput: invalid method \"${method}\"`);\n throw new InvalidMethodError(method, 'resources/read');\n }\n\n // Extract sessionId from context for platform type detection\n const sessionId = (ctx as Record<string, unknown> | undefined)?.['sessionId'];\n\n this.state.set({\n input: params,\n authInfo: ctx.authInfo,\n sessionId: typeof sessionId === 'string' ? sessionId : undefined,\n });\n this.logger.verbose('parseInput:done');\n }\n\n @Stage('findResource')\n async findResource() {\n this.logger.verbose('findResource:start');\n\n const { uri } = this.state.required.input;\n this.logger.info(`findResource: looking for resource with URI \"${uri}\"`);\n\n // Check for UI resource URIs (ui://...) first\n if (isUIResourceUri(uri)) {\n this.logger.info(`findResource: detected UI resource URI \"${uri}\"`);\n\n // Get the ToolUIRegistry from the scope\n const scope = this.scope as Scope;\n\n // Get platform type: first check sessionIdPayload (detected from user-agent),\n // then fall back to notification service (detected from MCP clientInfo)\n const { sessionId, authInfo } = this.state;\n const platformType =\n authInfo?.sessionIdPayload?.platformType ??\n (sessionId ? scope.notifications.getPlatformType(sessionId) : undefined);\n\n this.logger.verbose(`findResource: platform type for session: ${platformType ?? 'unknown'}`);\n\n const uiResult = handleUIResourceRead(uri, scope.toolUI, platformType);\n\n if (uiResult.handled) {\n if (uiResult.error) {\n this.logger.warn(`findResource: UI resource error - ${uiResult.error}`);\n throw new ResourceNotFoundError(uri);\n }\n\n // Store the UI resource result and mark as UI resource\n this.state.set('isUIResource', true);\n this.state.set('uiResourceResult', uiResult.result);\n this.logger.info(`findResource: UI resource \"${uri}\" resolved from cache`);\n this.logger.verbose('findResource:done');\n return;\n }\n }\n\n // Try to find a resource that matches this URI\n // First try exact URI match, then template matching\n const match = this.scope.resources.findResourceForUri(uri);\n\n if (!match) {\n this.logger.warn(`findResource: resource for URI \"${uri}\" not found`);\n throw new ResourceNotFoundError(uri);\n }\n\n // Store resource owner ID in flow state for hook filtering\n if (match.instance.owner) {\n this.state.set('resourceOwnerId', match.instance.owner.id);\n }\n\n this.logger = this.logger.child(`ReadResourceFlow(${uri})`);\n this.state.set('resource', match.instance);\n this.state.set('params', match.params);\n this.logger.info(`findResource: resource \"${match.instance.name}\" found (template: ${match.instance.isTemplate})`);\n this.logger.verbose('findResource:done');\n }\n\n @Stage('createResourceContext')\n async createResourceContext() {\n this.logger.verbose('createResourceContext:start');\n\n // Skip for UI resources - they're already resolved\n if (this.state.isUIResource) {\n this.logger.verbose('createResourceContext: skipping for UI resource');\n return;\n }\n\n const { ctx } = this.input;\n const { resource, input, params } = this.state.required;\n\n try {\n const context = resource.create(input.uri, params, ctx);\n const resourceHooks = this.scope.hooks.getClsHooks(resource.record.provide).map((hook) => {\n hook.run = async () => {\n return context[hook.metadata.method]();\n };\n return hook;\n });\n\n this.appendContextHooks(resourceHooks);\n context.mark('createResourceContext');\n this.state.set('resourceContext', context);\n this.logger.verbose('createResourceContext:done');\n } catch (error) {\n this.logger.error('createResourceContext: failed to create context', error);\n throw new ResourceReadError(input.uri, error instanceof Error ? error : undefined);\n }\n }\n\n @Stage('execute')\n async execute() {\n this.logger.verbose('execute:start');\n\n // Skip for UI resources - they're already resolved\n if (this.state.isUIResource) {\n this.logger.verbose('execute: skipping for UI resource');\n return;\n }\n\n const resourceContext = this.state.resourceContext;\n const { input, params } = this.state.required;\n\n if (!resourceContext) {\n this.logger.warn('execute: resourceContext not found, skipping execution');\n return;\n }\n resourceContext.mark('execute');\n\n try {\n resourceContext.output = await resourceContext.execute(input.uri, params);\n this.logger.verbose('execute:done');\n } catch (error) {\n this.logger.error('execute: resource read failed', error);\n throw new ResourceReadError(input.uri, error instanceof Error ? error : undefined);\n }\n }\n\n @Stage('validateOutput')\n async validateOutput() {\n this.logger.verbose('validateOutput:start');\n\n // Skip for UI resources - they're already resolved\n if (this.state.isUIResource) {\n this.logger.verbose('validateOutput: skipping for UI resource');\n return;\n }\n\n const { resourceContext } = this.state;\n if (!resourceContext) {\n this.logger.warn('validateOutput: resourceContext not found, skipping validation');\n return;\n }\n resourceContext.mark('validateOutput');\n\n // Store the RAW output for plugins to inspect\n this.state.set('rawOutput', resourceContext.output);\n\n this.logger.verbose('validateOutput:done');\n }\n\n @Stage('finalize')\n async finalize() {\n this.logger.verbose('finalize:start');\n\n // Handle UI resources - return the pre-resolved result\n if (this.state.isUIResource) {\n const { uiResourceResult, input } = this.state;\n\n if (!uiResourceResult) {\n this.logger.error('finalize: UI resource result not found in state');\n throw new ResourceReadError(input?.uri || 'unknown', new Error('UI resource result not found'));\n }\n\n this.respond(uiResourceResult);\n this.logger.verbose('finalize:done (UI resource)');\n return;\n }\n\n const { resource, rawOutput, input } = this.state;\n\n if (!resource) {\n this.logger.error('finalize: resource not found in state');\n throw new ResourceReadError('unknown', new Error('Resource not found in state'));\n }\n\n if (rawOutput === undefined) {\n this.logger.error('finalize: resource output not found in state');\n throw new ResourceReadError(input?.uri || 'unknown', new Error('Resource output not found'));\n }\n\n // Parse and construct the MCP-compliant output using safeParseOutput\n const parseResult = resource.safeParseOutput(rawOutput);\n\n if (!parseResult.success) {\n this.logger.error('finalize: output validation failed', {\n resource: resource.metadata.name,\n errors: parseResult.error,\n });\n\n throw new InvalidOutputError();\n }\n\n // Respond with the properly formatted MCP result\n this.respond(parseResult.data);\n this.logger.verbose('finalize:done');\n }\n}\n"]}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import { FlowBase, FlowRunOptions, ResourceEntry } from '../../common';
|
|
2
|
+
import 'reflect-metadata';
|
|
3
|
+
import { z } from 'zod';
|
|
4
|
+
declare const inputSchema: z.ZodObject<{
|
|
5
|
+
request: z.ZodObject<{
|
|
6
|
+
params: z.ZodOptional<z.ZodObject<{
|
|
7
|
+
_meta: z.ZodOptional<z.ZodObject<{
|
|
8
|
+
progressToken: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
9
|
+
}, z.core.$loose>>;
|
|
10
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
11
|
+
}, z.core.$loose>>;
|
|
12
|
+
method: z.ZodLiteral<"resources/templates/list">;
|
|
13
|
+
}, z.core.$strip>;
|
|
14
|
+
ctx: z.ZodUnknown;
|
|
15
|
+
}, z.core.$strip>;
|
|
16
|
+
declare const outputSchema: z.ZodObject<{
|
|
17
|
+
_meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
18
|
+
nextCursor: z.ZodOptional<z.ZodString>;
|
|
19
|
+
resourceTemplates: z.ZodArray<z.ZodObject<{
|
|
20
|
+
uriTemplate: z.ZodString;
|
|
21
|
+
description: z.ZodOptional<z.ZodString>;
|
|
22
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
23
|
+
_meta: z.ZodOptional<z.ZodObject<{}, z.core.$loose>>;
|
|
24
|
+
icons: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
25
|
+
src: z.ZodString;
|
|
26
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
27
|
+
sizes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
28
|
+
}, z.core.$strip>>>;
|
|
29
|
+
name: z.ZodString;
|
|
30
|
+
title: z.ZodOptional<z.ZodString>;
|
|
31
|
+
}, z.core.$strip>>;
|
|
32
|
+
}, z.core.$loose>;
|
|
33
|
+
declare const stateSchema: z.ZodObject<{
|
|
34
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
35
|
+
templates: z.ZodArray<z.ZodObject<{
|
|
36
|
+
ownerName: z.ZodString;
|
|
37
|
+
template: z.ZodCustom<ResourceEntry<Record<string, string>, unknown>, ResourceEntry<Record<string, string>, unknown>>;
|
|
38
|
+
}, z.core.$strip>>;
|
|
39
|
+
resolvedTemplates: z.ZodArray<z.ZodObject<{
|
|
40
|
+
ownerName: z.ZodString;
|
|
41
|
+
template: z.ZodCustom<ResourceEntry<Record<string, string>, unknown>, ResourceEntry<Record<string, string>, unknown>>;
|
|
42
|
+
finalName: z.ZodString;
|
|
43
|
+
}, z.core.$strip>>;
|
|
44
|
+
}, z.core.$strip>;
|
|
45
|
+
declare const plan: {
|
|
46
|
+
readonly pre: ["parseInput"];
|
|
47
|
+
readonly execute: ["findTemplates", "resolveConflicts"];
|
|
48
|
+
readonly post: ["parseTemplates"];
|
|
49
|
+
};
|
|
50
|
+
declare global {
|
|
51
|
+
interface ExtendFlows {
|
|
52
|
+
'resources:list-resource-templates': FlowRunOptions<ResourceTemplatesListFlow, typeof plan, typeof inputSchema, typeof outputSchema, typeof stateSchema>;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
declare const name: "resources:list-resource-templates";
|
|
56
|
+
export default class ResourceTemplatesListFlow extends FlowBase<typeof name> {
|
|
57
|
+
logger: import("../../common").FrontMcpLogger;
|
|
58
|
+
private sample;
|
|
59
|
+
parseInput(): Promise<void>;
|
|
60
|
+
findTemplates(): Promise<void>;
|
|
61
|
+
resolveConflicts(): Promise<void>;
|
|
62
|
+
parseTemplates(): Promise<void>;
|
|
63
|
+
}
|
|
64
|
+
export {};
|
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// file: libs/sdk/src/resource/flows/resource-templates-list.flow.ts
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
5
|
+
const common_1 = require("../../common");
|
|
6
|
+
require("reflect-metadata");
|
|
7
|
+
const zod_1 = require("zod");
|
|
8
|
+
const types_js_1 = require("@modelcontextprotocol/sdk/types.js");
|
|
9
|
+
const errors_1 = require("../../errors");
|
|
10
|
+
const inputSchema = zod_1.z.object({
|
|
11
|
+
request: types_js_1.ListResourceTemplatesRequestSchema,
|
|
12
|
+
ctx: zod_1.z.unknown(),
|
|
13
|
+
});
|
|
14
|
+
const outputSchema = types_js_1.ListResourceTemplatesResultSchema;
|
|
15
|
+
const stateSchema = zod_1.z.object({
|
|
16
|
+
cursor: zod_1.z.string().optional(),
|
|
17
|
+
templates: zod_1.z.array(zod_1.z.object({
|
|
18
|
+
ownerName: zod_1.z.string(),
|
|
19
|
+
template: zod_1.z.instanceof(common_1.ResourceEntry),
|
|
20
|
+
})),
|
|
21
|
+
resolvedTemplates: zod_1.z.array(zod_1.z.object({
|
|
22
|
+
ownerName: zod_1.z.string(),
|
|
23
|
+
template: zod_1.z.instanceof(common_1.ResourceEntry),
|
|
24
|
+
finalName: zod_1.z.string(),
|
|
25
|
+
})),
|
|
26
|
+
});
|
|
27
|
+
const plan = {
|
|
28
|
+
pre: ['parseInput'],
|
|
29
|
+
execute: ['findTemplates', 'resolveConflicts'],
|
|
30
|
+
post: ['parseTemplates'],
|
|
31
|
+
};
|
|
32
|
+
const name = 'resources:list-resource-templates';
|
|
33
|
+
const { Stage } = (0, common_1.FlowHooksOf)('resources:list-resource-templates');
|
|
34
|
+
let ResourceTemplatesListFlow = class ResourceTemplatesListFlow extends common_1.FlowBase {
|
|
35
|
+
logger = this.scopeLogger.child('ResourceTemplatesListFlow');
|
|
36
|
+
sample(arr, n = 5) {
|
|
37
|
+
return arr.slice(0, n);
|
|
38
|
+
}
|
|
39
|
+
async parseInput() {
|
|
40
|
+
this.logger.verbose('parseInput:start');
|
|
41
|
+
let method;
|
|
42
|
+
let params;
|
|
43
|
+
try {
|
|
44
|
+
const inputData = inputSchema.parse(this.rawInput);
|
|
45
|
+
method = inputData.request.method;
|
|
46
|
+
params = inputData.request.params;
|
|
47
|
+
}
|
|
48
|
+
catch (e) {
|
|
49
|
+
throw new errors_1.InvalidInputError('Invalid request format', e instanceof zod_1.z.ZodError ? e.issues : undefined);
|
|
50
|
+
}
|
|
51
|
+
if (method !== 'resources/templates/list') {
|
|
52
|
+
this.logger.warn(`parseInput: invalid method "${method}"`);
|
|
53
|
+
throw new errors_1.InvalidMethodError(method, 'resources/templates/list');
|
|
54
|
+
}
|
|
55
|
+
const cursor = params?.cursor;
|
|
56
|
+
if (cursor)
|
|
57
|
+
this.logger.verbose(`parseInput: cursor=${cursor}`);
|
|
58
|
+
this.state.set('cursor', cursor);
|
|
59
|
+
this.logger.verbose('parseInput:done');
|
|
60
|
+
}
|
|
61
|
+
async findTemplates() {
|
|
62
|
+
this.logger.info('findTemplates:start');
|
|
63
|
+
try {
|
|
64
|
+
const templates = [];
|
|
65
|
+
// Get resource templates from scope's resource registry
|
|
66
|
+
const scopeTemplates = this.scope.resources.getResourceTemplates();
|
|
67
|
+
this.logger.verbose(`findTemplates: scope templates=${scopeTemplates.length}`);
|
|
68
|
+
for (const template of scopeTemplates) {
|
|
69
|
+
templates.push({ ownerName: template.owner.id, template });
|
|
70
|
+
}
|
|
71
|
+
this.logger.info(`findTemplates: total templates collected=${templates.length}`);
|
|
72
|
+
if (templates.length === 0) {
|
|
73
|
+
this.logger.warn('findTemplates: no resource templates found');
|
|
74
|
+
}
|
|
75
|
+
this.state.set('templates', templates);
|
|
76
|
+
this.logger.verbose('findTemplates:done');
|
|
77
|
+
}
|
|
78
|
+
catch (error) {
|
|
79
|
+
this.logger.error('findTemplates: failed to collect templates', error);
|
|
80
|
+
throw error;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
async resolveConflicts() {
|
|
84
|
+
this.logger.verbose('resolveConflicts:start');
|
|
85
|
+
try {
|
|
86
|
+
const found = this.state.required.templates;
|
|
87
|
+
const counts = new Map();
|
|
88
|
+
for (const { template } of found) {
|
|
89
|
+
const baseName = template.metadata.name;
|
|
90
|
+
counts.set(baseName, (counts.get(baseName) ?? 0) + 1);
|
|
91
|
+
}
|
|
92
|
+
const conflicts = new Set([...counts.entries()].filter(([, n]) => n > 1).map(([k]) => k));
|
|
93
|
+
if (conflicts.size > 0) {
|
|
94
|
+
const preview = this.sample(Array.from(conflicts)).join(', ');
|
|
95
|
+
const extra = conflicts.size > 5 ? `, +${conflicts.size - 5} more` : '';
|
|
96
|
+
this.logger.warn(`resolveConflicts: ${conflicts.size} name conflict(s) detected: ${preview}${extra}`);
|
|
97
|
+
}
|
|
98
|
+
else {
|
|
99
|
+
this.logger.info('resolveConflicts: no name conflicts detected');
|
|
100
|
+
}
|
|
101
|
+
const resolved = found.map(({ ownerName, template }) => {
|
|
102
|
+
const baseName = template.metadata.name;
|
|
103
|
+
const finalName = conflicts.has(baseName) ? `${ownerName}:${baseName}` : baseName;
|
|
104
|
+
return { ownerName, template, finalName };
|
|
105
|
+
});
|
|
106
|
+
this.state.set('resolvedTemplates', resolved);
|
|
107
|
+
this.logger.verbose('resolveConflicts:done');
|
|
108
|
+
}
|
|
109
|
+
catch (error) {
|
|
110
|
+
this.logger.error('resolveConflicts: failed to resolve conflicts', error);
|
|
111
|
+
throw error;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
async parseTemplates() {
|
|
115
|
+
this.logger.verbose('parseTemplates:start');
|
|
116
|
+
try {
|
|
117
|
+
const resolved = this.state.required.resolvedTemplates;
|
|
118
|
+
const resourceTemplates = resolved
|
|
119
|
+
.filter(({ template }) => template.uriTemplate != null)
|
|
120
|
+
.map(({ finalName, template }) => {
|
|
121
|
+
// Extract uriTemplate with type narrowing (guaranteed by filter above)
|
|
122
|
+
const uriTemplate = template.uriTemplate;
|
|
123
|
+
const item = {
|
|
124
|
+
uriTemplate,
|
|
125
|
+
name: finalName,
|
|
126
|
+
title: template.metadata.title,
|
|
127
|
+
description: template.metadata.description,
|
|
128
|
+
mimeType: template.metadata.mimeType,
|
|
129
|
+
icons: template.metadata.icons,
|
|
130
|
+
};
|
|
131
|
+
// Add OpenAI _meta for skybridge widget templates
|
|
132
|
+
// This is CRITICAL for ChatGPT to discover widget-producing resources
|
|
133
|
+
if (template.metadata.mimeType === 'text/html+skybridge') {
|
|
134
|
+
item._meta = {
|
|
135
|
+
'openai/outputTemplate': uriTemplate,
|
|
136
|
+
'openai/resultCanProduceWidget': true,
|
|
137
|
+
'openai/widgetAccessible': true,
|
|
138
|
+
};
|
|
139
|
+
}
|
|
140
|
+
return item;
|
|
141
|
+
});
|
|
142
|
+
const preview = this.sample(resourceTemplates.map((t) => t.name)).join(', ');
|
|
143
|
+
const extra = resourceTemplates.length > 5 ? `, +${resourceTemplates.length - 5} more` : '';
|
|
144
|
+
this.logger.info(`parseTemplates: prepared ${resourceTemplates.length} template descriptor(s): ${preview}${extra}`);
|
|
145
|
+
this.respond({ resourceTemplates });
|
|
146
|
+
this.logger.info('parseTemplates: response sent');
|
|
147
|
+
this.logger.verbose('parseTemplates:done');
|
|
148
|
+
}
|
|
149
|
+
catch (error) {
|
|
150
|
+
if (error instanceof common_1.FlowControl)
|
|
151
|
+
throw error;
|
|
152
|
+
this.logger.error('parseTemplates: failed to parse templates', error);
|
|
153
|
+
throw error;
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
};
|
|
157
|
+
tslib_1.__decorate([
|
|
158
|
+
Stage('parseInput'),
|
|
159
|
+
tslib_1.__metadata("design:type", Function),
|
|
160
|
+
tslib_1.__metadata("design:paramtypes", []),
|
|
161
|
+
tslib_1.__metadata("design:returntype", Promise)
|
|
162
|
+
], ResourceTemplatesListFlow.prototype, "parseInput", null);
|
|
163
|
+
tslib_1.__decorate([
|
|
164
|
+
Stage('findTemplates'),
|
|
165
|
+
tslib_1.__metadata("design:type", Function),
|
|
166
|
+
tslib_1.__metadata("design:paramtypes", []),
|
|
167
|
+
tslib_1.__metadata("design:returntype", Promise)
|
|
168
|
+
], ResourceTemplatesListFlow.prototype, "findTemplates", null);
|
|
169
|
+
tslib_1.__decorate([
|
|
170
|
+
Stage('resolveConflicts'),
|
|
171
|
+
tslib_1.__metadata("design:type", Function),
|
|
172
|
+
tslib_1.__metadata("design:paramtypes", []),
|
|
173
|
+
tslib_1.__metadata("design:returntype", Promise)
|
|
174
|
+
], ResourceTemplatesListFlow.prototype, "resolveConflicts", null);
|
|
175
|
+
tslib_1.__decorate([
|
|
176
|
+
Stage('parseTemplates'),
|
|
177
|
+
tslib_1.__metadata("design:type", Function),
|
|
178
|
+
tslib_1.__metadata("design:paramtypes", []),
|
|
179
|
+
tslib_1.__metadata("design:returntype", Promise)
|
|
180
|
+
], ResourceTemplatesListFlow.prototype, "parseTemplates", null);
|
|
181
|
+
ResourceTemplatesListFlow = tslib_1.__decorate([
|
|
182
|
+
(0, common_1.Flow)({
|
|
183
|
+
name,
|
|
184
|
+
plan,
|
|
185
|
+
inputSchema,
|
|
186
|
+
outputSchema,
|
|
187
|
+
access: 'authorized',
|
|
188
|
+
})
|
|
189
|
+
], ResourceTemplatesListFlow);
|
|
190
|
+
exports.default = ResourceTemplatesListFlow;
|
|
191
|
+
//# sourceMappingURL=resource-templates-list.flow.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"resource-templates-list.flow.js","sourceRoot":"","sources":["../../../../src/resource/flows/resource-templates-list.flow.ts"],"names":[],"mappings":"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","sourcesContent":["// file: libs/sdk/src/resource/flows/resource-templates-list.flow.ts\n\nimport { Flow, FlowBase, FlowControl, FlowHooksOf, FlowPlan, FlowRunOptions, ResourceEntry } from '../../common';\nimport 'reflect-metadata';\nimport { z } from 'zod';\nimport {\n ListResourceTemplatesRequestSchema,\n ListResourceTemplatesResultSchema,\n ResourceTemplate,\n} from '@modelcontextprotocol/sdk/types.js';\nimport { InvalidMethodError, InvalidInputError } from '../../errors';\n\nconst inputSchema = z.object({\n request: ListResourceTemplatesRequestSchema,\n ctx: z.unknown(),\n});\n\nconst outputSchema = ListResourceTemplatesResultSchema;\n\nconst stateSchema = z.object({\n cursor: z.string().optional(),\n templates: z.array(\n z.object({\n ownerName: z.string(),\n template: z.instanceof(ResourceEntry),\n }),\n ),\n resolvedTemplates: z.array(\n z.object({\n ownerName: z.string(),\n template: z.instanceof(ResourceEntry),\n finalName: z.string(),\n }),\n ),\n});\n\ntype ResponseTemplateItem = ResourceTemplate;\n\nconst plan = {\n pre: ['parseInput'],\n execute: ['findTemplates', 'resolveConflicts'],\n post: ['parseTemplates'],\n} as const satisfies FlowPlan<string>;\n\ndeclare global {\n interface ExtendFlows {\n 'resources:list-resource-templates': FlowRunOptions<\n ResourceTemplatesListFlow,\n typeof plan,\n typeof inputSchema,\n typeof outputSchema,\n typeof stateSchema\n >;\n }\n}\n\nconst name = 'resources:list-resource-templates' as const;\nconst { Stage } = FlowHooksOf('resources:list-resource-templates');\n\n@Flow({\n name,\n plan,\n inputSchema,\n outputSchema,\n access: 'authorized',\n})\nexport default class ResourceTemplatesListFlow extends FlowBase<typeof name> {\n logger = this.scopeLogger.child('ResourceTemplatesListFlow');\n\n private sample<T>(arr: T[], n = 5): T[] {\n return arr.slice(0, n);\n }\n\n @Stage('parseInput')\n async parseInput() {\n this.logger.verbose('parseInput:start');\n\n let method!: string;\n let params: any;\n try {\n const inputData = inputSchema.parse(this.rawInput);\n method = inputData.request.method;\n params = inputData.request.params;\n } catch (e) {\n throw new InvalidInputError('Invalid request format', e instanceof z.ZodError ? e.issues : undefined);\n }\n\n if (method !== 'resources/templates/list') {\n this.logger.warn(`parseInput: invalid method \"${method}\"`);\n throw new InvalidMethodError(method, 'resources/templates/list');\n }\n\n const cursor = params?.cursor;\n if (cursor) this.logger.verbose(`parseInput: cursor=${cursor}`);\n this.state.set('cursor', cursor);\n this.logger.verbose('parseInput:done');\n }\n\n @Stage('findTemplates')\n async findTemplates() {\n this.logger.info('findTemplates:start');\n\n try {\n const templates: Array<{ ownerName: string; template: ResourceEntry }> = [];\n\n // Get resource templates from scope's resource registry\n const scopeTemplates = this.scope.resources.getResourceTemplates();\n this.logger.verbose(`findTemplates: scope templates=${scopeTemplates.length}`);\n\n for (const template of scopeTemplates) {\n templates.push({ ownerName: template.owner.id, template });\n }\n\n this.logger.info(`findTemplates: total templates collected=${templates.length}`);\n if (templates.length === 0) {\n this.logger.warn('findTemplates: no resource templates found');\n }\n\n this.state.set('templates', templates);\n this.logger.verbose('findTemplates:done');\n } catch (error) {\n this.logger.error('findTemplates: failed to collect templates', error);\n throw error;\n }\n }\n\n @Stage('resolveConflicts')\n async resolveConflicts() {\n this.logger.verbose('resolveConflicts:start');\n\n try {\n const found = this.state.required.templates;\n\n const counts = new Map<string, number>();\n for (const { template } of found) {\n const baseName = template.metadata.name;\n counts.set(baseName, (counts.get(baseName) ?? 0) + 1);\n }\n\n const conflicts = new Set<string>([...counts.entries()].filter(([, n]) => n > 1).map(([k]) => k));\n\n if (conflicts.size > 0) {\n const preview = this.sample(Array.from(conflicts)).join(', ');\n const extra = conflicts.size > 5 ? `, +${conflicts.size - 5} more` : '';\n this.logger.warn(`resolveConflicts: ${conflicts.size} name conflict(s) detected: ${preview}${extra}`);\n } else {\n this.logger.info('resolveConflicts: no name conflicts detected');\n }\n\n const resolved = found.map(({ ownerName, template }) => {\n const baseName = template.metadata.name;\n const finalName = conflicts.has(baseName) ? `${ownerName}:${baseName}` : baseName;\n return { ownerName, template, finalName };\n });\n\n this.state.set('resolvedTemplates', resolved);\n this.logger.verbose('resolveConflicts:done');\n } catch (error) {\n this.logger.error('resolveConflicts: failed to resolve conflicts', error);\n throw error;\n }\n }\n\n @Stage('parseTemplates')\n async parseTemplates() {\n this.logger.verbose('parseTemplates:start');\n\n try {\n const resolved = this.state.required.resolvedTemplates;\n\n const resourceTemplates: ResponseTemplateItem[] = resolved\n .filter(({ template }) => template.uriTemplate != null)\n .map(({ finalName, template }) => {\n // Extract uriTemplate with type narrowing (guaranteed by filter above)\n const uriTemplate = template.uriTemplate as string;\n\n const item: ResponseTemplateItem = {\n uriTemplate,\n name: finalName,\n title: template.metadata.title,\n description: template.metadata.description,\n mimeType: template.metadata.mimeType,\n icons: template.metadata.icons,\n };\n\n // Add OpenAI _meta for skybridge widget templates\n // This is CRITICAL for ChatGPT to discover widget-producing resources\n if (template.metadata.mimeType === 'text/html+skybridge') {\n item._meta = {\n 'openai/outputTemplate': uriTemplate,\n 'openai/resultCanProduceWidget': true,\n 'openai/widgetAccessible': true,\n };\n }\n\n return item;\n });\n\n const preview = this.sample(resourceTemplates.map((t) => t.name)).join(', ');\n const extra = resourceTemplates.length > 5 ? `, +${resourceTemplates.length - 5} more` : '';\n this.logger.info(\n `parseTemplates: prepared ${resourceTemplates.length} template descriptor(s): ${preview}${extra}`,\n );\n\n this.respond({ resourceTemplates });\n this.logger.info('parseTemplates: response sent');\n this.logger.verbose('parseTemplates:done');\n } catch (error) {\n if (error instanceof FlowControl) throw error;\n this.logger.error('parseTemplates: failed to parse templates', error);\n throw error;\n }\n }\n}\n"]}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import { FlowBase, FlowRunOptions, ResourceEntry } from '../../common';
|
|
2
|
+
import 'reflect-metadata';
|
|
3
|
+
import { z } from 'zod';
|
|
4
|
+
declare const inputSchema: z.ZodObject<{
|
|
5
|
+
request: z.ZodObject<{
|
|
6
|
+
params: z.ZodOptional<z.ZodObject<{
|
|
7
|
+
_meta: z.ZodOptional<z.ZodObject<{
|
|
8
|
+
progressToken: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
9
|
+
}, z.core.$loose>>;
|
|
10
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
11
|
+
}, z.core.$loose>>;
|
|
12
|
+
method: z.ZodLiteral<"resources/list">;
|
|
13
|
+
}, z.core.$strip>;
|
|
14
|
+
ctx: z.ZodUnknown;
|
|
15
|
+
}, z.core.$strip>;
|
|
16
|
+
declare const outputSchema: z.ZodObject<{
|
|
17
|
+
_meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
18
|
+
nextCursor: z.ZodOptional<z.ZodString>;
|
|
19
|
+
resources: z.ZodArray<z.ZodObject<{
|
|
20
|
+
uri: z.ZodString;
|
|
21
|
+
description: z.ZodOptional<z.ZodString>;
|
|
22
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
23
|
+
_meta: z.ZodOptional<z.ZodObject<{}, z.core.$loose>>;
|
|
24
|
+
icons: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
25
|
+
src: z.ZodString;
|
|
26
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
27
|
+
sizes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
28
|
+
}, z.core.$strip>>>;
|
|
29
|
+
name: z.ZodString;
|
|
30
|
+
title: z.ZodOptional<z.ZodString>;
|
|
31
|
+
}, z.core.$strip>>;
|
|
32
|
+
}, z.core.$loose>;
|
|
33
|
+
declare const stateSchema: z.ZodObject<{
|
|
34
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
35
|
+
resources: z.ZodArray<z.ZodObject<{
|
|
36
|
+
ownerName: z.ZodString;
|
|
37
|
+
resource: z.ZodCustom<ResourceEntry<Record<string, string>, unknown>, ResourceEntry<Record<string, string>, unknown>>;
|
|
38
|
+
}, z.core.$strip>>;
|
|
39
|
+
resolvedResources: z.ZodArray<z.ZodObject<{
|
|
40
|
+
ownerName: z.ZodString;
|
|
41
|
+
resource: z.ZodCustom<ResourceEntry<Record<string, string>, unknown>, ResourceEntry<Record<string, string>, unknown>>;
|
|
42
|
+
finalName: z.ZodString;
|
|
43
|
+
}, z.core.$strip>>;
|
|
44
|
+
}, z.core.$strip>;
|
|
45
|
+
declare const plan: {
|
|
46
|
+
readonly pre: ["parseInput"];
|
|
47
|
+
readonly execute: ["findResources", "resolveConflicts"];
|
|
48
|
+
readonly post: ["parseResources"];
|
|
49
|
+
};
|
|
50
|
+
declare global {
|
|
51
|
+
interface ExtendFlows {
|
|
52
|
+
'resources:list-resources': FlowRunOptions<ResourcesListFlow, typeof plan, typeof inputSchema, typeof outputSchema, typeof stateSchema>;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
declare const name: "resources:list-resources";
|
|
56
|
+
export default class ResourcesListFlow extends FlowBase<typeof name> {
|
|
57
|
+
logger: import("../../common").FrontMcpLogger;
|
|
58
|
+
private sample;
|
|
59
|
+
parseInput(): Promise<void>;
|
|
60
|
+
findResources(): Promise<void>;
|
|
61
|
+
resolveConflicts(): Promise<void>;
|
|
62
|
+
parseResources(): Promise<void>;
|
|
63
|
+
}
|
|
64
|
+
export {};
|
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// file: libs/sdk/src/resource/flows/resources-list.flow.ts
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
5
|
+
const common_1 = require("../../common");
|
|
6
|
+
require("reflect-metadata");
|
|
7
|
+
const zod_1 = require("zod");
|
|
8
|
+
const types_js_1 = require("@modelcontextprotocol/sdk/types.js");
|
|
9
|
+
const errors_1 = require("../../errors");
|
|
10
|
+
const inputSchema = zod_1.z.object({
|
|
11
|
+
request: types_js_1.ListResourcesRequestSchema,
|
|
12
|
+
ctx: zod_1.z.unknown(),
|
|
13
|
+
});
|
|
14
|
+
const outputSchema = types_js_1.ListResourcesResultSchema;
|
|
15
|
+
const stateSchema = zod_1.z.object({
|
|
16
|
+
cursor: zod_1.z.string().optional(),
|
|
17
|
+
resources: zod_1.z.array(zod_1.z.object({
|
|
18
|
+
ownerName: zod_1.z.string(),
|
|
19
|
+
resource: zod_1.z.instanceof(common_1.ResourceEntry),
|
|
20
|
+
})),
|
|
21
|
+
resolvedResources: zod_1.z.array(zod_1.z.object({
|
|
22
|
+
ownerName: zod_1.z.string(),
|
|
23
|
+
resource: zod_1.z.instanceof(common_1.ResourceEntry),
|
|
24
|
+
finalName: zod_1.z.string(),
|
|
25
|
+
})),
|
|
26
|
+
});
|
|
27
|
+
const plan = {
|
|
28
|
+
pre: ['parseInput'],
|
|
29
|
+
execute: ['findResources', 'resolveConflicts'],
|
|
30
|
+
post: ['parseResources'],
|
|
31
|
+
};
|
|
32
|
+
const name = 'resources:list-resources';
|
|
33
|
+
const { Stage } = (0, common_1.FlowHooksOf)('resources:list-resources');
|
|
34
|
+
let ResourcesListFlow = class ResourcesListFlow extends common_1.FlowBase {
|
|
35
|
+
logger = this.scopeLogger.child('ResourcesListFlow');
|
|
36
|
+
sample(arr, n = 5) {
|
|
37
|
+
return arr.slice(0, n);
|
|
38
|
+
}
|
|
39
|
+
async parseInput() {
|
|
40
|
+
this.logger.verbose('parseInput:start');
|
|
41
|
+
let method;
|
|
42
|
+
let params;
|
|
43
|
+
try {
|
|
44
|
+
const inputData = inputSchema.parse(this.rawInput);
|
|
45
|
+
method = inputData.request.method;
|
|
46
|
+
params = inputData.request.params;
|
|
47
|
+
}
|
|
48
|
+
catch (e) {
|
|
49
|
+
throw new errors_1.InvalidInputError('Invalid request format', e instanceof zod_1.z.ZodError ? e.issues : undefined);
|
|
50
|
+
}
|
|
51
|
+
if (method !== 'resources/list') {
|
|
52
|
+
this.logger.warn(`parseInput: invalid method "${method}"`);
|
|
53
|
+
throw new errors_1.InvalidMethodError(method, 'resources/list');
|
|
54
|
+
}
|
|
55
|
+
const cursor = params?.cursor;
|
|
56
|
+
if (cursor)
|
|
57
|
+
this.logger.verbose(`parseInput: cursor=${cursor}`);
|
|
58
|
+
this.state.set('cursor', cursor);
|
|
59
|
+
this.logger.verbose('parseInput:done');
|
|
60
|
+
}
|
|
61
|
+
async findResources() {
|
|
62
|
+
this.logger.info('findResources:start');
|
|
63
|
+
try {
|
|
64
|
+
const resources = [];
|
|
65
|
+
// Get resources from scope's resource registry
|
|
66
|
+
const scopeResources = this.scope.resources.getResources();
|
|
67
|
+
this.logger.verbose(`findResources: scope resources=${scopeResources.length}`);
|
|
68
|
+
for (const resource of scopeResources) {
|
|
69
|
+
resources.push({ ownerName: resource.owner.id, resource });
|
|
70
|
+
}
|
|
71
|
+
this.logger.info(`findResources: total resources collected=${resources.length}`);
|
|
72
|
+
if (resources.length === 0) {
|
|
73
|
+
this.logger.warn('findResources: no resources found');
|
|
74
|
+
}
|
|
75
|
+
this.state.set('resources', resources);
|
|
76
|
+
this.logger.verbose('findResources:done');
|
|
77
|
+
}
|
|
78
|
+
catch (error) {
|
|
79
|
+
this.logger.error('findResources: failed to collect resources', error);
|
|
80
|
+
throw error;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
async resolveConflicts() {
|
|
84
|
+
this.logger.verbose('resolveConflicts:start');
|
|
85
|
+
try {
|
|
86
|
+
const found = this.state.required.resources;
|
|
87
|
+
const counts = new Map();
|
|
88
|
+
for (const { resource } of found) {
|
|
89
|
+
const baseName = resource.metadata.name;
|
|
90
|
+
counts.set(baseName, (counts.get(baseName) ?? 0) + 1);
|
|
91
|
+
}
|
|
92
|
+
const conflicts = new Set([...counts.entries()].filter(([, n]) => n > 1).map(([k]) => k));
|
|
93
|
+
if (conflicts.size > 0) {
|
|
94
|
+
const preview = this.sample(Array.from(conflicts)).join(', ');
|
|
95
|
+
const extra = conflicts.size > 5 ? `, +${conflicts.size - 5} more` : '';
|
|
96
|
+
this.logger.warn(`resolveConflicts: ${conflicts.size} name conflict(s) detected: ${preview}${extra}`);
|
|
97
|
+
}
|
|
98
|
+
else {
|
|
99
|
+
this.logger.info('resolveConflicts: no name conflicts detected');
|
|
100
|
+
}
|
|
101
|
+
const resolved = found.map(({ ownerName, resource }) => {
|
|
102
|
+
const baseName = resource.metadata.name;
|
|
103
|
+
const finalName = conflicts.has(baseName) ? `${ownerName}:${baseName}` : baseName;
|
|
104
|
+
return { ownerName, resource, finalName };
|
|
105
|
+
});
|
|
106
|
+
this.state.set('resolvedResources', resolved);
|
|
107
|
+
this.logger.verbose('resolveConflicts:done');
|
|
108
|
+
}
|
|
109
|
+
catch (error) {
|
|
110
|
+
this.logger.error('resolveConflicts: failed to resolve conflicts', error);
|
|
111
|
+
throw error;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
async parseResources() {
|
|
115
|
+
this.logger.verbose('parseResources:start');
|
|
116
|
+
try {
|
|
117
|
+
const resolved = this.state.required.resolvedResources;
|
|
118
|
+
// Log resources that will be filtered out due to missing URI
|
|
119
|
+
const withoutUri = resolved.filter(({ resource }) => resource.uri == null);
|
|
120
|
+
if (withoutUri.length > 0) {
|
|
121
|
+
this.logger.warn(`parseResources: ${withoutUri.length} resource(s) skipped due to missing URI`);
|
|
122
|
+
}
|
|
123
|
+
const resources = resolved
|
|
124
|
+
.filter(({ resource }) => resource.uri != null)
|
|
125
|
+
.map(({ finalName, resource }) => {
|
|
126
|
+
// Extract uri with type narrowing (guaranteed by filter above)
|
|
127
|
+
const uri = resource.uri;
|
|
128
|
+
const item = {
|
|
129
|
+
uri,
|
|
130
|
+
name: finalName,
|
|
131
|
+
title: resource.metadata.title,
|
|
132
|
+
description: resource.metadata.description,
|
|
133
|
+
mimeType: resource.metadata.mimeType,
|
|
134
|
+
icons: resource.metadata.icons,
|
|
135
|
+
};
|
|
136
|
+
// Add OpenAI-specific _meta for skybridge widget resources
|
|
137
|
+
// This is CRITICAL for ChatGPT to discover and render widgets
|
|
138
|
+
if (resource.metadata.mimeType === 'text/html+skybridge') {
|
|
139
|
+
item._meta = {
|
|
140
|
+
'openai/outputTemplate': uri,
|
|
141
|
+
'openai/resultCanProduceWidget': true,
|
|
142
|
+
'openai/widgetAccessible': true,
|
|
143
|
+
};
|
|
144
|
+
}
|
|
145
|
+
return item;
|
|
146
|
+
});
|
|
147
|
+
const preview = this.sample(resources.map((r) => r.name)).join(', ');
|
|
148
|
+
const extra = resources.length > 5 ? `, +${resources.length - 5} more` : '';
|
|
149
|
+
this.logger.info(`parseResources: prepared ${resources.length} resource descriptor(s): ${preview}${extra}`);
|
|
150
|
+
this.respond({ resources });
|
|
151
|
+
this.logger.info('parseResources: response sent');
|
|
152
|
+
this.logger.verbose('parseResources:done');
|
|
153
|
+
}
|
|
154
|
+
catch (error) {
|
|
155
|
+
if (error instanceof common_1.FlowControl)
|
|
156
|
+
throw error;
|
|
157
|
+
this.logger.error('parseResources: failed to parse resources', error);
|
|
158
|
+
throw error;
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
};
|
|
162
|
+
tslib_1.__decorate([
|
|
163
|
+
Stage('parseInput'),
|
|
164
|
+
tslib_1.__metadata("design:type", Function),
|
|
165
|
+
tslib_1.__metadata("design:paramtypes", []),
|
|
166
|
+
tslib_1.__metadata("design:returntype", Promise)
|
|
167
|
+
], ResourcesListFlow.prototype, "parseInput", null);
|
|
168
|
+
tslib_1.__decorate([
|
|
169
|
+
Stage('findResources'),
|
|
170
|
+
tslib_1.__metadata("design:type", Function),
|
|
171
|
+
tslib_1.__metadata("design:paramtypes", []),
|
|
172
|
+
tslib_1.__metadata("design:returntype", Promise)
|
|
173
|
+
], ResourcesListFlow.prototype, "findResources", null);
|
|
174
|
+
tslib_1.__decorate([
|
|
175
|
+
Stage('resolveConflicts'),
|
|
176
|
+
tslib_1.__metadata("design:type", Function),
|
|
177
|
+
tslib_1.__metadata("design:paramtypes", []),
|
|
178
|
+
tslib_1.__metadata("design:returntype", Promise)
|
|
179
|
+
], ResourcesListFlow.prototype, "resolveConflicts", null);
|
|
180
|
+
tslib_1.__decorate([
|
|
181
|
+
Stage('parseResources'),
|
|
182
|
+
tslib_1.__metadata("design:type", Function),
|
|
183
|
+
tslib_1.__metadata("design:paramtypes", []),
|
|
184
|
+
tslib_1.__metadata("design:returntype", Promise)
|
|
185
|
+
], ResourcesListFlow.prototype, "parseResources", null);
|
|
186
|
+
ResourcesListFlow = tslib_1.__decorate([
|
|
187
|
+
(0, common_1.Flow)({
|
|
188
|
+
name,
|
|
189
|
+
plan,
|
|
190
|
+
inputSchema,
|
|
191
|
+
outputSchema,
|
|
192
|
+
access: 'authorized',
|
|
193
|
+
})
|
|
194
|
+
], ResourcesListFlow);
|
|
195
|
+
exports.default = ResourcesListFlow;
|
|
196
|
+
//# sourceMappingURL=resources-list.flow.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"resources-list.flow.js","sourceRoot":"","sources":["../../../../src/resource/flows/resources-list.flow.ts"],"names":[],"mappings":"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","sourcesContent":["// file: libs/sdk/src/resource/flows/resources-list.flow.ts\n\nimport { Flow, FlowBase, FlowControl, FlowHooksOf, FlowPlan, FlowRunOptions, ResourceEntry } from '../../common';\nimport 'reflect-metadata';\nimport { z } from 'zod';\nimport { ListResourcesRequestSchema, ListResourcesResultSchema, Resource } from '@modelcontextprotocol/sdk/types.js';\nimport { InvalidMethodError, InvalidInputError } from '../../errors';\n\nconst inputSchema = z.object({\n request: ListResourcesRequestSchema,\n ctx: z.unknown(),\n});\n\nconst outputSchema = ListResourcesResultSchema;\n\nconst stateSchema = z.object({\n cursor: z.string().optional(),\n resources: z.array(\n z.object({\n ownerName: z.string(),\n resource: z.instanceof(ResourceEntry),\n }),\n ),\n resolvedResources: z.array(\n z.object({\n ownerName: z.string(),\n resource: z.instanceof(ResourceEntry),\n finalName: z.string(),\n }),\n ),\n});\n\ntype ResponseResourceItem = Resource;\n\nconst plan = {\n pre: ['parseInput'],\n execute: ['findResources', 'resolveConflicts'],\n post: ['parseResources'],\n} as const satisfies FlowPlan<string>;\n\ndeclare global {\n interface ExtendFlows {\n 'resources:list-resources': FlowRunOptions<\n ResourcesListFlow,\n typeof plan,\n typeof inputSchema,\n typeof outputSchema,\n typeof stateSchema\n >;\n }\n}\n\nconst name = 'resources:list-resources' as const;\nconst { Stage } = FlowHooksOf('resources:list-resources');\n\n@Flow({\n name,\n plan,\n inputSchema,\n outputSchema,\n access: 'authorized',\n})\nexport default class ResourcesListFlow extends FlowBase<typeof name> {\n logger = this.scopeLogger.child('ResourcesListFlow');\n\n private sample<T>(arr: T[], n = 5): T[] {\n return arr.slice(0, n);\n }\n\n @Stage('parseInput')\n async parseInput() {\n this.logger.verbose('parseInput:start');\n\n let method!: string;\n let params: any;\n try {\n const inputData = inputSchema.parse(this.rawInput);\n method = inputData.request.method;\n params = inputData.request.params;\n } catch (e) {\n throw new InvalidInputError('Invalid request format', e instanceof z.ZodError ? e.issues : undefined);\n }\n\n if (method !== 'resources/list') {\n this.logger.warn(`parseInput: invalid method \"${method}\"`);\n throw new InvalidMethodError(method, 'resources/list');\n }\n\n const cursor = params?.cursor;\n if (cursor) this.logger.verbose(`parseInput: cursor=${cursor}`);\n this.state.set('cursor', cursor);\n this.logger.verbose('parseInput:done');\n }\n\n @Stage('findResources')\n async findResources() {\n this.logger.info('findResources:start');\n\n try {\n const resources: Array<{ ownerName: string; resource: ResourceEntry }> = [];\n\n // Get resources from scope's resource registry\n const scopeResources = this.scope.resources.getResources();\n this.logger.verbose(`findResources: scope resources=${scopeResources.length}`);\n\n for (const resource of scopeResources) {\n resources.push({ ownerName: resource.owner.id, resource });\n }\n\n this.logger.info(`findResources: total resources collected=${resources.length}`);\n if (resources.length === 0) {\n this.logger.warn('findResources: no resources found');\n }\n\n this.state.set('resources', resources);\n this.logger.verbose('findResources:done');\n } catch (error) {\n this.logger.error('findResources: failed to collect resources', error);\n throw error;\n }\n }\n\n @Stage('resolveConflicts')\n async resolveConflicts() {\n this.logger.verbose('resolveConflicts:start');\n\n try {\n const found = this.state.required.resources;\n\n const counts = new Map<string, number>();\n for (const { resource } of found) {\n const baseName = resource.metadata.name;\n counts.set(baseName, (counts.get(baseName) ?? 0) + 1);\n }\n\n const conflicts = new Set<string>([...counts.entries()].filter(([, n]) => n > 1).map(([k]) => k));\n\n if (conflicts.size > 0) {\n const preview = this.sample(Array.from(conflicts)).join(', ');\n const extra = conflicts.size > 5 ? `, +${conflicts.size - 5} more` : '';\n this.logger.warn(`resolveConflicts: ${conflicts.size} name conflict(s) detected: ${preview}${extra}`);\n } else {\n this.logger.info('resolveConflicts: no name conflicts detected');\n }\n\n const resolved = found.map(({ ownerName, resource }) => {\n const baseName = resource.metadata.name;\n const finalName = conflicts.has(baseName) ? `${ownerName}:${baseName}` : baseName;\n return { ownerName, resource, finalName };\n });\n\n this.state.set('resolvedResources', resolved);\n this.logger.verbose('resolveConflicts:done');\n } catch (error) {\n this.logger.error('resolveConflicts: failed to resolve conflicts', error);\n throw error;\n }\n }\n\n @Stage('parseResources')\n async parseResources() {\n this.logger.verbose('parseResources:start');\n\n try {\n const resolved = this.state.required.resolvedResources;\n\n // Log resources that will be filtered out due to missing URI\n const withoutUri = resolved.filter(({ resource }) => resource.uri == null);\n if (withoutUri.length > 0) {\n this.logger.warn(`parseResources: ${withoutUri.length} resource(s) skipped due to missing URI`);\n }\n\n const resources: ResponseResourceItem[] = resolved\n .filter(({ resource }) => resource.uri != null)\n .map(({ finalName, resource }) => {\n // Extract uri with type narrowing (guaranteed by filter above)\n const uri = resource.uri as string;\n\n const item: ResponseResourceItem = {\n uri,\n name: finalName,\n title: resource.metadata.title,\n description: resource.metadata.description,\n mimeType: resource.metadata.mimeType,\n icons: resource.metadata.icons,\n };\n\n // Add OpenAI-specific _meta for skybridge widget resources\n // This is CRITICAL for ChatGPT to discover and render widgets\n if (resource.metadata.mimeType === 'text/html+skybridge') {\n item._meta = {\n 'openai/outputTemplate': uri,\n 'openai/resultCanProduceWidget': true,\n 'openai/widgetAccessible': true,\n };\n }\n\n return item;\n });\n\n const preview = this.sample(resources.map((r) => r.name)).join(', ');\n const extra = resources.length > 5 ? `, +${resources.length - 5} more` : '';\n this.logger.info(`parseResources: prepared ${resources.length} resource descriptor(s): ${preview}${extra}`);\n\n this.respond({ resources });\n this.logger.info('parseResources: response sent');\n this.logger.verbose('parseResources:done');\n } catch (error) {\n if (error instanceof FlowControl) throw error;\n this.logger.error('parseResources: failed to parse resources', error);\n throw error;\n }\n }\n}\n"]}
|