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
import { graphql, useFragment } from "react-relay";
import { Card } from "@phoenix/components";
import { NewPromptLabelButton } from "@phoenix/components/prompt/NewPromptLabelButton";
import { PromptLabelsTable } from "@phoenix/pages/settings/prompts/PromptLabelsTable";
import { PromptLabelsSettingsCardFragment$key } from "./__generated__/PromptLabelsSettingsCardFragment.graphql";
export function PromptLabelsSettingsCard({
query,
}: {
query: PromptLabelsSettingsCardFragment$key;
}) {
const data = useFragment<PromptLabelsSettingsCardFragment$key>(
graphql`
fragment PromptLabelsSettingsCardFragment on Query {
...PromptLabelsTableFragment
}
`,
query
);
return (
<Card title="Prompt Labels" extra={<NewPromptLabelButton />}>
<PromptLabelsTable query={data} />
</Card>
);
}