14 lines
354 B
TypeScript
14 lines
354 B
TypeScript
|
|
import { articleOgImage, OG_SIZE } from '@/lib/og-article';
|
||
|
|
|
||
|
|
export const runtime = 'edge';
|
||
|
|
export const alt = 'Wrap any REST API as an MCP server';
|
||
|
|
export const size = OG_SIZE;
|
||
|
|
export const contentType = 'image/png';
|
||
|
|
|
||
|
|
export default function Image() {
|
||
|
|
return articleOgImage({
|
||
|
|
title: 'Wrap any REST API as an MCP server',
|
||
|
|
tag: 'Guide',
|
||
|
|
});
|
||
|
|
}
|