Skip to main content
Glama

@arizeai/phoenix-mcp

Official
by Arize-ai
ConnectedTimeRangeSelector.tsx717 B
import { startTransition, useCallback } from "react"; import { ComponentSize } from "@phoenix/components/types"; import { useTimeRange } from "./TimeRangeContext"; import { TimeRangeSelector } from "./TimeRangeSelector"; import { OpenTimeRangeWithKey } from "./types"; export function ConnectedTimeRangeSelector({ size = "S", }: { size?: ComponentSize; }) { const { timeRange, setTimeRange: _setTimeRange } = useTimeRange(); const setTimeRange = useCallback( (timeRange: OpenTimeRangeWithKey) => { startTransition(() => { _setTimeRange(timeRange); }); }, [_setTimeRange] ); return ( <TimeRangeSelector value={timeRange} onChange={setTimeRange} size={size} /> ); }

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