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
import type { SlideLayout } from "../../../themes/types.js";
export const listLayout: SlideLayout = {
name: "list",
description: "List slide with bullet points",
params: {
heading: {
type: "string",
description: "Slide heading",
required: true,
maxLength: 54,
},
list: {
type: "array",
description: "List items (max 10 items)",
required: true,
maxItems: 10,
maxLength: 70,
},
citations: {
type: "string",
description: "Citation (no line break)",
required: false,
maxLength: 130,
},
},
template: (params) => {
let slide = ``;
if (params.heading) {
slide += `## ${params.heading}\n\n`;
}
const list = params.list as string[];
list.forEach((item: string) => {
slide += `- ${item}\n`;
});
if (params.citations) {
slide += `\n\n<!-- _footer: ${params.citations} -->`;
}
return slide;
},
};