Skip to main content
Glama

@arizeai/phoenix-mcp

Official
by Arize-ai
SectionHeading.tsx1.15 kB
import { PropsWithChildren } from "react"; import { css } from "@emotion/react"; import { Heading } from "@phoenix/components/content"; /** * A SectionHeading is a component that displays a heading with borders. * * It is well suited for "labeling" a DisclosureGroup or other sections of content. */ export const SectionHeading = ({ children, bordered = true, }: PropsWithChildren & { /** * If true, the section heading will have a border at the top and bottom * If false, the section heading will have a border at the bottom only * */ bordered?: boolean; }) => { return ( <div data-bordered={bordered} css={css` border-bottom: 1px solid var(--ac-global-border-color-default); &[data-bordered="true"] { border-top: 1px solid var(--ac-global-border-color-default); } & > * { display: flex; justify-content: space-between; align-items: center; padding: var(--ac-global-dimension-static-size-100) var(--ac-global-dimension-static-size-200); } `} > <Heading>{children}</Heading> </div> ); };

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