buildmymcpserver/apps/web/app/(marketing)/guides/create-mcp-server-without-code/opengraph-image.tsx

14 lines
396 B
TypeScript
Raw Normal View History

import { articleOgImage, OG_SIZE } from '@/lib/og-article';
export const runtime = 'edge';
export const alt = 'How to create an MCP server without writing code (2026)';
export const size = OG_SIZE;
export const contentType = 'image/png';
export default function Image() {
return articleOgImage({
title: 'How to create an MCP server without writing code (2026)',
tag: 'Guide',
});
}