We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Arize-ai/phoenix'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
function getSanitizedPath(path: string): string {
return path.endsWith("/") ? path.slice(0, -1) : path;
}
const sanitizedPath = getSanitizedPath(window.Config.basename);
const isSecure = window.location.protocol === "https:";
export const BASE_URL = `${window.location.protocol}//${window.location.host}${sanitizedPath}`;
export const WS_BASE_URL = `${isSecure ? "wss" : "ws"}://${window.location.host}${sanitizedPath}`;
export const VERSION = window.Config.platformVersion;