Skip to main content
Glama

@arizeai/phoenix-mcp

Official
by Arize-ai
DownloadExperimentActionMenu.tsx1.29 kB
import { Button, Icon, Icons, Menu, MenuItem, MenuTrigger, Popover, } from "@phoenix/components"; import { StopPropagation } from "@phoenix/components/StopPropagation"; import { prependBasename } from "@phoenix/utils/routingUtils"; interface DownloadExperimentActionMenuProps { experimentId: string; } export function DownloadExperimentActionMenu({ experimentId, }: DownloadExperimentActionMenuProps) { return ( <StopPropagation> <MenuTrigger> <Button size="S" leadingVisual={<Icon svg={<Icons.DownloadOutline />} />} /> <Popover> <Menu onAction={(action) => { if (action === "csv") { window.open( prependBasename(`/v1/experiments/${experimentId}/csv`), "_blank" ); } if (action === "json") { window.open( prependBasename(`/v1/experiments/${experimentId}/json`), "_blank" ); } }} > <MenuItem id="csv">Download CSV</MenuItem> <MenuItem id="json">Download JSON</MenuItem> </Menu> </Popover> </MenuTrigger> </StopPropagation> ); }

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