We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Southclaws/storyden'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { ImageResponse } from "next/og";
import { getIconURL } from "@/utils/icon";
export const size = {
width: 512,
height: 512,
};
export const contentType = "image/png";
export default function Icon() {
return new ImageResponse(
(
// eslint-disable-next-line @next/next/no-img-element, jsx-a11y/alt-text
<img
src={getIconURL("512x512")}
width={512}
height={512}
sizes="512x512"
/>
),
{
...size,
},
);
}