@drfirst/pdf-modify-mcp
v1.0.0
Published
MCP server exposing PDF Modify file tools for merge, split, reorder, crop, and Office conversion.
Downloads
205
Readme
@drfirst/pdf-modify-mcp
MCP server for PDF Modify. It exposes local file-based PDF tools over stdio so MCP clients can merge, split, reorder, crop, and convert PDF-related files without uploading them to a remote server.
Quick Start
Run directly with npx:
npx -y @drfirst/pdf-modify-mcpVS Code MCP example:
{
"servers": {
"pdf-modify-mcp": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@drfirst/pdf-modify-mcp"]
}
}
}Tools
pdf_info: read PDF page count and basic informationpdf_merge: merge multiple PDFs in orderpdf_split: extract page ranges such as1-3, 5, 8-10pdf_reorder: reorder pages within one PDF or across multiple PDFspdf_crop: crop one PDF page using point coordinatesoffice_to_pdf: convert.docxor.pptxto a text-based PDFpdf_to_word: export extractable PDF text to.docxpdf_to_ppt: export extractable PDF text to.pptxslides
Notes
This MCP server works with local file paths. Files are read from disk and written back to disk. It does not upload files to a remote service.
Office and PDF conversion is text-focused for automation. It is not intended to perfectly preserve Microsoft Office or visual PDF layout.
