Skip to main content
Glama

@arizeai/phoenix-mcp

Official
by Arize-ai
PercentCell.tsx599 B
import { CellContext } from "@tanstack/react-table"; import { isNumberOrNull } from "@phoenix/typeUtils"; import { percentFormatter } from "@phoenix/utils/numberFormatUtils"; /** * A table cell that nicely formats the value of a percent. */ export function PercentCell<TData extends object, TValue>({ getValue, }: CellContext<TData, TValue>) { const value = getValue(); if (!isNumberOrNull(value)) { throw new Error("IntCell only supports number or null values."); } return ( <span title={value != null ? String(value) : ""}> {percentFormatter(value)} </span> ); }

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