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 { ThemeDefinition } from "../types.js";
import { titleLayout } from "./layouts/title.js";
import { sectionLayout } from "./layouts/section.js";
import { listLayout } from "./layouts/list.js";
import { tableLayout } from "./layouts/table.js";
import { imageRightLayout } from "./layouts/image-right.js";
import { imageCenterLayout } from "./layouts/image-center.js";
export const defaultTheme: ThemeDefinition = {
name: "default",
description:
"Standard Marp theme using directives for footers and built-in layouts",
layouts: {
title: titleLayout,
section: sectionLayout,
list: listLayout,
table: tableLayout,
"image-right": imageRightLayout,
"image-center": imageCenterLayout,
},
};