@roottale/cms-mcp
Version:
RootTale CMS integration MCP server — bundled integration docs, Next.js example code, and public API lookup tools. Run with: npx @roottale/cms-mcp
16 lines (12 loc) • 494 B
text/typescript
// RSS 2.0 피드 — 발행된 글 자동 포함.
import { createFeedRoute } from "@roottale/cms-renderer-next/routes";
export const dynamic = "force-dynamic";
const SITE_URL =
process.env.NEXT_PUBLIC_SITE_URL?.replace(/\/$/, "") || "https://example.com";
export const GET = createFeedRoute({
apiKey: process.env.ROOTTALE_API_KEY!,
apiBase: process.env.ROOTTALE_API_BASE,
siteUrl: SITE_URL,
title: "예시 사이트 블로그",
description: "최신 소식과 인사이트",
});