Skip to main content
Glama
gilberth

MCP Cloudflare DNS Server

auth-utils.js625 B
"use strict"; /** * Utilities for handling OAuth resource URIs. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.resourceUrlFromServerUrl = resourceUrlFromServerUrl; /** * Converts a server URL to a resource URL by removing the fragment. * RFC 8707 section 2 states that resource URIs "MUST NOT include a fragment component". * Keeps everything else unchanged (scheme, domain, port, path, query). */ function resourceUrlFromServerUrl(url) { const resourceURL = new URL(url.href); resourceURL.hash = ''; // Remove fragment return resourceURL; } //# sourceMappingURL=auth-utils.js.map

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/gilberth/mcp-cloudflare'

If you have feedback or need assistance with the MCP directory API, please join our Discord server