Skip to main content
Glama

@arizeai/phoenix-mcp

Official
by Arize-ai
MeanScore.tsx652 B
import React from "react"; import { Text, TextProps } from "@phoenix/components"; import { formatFloat } from "@phoenix/utils/numberFormatUtils"; export const MeanScore = ({ value, fallback = "--", ...props }: { value?: number | null; fallback?: React.ReactNode; } & Omit<TextProps, "children">) => { if (value == null || typeof value !== "number" || isNaN(value)) { return ( <Text {...props} fontFamily="mono"> {fallback} </Text> ); } return ( <Text {...props}> <span aria-label="mean score">μ&nbsp;</span> <span className="font-mono">{`${formatFloat(value)}`}</span> </Text> ); };

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