Skip to main content
Glama

@arizeai/phoenix-mcp

Official
by Arize-ai
ResetPasswordWithTokenPage.tsx976 B
import { useNavigate, useSearchParams } from "react-router"; import { Flex, Link, View } from "@phoenix/components"; import { AuthLayout } from "./AuthLayout"; import { PhoenixLogo } from "./PhoenixLogo"; import { ResetPasswordWithTokenForm } from "./ResetPasswordWithTokenForm"; export function ResetPasswordWithTokenPage() { const navigate = useNavigate(); const [searchParams] = useSearchParams(); const token = searchParams.get("token"); if (!token) { navigate("/login"); return null; } return ( <AuthLayout> <Flex direction="column" gap="size-200" alignItems="center"> <View paddingBottom="size-200"> <PhoenixLogo /> </View> </Flex> <ResetPasswordWithTokenForm resetToken={token} /> <View paddingTop="size-200"> <Flex direction="column" alignItems="center" justifyContent="center"> <Link to="/login">Back to Login</Link> </Flex> </View> </AuthLayout> ); }

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