io.github.Melusi-M/fixmypdf
Official7 toolsPrivacy-first PDF tools over MCP: merge, split, rotate, delete, compress, protect, inspect.
Edit PDF files with privacy-first tools for merging, splitting, and compression.
Captured live from the server via tools/list.
get_pdf_info
Read-only. Return a PDF's page count and per-page dimensions (in points). Use this first to plan a split or rotate.
Parameters (1)
- pdfstringrequired
The PDF as a base64 string or an https URL.
merge_pdf
Merge two or more PDFs into one, in the order given. Returns the merged PDF as base64.
Parameters (1)
- pdfsarrayrequired
Ordered list of PDFs, each a base64 string or https URL.
split_pdf
Extract an inclusive, 1-based page range from a PDF into a new PDF. e.g. from=5,to=10 keeps pages 5–10. Returns base64.
Parameters (3)
- pdfstringrequired
The PDF as a base64 string or https URL.
- fromintegerrequired
First page to keep (1-based, inclusive).
- tointegerrequired
Last page to keep (1-based, inclusive).
rotate_pdf
Rotate pages of a PDF clockwise by 90, 180, or 270 degrees. Omit "pages" to rotate every page; otherwise pass 1-based page numbers. Returns base64.
Parameters (3)
- pdfstringrequired
The PDF as a base64 string or https URL.
- degreesintegerrequired
Clockwise rotation to add.
- pagesarray
Optional 1-based page numbers to rotate; omit for all pages.
delete_pages
Remove specific pages from a PDF by their 1-based page numbers, keeping the rest in order. Returns base64.
Parameters (2)
- pdfstringrequired
The PDF as a base64 string or https URL.
- pagesarrayrequired
1-based page numbers to delete.
compress_pdf
Reduce a PDF's file size losslessly by consolidating object streams (keeps text selectable). Returns base64 plus before/after sizes. Note: does not re-encode embedded images.
Parameters (2)
- pdfstringrequired
The PDF as a base64 string or https URL.
- levelstring
medium also strips subject/keywords metadata. Default medium.
protect_pdf
Encrypt a PDF with a password (AES). The result requires the password to open. Returns base64.
Parameters (2)
- pdfstringrequired
The PDF as a base64 string or https URL.
- passwordstringrequired
Password required to open the output PDF.
README not available yet.
Install
claude_desktop_config.json
{
"mcpServers": {
"fixmypdf": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://www.fixmypdfonline.com/api/mcp"
]
}
}
}Desktop config is stdio-only; this bridges via mcp-remote. Native remote: Settings > Connectors.