mcp-convertica
OfficialThis server connects your AI assistant to Convertica's file conversion platform, enabling 35+ document and image conversions directly from your AI workflow.
Core Tools:
list_converters– Discover all available conversion tools with their slugs, input fields, and optionsconvert_file– Run any supported conversion on local files, saving results to disk
Supported Conversions:
PDF ↔ Office formats: Convert PDF to/from Word, Excel, and PowerPoint
PDF ↔ Other formats: PDF to/from JPG, HTML, Markdown, Text, and EPUB
PDF → PDF/A: Convert PDFs to archival PDF/A format
Web to PDF: Render HTML files or live URLs as PDFs
PDF manipulation: Merge, split, compress, rotate, crop, watermark, sign, protect, and unlock PDFs
Image conversion: Convert between image formats, optimize images, and convert HEIC photos to JPG, PNG, or PDF
Key Behaviors:
Files are read from and written to your local disk
Results are saved next to the input file by default, or to a custom
output_dirSupports multi-file tools (e.g., merging multiple PDFs) with order-sensitive file input
Supports tool-specific options (e.g., rotation angle, page ranges)
Requires a Convertica API key via the
CONVERTICA_API_KEYenvironment variable
Convertica MCP Server
Convert files without leaving your AI assistant. Connect Claude, Cursor, Windsurf or any MCP client to Convertica and its 35+ document and image conversion tools.
"Convert ~/Downloads/report.pdf to Word"
"Merge these three PDFs and compress the result"
"Turn this HEIC photo into a JPG"
"Render https://example.com as a PDF"MCP tools
The server exposes two tools.
list_converters
Lists all 35+ Convertica converters with their file fields and options. Call this first to find the right tool slug for convert_file. Takes no input.
{ "type": "object", "properties": {} }convert_file
Runs one of convertica.net's 35+ conversion tools on local file(s) and saves the result next to the input (or into output_dir). Requires authentication via the CONVERTICA_API_KEY env var.
{
"type": "object",
"required": ["tool"],
"properties": {
"tool": { "type": "string", "description": "Converter slug from list_converters, e.g. pdf-to-word or pdf-organize/merge" },
"files": { "type": "array", "items": { "type": "string" }, "description": "Absolute paths of input file(s); order matters for multi-file tools" },
"options": { "type": "object", "description": "Tool-specific options as listed by list_converters, e.g. {angle: 90}" },
"output_dir": { "type": "string", "description": "Directory to save the result (default: alongside the first input file)" }
}
}Supported conversions include: PDF ⇄ Word / Excel / PowerPoint / JPG / HTML / Markdown / Text / EPUB, PDF → PDF/A, HTML / URL → PDF, merge / split / compress / rotate / crop / watermark / sign / protect / unlock PDF, image convert / optimize / HEIC → JPG·PNG·PDF, and more. Full list via list_converters or at convertica.net.
Related MCP server: Document Reading and Converter Tool
Setup and API key
You need a Convertica API key: subscribe at convertica.net/pricing, then create a key at convertica.net/users/api-keys. API docs: convertica.net/api/docs.
Claude Code
claude mcp add convertica -e CONVERTICA_API_KEY=cvk_live_... -- npx -y convertica-mcpClaude Desktop / Cursor / Windsurf
{
"mcpServers": {
"convertica": {
"command": "npx",
"args": ["-y", "convertica-mcp"],
"env": { "CONVERTICA_API_KEY": "cvk_live_..." }
}
}
}Usage notes
Files are read from and written to your local disk; results are saved next to the input file unless you pass
output_dir.Conversions run synchronously over HTTPS; processed files are deleted from Convertica's servers right after the response (details).
API calls are metered against your plan's monthly quota; failed calls are not counted.
Local development
npm install
npm run smoke # protocol check, no key needed
CONVERTICA_API_KEY=... npm run smoke # + one real conversionLicense and credits
MIT. Not affiliated with Anthropic; "Convertica" is the service behind convertica.net.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- AlicenseBqualityDmaintenanceAn MCP server that converts Excel and Apple Numbers files to PDF format, enabling AI assistants like Claude to perform file conversion directly through conversation.Last updated2226MIT
- Flicense-qualityDmaintenanceEnables document conversion between PDF, DOCX, and Markdown formats to facilitate reading and editing complex files in AI tools like Claude Desktop or Cursor. It utilizes marker-pdf and pandoc to provide structured text versions of documents, helping to manage context and support unsupported file types.Last updated1
- Flicense-qualityBmaintenanceConverts files (PDF, Word, images, etc.) to Markdown within Claude Desktop to reduce token usage.Last updated

gurupdf-mcpofficial
AlicenseAqualityAmaintenanceConvert, compress, merge, split and OCR PDFs plus 100+ file formats (Word, Excel, images, ebooks, video) right inside your AI agent. Exposes 126 GuruPDF tools over MCP — works with Claude, Cursor, VS Code, Windsurf, or any MCP client.Last updated4701MIT
Related MCP Connectors
Convert files between 690+ formats: image, video, audio, documents, ebooks, archives. Free, no auth.
Use your own Word templates to convert Markdown → DOCX/PDF/HTML from any MCP-compatible AI.
Generate AI images, video, speech, music and presentations from Claude, ChatGPT and Cursor.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/convertica-net/convertica-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server