### Preview Examples with Live Reload Source: https://github.com/masaki39/marp-mcp/blob/main/README.md Recommended for testing, this command starts a local server to preview examples with live reload. Open http://localhost:8080 in your browser to view the examples. ```bash pnpm run examples:server ``` -------------------------------- ### Generate Markdown Examples Source: https://github.com/masaki39/marp-mcp/blob/main/README.md Use this command to generate markdown examples for the project. This is a common step in the development workflow. ```bash pnpm run examples:generate ``` -------------------------------- ### Quick Start Workflow Source: https://github.com/masaki39/marp-mcp/blob/main/skills/marp/SKILL.md A recommended workflow for quickly creating and exporting a Marp presentation using the marp-mcp CLI. ```bash marp-mcp -s rich create slides.md --title "My Talk" --subtitle "Author · Event" --slides 3 ``` ```bash marp-mcp -s rich list-layouts ``` ```bash marp-mcp -s rich manage slides.md -l content --mode replace --slide-id -p '{"heading":"Intro","body":"Hello world"}' ``` ```bash marp-mcp export slides.md -f html ``` -------------------------------- ### Workflow: Quick Start Source: https://github.com/masaki39/marp-mcp/blob/main/skills/marp/SKILL.md A recommended workflow for quickly creating and exporting a Marp presentation. ```APIDOC ## Workflow ### Quick Start (Recommended) Use `create` to initialize a new presentation in one step, then add slides: ```bash marp-mcp -s rich create slides.md --title "My Talk" --subtitle "Author · Event" --slides 3 marp-mcp -s rich list-layouts marp-mcp -s rich manage slides.md -l content --mode replace --slide-id -p '{"heading":"Intro","body":"Hello world"}' marp-mcp export slides.md -f html ``` ``` -------------------------------- ### MCP Server Configuration Source: https://context7.com/masaki39/marp-mcp/llms.txt Configuration examples for setting up the Marp MCP server in an MCP client. ```APIDOC ## MCP Server Setup Configure the Marp MCP server in your MCP client configuration to enable AI-assisted presentation creation. ```json { "mcpServers": { "marp-mcp": { "command": "npx", "args": ["-y", "@masaki39/marp-mcp@latest"] } } } ``` ```json { "mcpServers": { "marp-mcp": { "command": "npx", "args": ["-y", "@masaki39/marp-mcp@latest", "-t", "default", "-s", "academic"] } } } ``` ``` -------------------------------- ### Installation Check Source: https://github.com/masaki39/marp-mcp/blob/main/skills/marp/SKILL.md Verify if the marp-mcp CLI is installed or install it using npx. ```APIDOC ## Installation Check Verify the CLI is available: ```bash marp-mcp --version ``` If not installed, use npx: ```bash npx @masaki39/marp-mcp@latest --version ``` ``` -------------------------------- ### Install Marp MCP Plugin Source: https://github.com/masaki39/marp-mcp/blob/main/README.md Install the Marp MCP plugin using the plugin marketplace command. This enables Claude Code to create Marp presentations via the /marp command. ```bash /plugin marketplace add masaki39/marp-mcp /plugin install marp@marp-mcp ``` -------------------------------- ### Create Presentation Source: https://context7.com/masaki39/marp-mcp/llms.txt Creates a new Marp presentation file with frontmatter, title slide, and optional placeholder slides in one step. This is the recommended way to start a new presentation. ```APIDOC ## create_presentation Creates a new Marp presentation file with frontmatter, title slide, and optional placeholder slides in one step. This is the recommended way to start a new presentation. ### CLI Usage ```bash # Create basic presentation marp-mcp create slides.md --title "My Presentation" # Create with subtitle and placeholder slides marp-mcp -s tech create slides.md --title "Product Demo" --subtitle "Q3 2025 Launch" --slides 5 ``` ``` -------------------------------- ### Generate HTML Files Source: https://github.com/masaki39/marp-mcp/blob/main/README.md This command generates HTML files from the markdown examples. These files are typically used for deployment or local preview. ```bash pnpm run examples:html ``` -------------------------------- ### Check marp-mcp CLI Installation Source: https://github.com/masaki39/marp-mcp/blob/main/skills/marp/SKILL.md Verify if the marp-mcp CLI is installed and accessible in your environment. ```bash marp-mcp --version ``` ```bash npx @masaki39/marp-mcp@latest --version ``` -------------------------------- ### List Layouts with Specific Theme and Style Source: https://github.com/masaki39/marp-mcp/blob/main/skills/marp/SKILL.md Get a list of available layouts filtered by a specific Marp theme and style. Replace `` and `