- Home
- MCP servers
- Markdown2pdf
Markdown2pdf
- javascript
9
GitHub Stars
javascript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"serendipity-ai-markdown2pdf-mcp": {
"command": "npx",
"args": [
"@serendipityai/markdown2pdf-mcp"
]
}
}
}You provide Markdown-to-PDF conversion as an MCP server so agents can generate polished PDF outputs from Markdown requests. This server enables you to deploy a lightweight, no-signup bridge that translates Markdown inputs into high-quality PDFs, suitable for agent workflows and offline-like tasks.
How to use
Configure your MCP client to connect to the Markdown to PDF MCP server, then start sending Markdown content and request a PDF output. You typically add a server entry to your MCP client configuration that points to the local or remote MCP endpoint and uses the provided command to run the server helper. Once configured, you can issue a request like asking for Markdown text to be converted into a PDF and returned to you.
How to install
Prerequisites: ensure you have Node.js and npm installed on your system. Node.js provides the npx utility used to run MCP servers.
Add the MCP server configuration to your client by placing the following snippet in your client configuration file.
"mcpServers": {
"markdown2pdf": {
"command":"npx",
"args": ["@serendipityai/markdown2pdf-mcp"],
"cwd": "~"
}
}
Additional notes
This MCP server is designed for agents to produce PDFs from Markdown content. Use a compatible MCP client to load the server configuration, then send Markdown input and request the corresponding PDF output.