How-to cluster: create-mcp-server-without-code, claude-desktop-mcp-setup, chatgpt-mcp-connector (incl. honest Business/Enterprise write-connector plan limits), rest-api-to-mcp-server. Comparison cluster: mcp-server-hosting-pricing (5-platform matrix), composio-alternative, smithery-alternative — house style: explicitly state where competitors win. Technical/GEO cluster: mcp-transports-explained (SSE deprecation 2025-03-26), mcp-oauth-plain-english, mcp-server-security-checklist, and German DACH article mcp-server-ohne-code-erstellen (articleJsonLd gained optional inLanguage param). Every article: pageMetadata canonical, Article JSON-LD with Person author + image + wordCount, BreadcrumbList, FAQPage where applicable, 1200x630 OG image via shared helper, internal linking. Registry entries in lib/articles.ts feed guides index, sitemap and RSS automatically. Product claims sourced only from lib/seo.ts truth — no invented customers, SLAs or certifications. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01SXUwmPVRTD8AKQtio6gCN5
14 lines
396 B
TypeScript
14 lines
396 B
TypeScript
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',
|
|
});
|
|
}
|