Skip to main content
Glama

@arizeai/phoenix-mcp

Official
by Arize-ai
Loading.tsx782 B
import { ComponentProps } from "react"; import { css } from "@emotion/react"; import { ProgressCircle, Text } from "@phoenix/components"; type LoadingProps = { message?: string; size?: ComponentProps<typeof ProgressCircle>["size"]; className?: string; }; export const Loading = ({ message, size, className }: LoadingProps) => { return ( <div className={className} css={css` display: flex; flex-direction: column; justify-content: center; align-items: center; width: 100%; height: 100%; gap: var(--ac-global-dimension-static-size-100); `} > <ProgressCircle isIndeterminate aria-label="loading" size={size} /> {message != null ? <Text>{message}</Text> : null} </div> ); };

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/Arize-ai/phoenix'

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