Skip to main content
Glama

@arizeai/phoenix-mcp

Official
by Arize-ai
Keyboard.tsx788 B
import { forwardRef, PropsWithChildren, Ref } from "react"; import { css } from "@emotion/react"; import { classNames } from "@arizeai/components"; export interface KeyboardProps extends PropsWithChildren { className?: string; } const keyboardCSS = css` font-family: -apple-system, "system-ui", "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji"; `; /** * Keyboard represents text that specifies a keyboard command. */ export const Keyboard = forwardRef(function Keyboard( { children, className, ...props }: KeyboardProps, ref: Ref<HTMLElement> ) { return ( <kbd ref={ref} css={keyboardCSS} className={classNames("ac-keyboard", className)} {...props} > {children} </kbd> ); });

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