Skip to main content
Glama

@arizeai/phoenix-mcp

Official
by Arize-ai
TriggerWrap.tsx633 B
import React from "react"; import { Pressable } from "react-aria"; /** * TriggerWrap * * This component is used to wrap non-focusable elements (such as text or * graphics) so that they can be used as a trigger for tooltips. It ensures * the wrapped element is focusable and accessible for keyboard and mouse * interactions, which is required for tooltip triggers. */ export function TriggerWrap({ children, ...props }: { children: React.ReactNode } & Omit< React.ComponentProps<typeof Pressable>, "children" >) { return ( <Pressable {...props}> <div role="button">{children}</div> </Pressable> ); }

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