We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/masaki39/marp-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
/**
* Default theme - Section layout
*/
import type { SlideLayout } from "../../types.js";
import { withLengthPrompt } from "../../../utils/text-length.js";
export const sectionLayout: SlideLayout = {
name: "section",
description: "Section break slide with centered title and subtitle",
params: {
title: {
type: "string",
description: withLengthPrompt("Section title", 44),
required: true,
maxLength: 44,
},
subtitle: {
type: "string",
description: withLengthPrompt("Section subtitle", 54),
required: false,
maxLength: 54,
},
},
template: (params) => {
let slide = `# ${params.title}\n`;
if (params.subtitle) {
slide += `## ${params.subtitle}\n`;
}
return slide;
},
};