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 { Link } from "react-router";
import { Breadcrumb, Breadcrumbs } from "@phoenix/components";
import { useMatchesWithCrumb } from "@phoenix/hooks/useMatchesWithCrumb";
export function NavBreadcrumb() {
const matchesWithCrumb = useMatchesWithCrumb();
return (
<Breadcrumbs size="L">
{matchesWithCrumb.map((match, index) => {
const crumb = match.handle.crumb(match.loaderData);
return (
<Breadcrumb key={index}>
<Link to={match.pathname} title={crumb}>
{crumb}
</Link>
</Breadcrumb>
);
})}
</Breadcrumbs>
);
}