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
window.d.ts•927 B
export {};
type OAuth2Idp = {
name: string;
displayName: string;
};
declare global {
interface Window {
Config: {
// basename for the app. This can be the proxy path for
// Remote notebooks like SageMaker
basename: string;
platformVersion: string;
authenticationEnabled: boolean;
basicAuthDisabled: boolean;
oAuth2Idps: OAuth2Idp[];
ldapEnabled: boolean;
/**
* Whether manual LDAP user creation is enabled.
* False when PHOENIX_LDAP_ATTR_EMAIL is empty (no email to enter).
*/
ldapManualUserCreationEnabled: boolean;
managementUrl?: string | null;
supportEmail?: string | null;
hasDbThreshold: boolean;
/**
* Mapping of auth error codes to user-friendly messages.
* Passed from the backend to ensure single source of truth.
*/
authErrorMessages: Record<string, string>;
};
}
}