Skip to main content
Glama

@arizeai/phoenix-mcp

Official
by Arize-ai
ProfilePage.tsx872 B
import { css } from "@emotion/react"; import { Flex } from "@phoenix/components"; import { useViewer } from "@phoenix/contexts/ViewerContext"; import { ViewerAPIKeys } from "./ViewerAPIKeys"; import { ViewerProfileCard } from "./ViewerProfileCard"; const profilePageCSS = css` overflow-y: auto; `; const profilePageInnerCSS = css` padding: var(--ac-global-dimension-size-400); max-width: 800px; min-width: 500px; box-sizing: border-box; width: 100%; margin-left: auto; margin-right: auto; `; export function ProfilePage() { const { viewer } = useViewer(); if (!viewer) { return null; } return ( <main css={profilePageCSS}> <div css={profilePageInnerCSS}> <Flex direction="column" gap="size-200"> <ViewerProfileCard /> <ViewerAPIKeys viewer={viewer} /> </Flex> </div> </main> ); }

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