Skip to main content
Glama

@arizeai/phoenix-mcp

Official
by Arize-ai
KeyboardToken.tsx1.09 kB
import { forwardRef, Ref } from "react"; import { css } from "@emotion/react"; import { Keyboard, KeyboardProps } from "./content/Keyboard"; const keyboardTokenCSS = css` background-color: var(--ac-global-color-primary-100); color: var(--ac-global-color-primary-700); padding: var(--ac-global-dimension-static-size-50) var(--ac-global-dimension-static-size-100); font-size: var(--ac-global-dimension-static-font-size-50); border-radius: var(--ac-global-dimension-static-size-100); border: 1px solid var(--ac-global-color-primary-200); box-shadow: 0 2px 0 0 var(--ac-global-color-primary-200); // Offset the shadow to make it look like it's on the key margin-top: -1px; text-transform: uppercase; `; /** * Keyboard Token represents text that specifies a keyboard command, * and is styled to look like a keyboard key. */ export const KeyboardToken = forwardRef(function KeyboardToken( { children, ...props }: KeyboardProps, ref: Ref<HTMLElement> ) { return ( <Keyboard ref={ref} css={keyboardTokenCSS} {...props}> {children} </Keyboard> ); });

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