(token: VerifiedToken)
| 119 | export type McpAuthResult = McpAuthorizedResult | McpUnauthorizedResult; |
| 120 | |
| 121 | export const mcpAuthorized = (token: VerifiedToken): McpAuthorizedResult => ({ |
| 122 | _tag: "Authorized", |
| 123 | token, |
| 124 | }); |
| 125 | |
| 126 | export const mcpUnauthorized = ( |
| 127 | reason: McpUnauthorizedReason, |
no outgoing calls
no test coverage detected