@botanicastudios/mcp-pdf2md
v1.0.0
Published
MCP server for converting PDF documents to Markdown format
Readme
MCP PDF to Markdown Server
An MCP (Model Context Protocol) server that provides PDF to Markdown conversion functionality.
Features
- Convert PDF documents to Markdown format
- Support for both local file paths and URLs
- Built with TypeScript and the MCP SDK
- Ready to publish and use with
npx
Installation
You can run this MCP server directly using npx:
npx -y @botanicastudios/mcp-pdf2mdUsage
The server provides a single tool called pdf_to_markdown that accepts:
input: A file path or URL to a PDF document
Example Tool Call
{
"tool": "pdf_to_markdown",
"arguments": {
"input": "/path/to/document.pdf"
}
}Or with a URL:
{
"tool": "pdf_to_markdown",
"arguments": {
"input": "https://example.com/document.pdf"
}
}Development
To set up for development:
npm install
npm run build
npm startLicense
MIT
