Skip to main content
Glama

md-pdf-mcp

__init__.py793 B
""" MD-PDF-MCP: VS Code-styled Markdown to PDF converter This module provides the core functionality for converting markdown documents to PDFs using VS Code's exact styling through ReportLab's PLATYPUS framework. """ import asyncio from .server import serve from .converter import ( convert_markdown_to_pdf, MDPDFError, InvalidMarkdownError, PDFGenerationError, ImageError ) __version__ = "0.1.0" async def _async_main(): """Async entry point for the MCP server.""" await serve() def main(): """Synchronous entry point for the MCP server. This is the entry point used by the console script defined in pyproject.toml. It wraps the async entry point in asyncio.run(). """ asyncio.run(_async_main()) if __name__ == '__main__': main()

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/seanivore/Convert-Markdown-PDF-MCP'

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