Server data from the Official MCP Registry
Convert, compress & merge PDFs and 100+ file formats from any AI agent. By GuruPDF.
Convert, compress & merge PDFs and 100+ file formats from any AI agent. By GuruPDF.
GuruPDF MCP is a well-structured server with proper authentication and no malicious patterns. The codebase demonstrates good security practices: API keys are required and loaded from environment variables (not hardcoded), input validation is present via Zod schemas, and sensitive errors are properly sanitized before being relayed to users. Permissions are appropriate for a file conversion tool (file I/O, network HTTP, env vars). Minor code quality observations exist but do not materially impact security. Supply chain analysis found 3 known vulnerabilities in dependencies (0 critical, 3 high severity). Package verification found 1 issue.
5 files analyzed · 9 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: GURUPDF_API_KEY
Environment variable: GURUPDF_API_URL
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-gurupdf-gurupdf-mcp": {
"env": {
"GURUPDF_API_KEY": "your-gurupdf-api-key-here",
"GURUPDF_API_URL": "your-gurupdf-api-url-here"
},
"args": [
"-y",
"gurupdf-mcp"
],
"command": "npx"
}
}
}From the project's GitHub README.
A free Model Context Protocol (MCP) server that lets Claude, Cursor, VS Code, Windsurf and other AI agents convert, compress, merge, split and edit PDFs — and convert between 100+ file formats (Word, Excel, PowerPoint, JPG, PNG, HEIC, ebooks, and more), right on your own machine. Powered by GuruPDF.
Languages: English · Español · Français · Deutsch · 中文 · Русский · Українська · Polski · Nederlands · Türkçe · Čeština · Ελληνικά · العربية
Ask your assistant: "compress this PDF", "turn invoice.docx into a PDF", or "merge these three files" — and it converts the files right on your machine.
You need Node.js 18+ and a free GuruPDF API key:
npx fetches it on first run.claude_desktop_config.json:
{
"mcpServers": {
"gurupdf": {
"command": "npx",
"args": ["-y", "gurupdf-mcp"],
"env": { "GURUPDF_API_KEY": "your_token_here" }
}
}
}
~/.cursor/mcp.json (or .cursor/mcp.json in a project):
{
"mcpServers": {
"gurupdf": {
"command": "npx",
"args": ["-y", "gurupdf-mcp"],
"env": { "GURUPDF_API_KEY": "your_token_here" }
}
}
}
.vscode/mcp.json:
{
"servers": {
"gurupdf": {
"command": "npx",
"args": ["-y", "gurupdf-mcp"],
"env": { "GURUPDF_API_KEY": "your_token_here" }
}
}
}
~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"gurupdf": {
"command": "npx",
"args": ["-y", "gurupdf-mcp"],
"env": { "GURUPDF_API_KEY": "your_token_here" }
}
}
}
| Tool | What it does |
|---|---|
convert_file | Convert/process a local file (or URL). Give it an input and a target format (pdf, png, docx…) or a tool slug (compress-pdf, merge-pdf…). Saves the result to disk. |
get_status | Check a conversion job by id and download the result when ready (for long jobs like video). |
list_conversions | List supported conversions/tools, optionally filtered by an input format. |
check_credits | Show remaining credits and how to get more. |
"Compress
~/Documents/report.pdf." →convert_file(input: "~/Documents/report.pdf", to: "compress-pdf")
"Convert
invoice.docxto PDF." →convert_file(input: "invoice.docx", to: "pdf")
"Merge
a.pdfandb.pdfinto one." →convert_file(input: ["a.pdf", "b.pdf"], to: "merge-pdf")
"Password-protect this PDF with
hunter2." →convert_file(input: "secret.pdf", to: "protect-pdf", options: { password: "hunter2" })
"Save this web page as a PDF: https://example.com" →
convert_file(input: "https://example.com", to: "url-to-pdf")
Each tool costs a few credits. Free accounts get daily credits (refreshed every day) and 2 conversions/minute, 10/day. When you run out, the assistant will tell you — you can wait for the daily refresh or top up / upgrade. Conversions run on GuruPDF's servers; files are deleted automatically within an hour.
| Env var | Default | Notes |
|---|---|---|
GURUPDF_API_KEY | — | Required. Your API token from Profile → API tokens. |
GURUPDF_API_URL | https://gurupdf.com/api/v1 | Override only for self-hosted / staging. |
MIT
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Web content fetching and conversion for efficient LLM usage
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.