MCPcopy Create free account
hub / github.com/Noumena-Network/code / getNoumenaIssuerBaseUrl

Function getNoumenaIssuerBaseUrl

src/constants/oauth.ts:18–24  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

16}
17
18export function getNoumenaIssuerBaseUrl(): string | null {
19 const baseUrl = process.env.NOUMENA_ISSUER_BASE_URL?.trim()
20 if (!baseUrl) {
21 return null
22 }
23 return normalizeBaseUrl(baseUrl)
24}
25
26export function getNoumenaOauthWebBaseUrl(): string | null {
27 const baseUrl = process.env.NOUMENA_OAUTH_WEB_BASE_URL?.trim()

Callers 3

getOauthTokenUrlFunction · 0.85
getOauthClientIdFunction · 0.85

Calls 1

normalizeBaseUrlFunction · 0.70

Tested by

no test coverage detected