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
import { ReactNode } from "react";
import { Flex, Icon, Icons, Text, View } from "@phoenix/components";
export function PlaygroundErrorWrap({ children }: { children: ReactNode }) {
return (
<View padding="size-200">
<Flex direction="row" gap="size-50" alignItems="center">
<Icon svg={<Icons.AlertCircleOutline />} color="danger" />
<Text color="danger">{children}</Text>
</Flex>
</View>
);
}