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 { useEffect, useState } from "react";
import { format } from "d3-format";
import { Counter } from "@phoenix/components";
export function GitHubStarCount() {
const [starCount, setStarCountText] = useState<string>("--");
useEffect(() => {
fetch("https://api.github.com/repos/Arize-ai/phoenix")
.then((response) => response.json())
.then((data) => {
setStarCountText(format(".2s")(data.stargazers_count));
});
}, []);
return <Counter>{starCount}</Counter>;
}