We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/get-convex/convex-backend'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
// @snippet start getImage
const convexSiteUrl = import.meta.env.VITE_CONVEX_SITE_URL;
function Image({ storageId }) {
// e.g. https://happy-animal-123.convex.site/getImage?storageId=456
const getImageUrl = new URL(`${convexSiteUrl}/getImage`);
getImageUrl.searchParams.set("storageId", storageId);
return <img src={getImageUrl.href} height="300px" width="auto" />;
}
// @snippet end getImage