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