Skip to main content
Glama

mcp-pandoc-md2pptx

by maekawataiki

convert-contents

Convert Markdown content to PowerPoint (PPTX) format, supporting custom templates for branding, diagrams (mermaid, plantuml, graphviz), and both direct text or file inputs.

Instructions

Converts Markdown content to PowerPoint (PPTX) format.

🚨 REQUIREMENTS:

  1. Input: Only Markdown format is supported
  2. Output: Only PPTX format is supported
  3. File Path: Complete output path with filename and .pptx extension is required

✅ Usage Example: 'Convert this markdown to PowerPoint and save as /presentations/demo.pptx'

🎨 PPTX STYLING:

  • Use template parameter to apply custom PowerPoint templates
  • Create templates with your branding, fonts, and slide layouts
  • Example: 'Convert markdown to PPTX using /templates/theme.pptx as template and save as /presentations/pitch.pptx'

➡️ Diagram Support:

  • Diagram using mermaid, plantuml, graphviz is supported by default. Referencing external resource in plantuml is also supported.
  • Example:
@startuml Two Modes - Technical View ' Uncomment the line below for "dark mode" styling '!$AWS_DARK = true !define AWSPuml https://raw.githubusercontent.com/awslabs/aws-icons-for-plantuml/v20.0/dist !include AWSPuml/AWSCommon.puml !include AWSPuml/AWSSimplified.puml !include AWSPuml/General/Users.puml !include AWSPuml/NetworkingContentDelivery/APIGateway.puml !include AWSPuml/SecurityIdentityCompliance/Cognito.puml !include AWSPuml/Compute/Lambda.puml !include AWSPuml/Database/DynamoDB.puml left to right direction Users(sources, "Events", "millions of users") APIGateway(votingAPI, "Voting API", "user votes") Cognito(userAuth, "User Authentication", "jwt to submit votes") Lambda(generateToken, "User Credentials", "return jwt") Lambda(recordVote, "Record Vote", "enter or update vote per user") DynamoDB(voteDb, "Vote Database", "one entry per user") sources --> userAuth sources --> votingAPI userAuth <--> generateToken votingAPI --> recordVote recordVote --> voteDb @enduml

📋 Creating Reference Documents:

  • Generate PPTX template: pandoc -o template.pptx --print-default-data-file reference.pptx
  • Customize in PowerPoint: fonts, colors, slide layouts

Input Schema

NameRequiredDescriptionDefault
contentsNoMarkdown content to be converted (required if input_file not provided)
input_fileNoComplete path to Markdown input file (e.g., '/path/to/input.md')
output_fileNoComplete path where to save the PPTX output including filename and .pptx extension (required)
templateNoPath to a template PPTX document to use for styling

Input Schema (JSON Schema)

{ "oneOf": [ { "required": [ "contents", "output_file" ] }, { "required": [ "input_file", "output_file" ] } ], "properties": { "contents": { "description": "Markdown content to be converted (required if input_file not provided)", "type": "string" }, "input_file": { "description": "Complete path to Markdown input file (e.g., '/path/to/input.md')", "type": "string" }, "output_file": { "description": "Complete path where to save the PPTX output including filename and .pptx extension (required)", "type": "string" }, "template": { "description": "Path to a template PPTX document to use for styling", "type": "string" } }, "type": "object" }

Other Tools from mcp-pandoc-md2pptx

Related Tools

    MCP directory API

    We provide all the information about MCP servers via our MCP API.

    curl -X GET 'https://glama.ai/api/mcp/v1/servers/maekawataiki/mcp-pandoc-md2pptx'

    If you have feedback or need assistance with the MCP directory API, please join our Discord server