ConvertAPI
About
High-Performance File Conversion MCP
Details
- Author
- convertapi
- Categories
- Cloud Service, Other
Jump to
Prefer a Hosted MCP? (No Setup Required)
If you do not want to install .NET or run your own server, you can use thehosted ConvertAPI MCPinstead.
Just configure your MCP client to use the hosted endpoint and provide your ConvertAPI API Token.
{ "mcpServers": { "convertapi": { "url": "https://mcp.convertapi.io", "env": { "CONVERTAPI_TOKEN": "your_api_token_here" } } } }
That’s it. Your AI agent can immediately start converting documents across 200+ formats using structured MCP tool calls.
If you need full control, private networking, or custom deployment, continue with the self-hosted setup.
Dynamically converts files between formats with OpenAPI-driven parameter validation.
- fromFormat(required) - Source format (e.g., "docx", "xlsx", "jpg")
- toFormat(required) - Target format (e.g., "pdf", "png", "html")
- parameters(optional) - Conversion parameters as key-value pairs
- fileParameters(optional) - Files to convert with parameter names
- outputDirectory(optional) - Directory to save converted files (Local mode only)
Convert this Word document to PDF: • From: docx • To: pdf • File: C:\Documents\report.docx • Parameters: PageSize=A4, PageOrientation=portrait
Provides information about ConvertAPI capabilities, supported formats, and usage guidelines.
ConvertAPI supports 200+ file formats across multiple categories:
- Documents: PDF, DOCX, DOC, RTF, TXT, ODT, PAGES
- Spreadsheets: XLSX, XLS, CSV, ODS, NUMBERS
- Presentations: PPTX, PPT, ODP, KEY
- Images: JPG, PNG, GIF, BMP, TIFF, SVG, WEBP, ICO
- Web: HTML, MHTML, MHT
- eBooks: EPUB, MOBI, AZW3
- Archives: ZIP, RAR, 7Z
- And many more...
Depending on the conversion type, you can use parameters such as:
- PDF Options:PageSize,PageOrientation,MarginTop,MarginBottom,MarginLeft,MarginRight
- Image Options:Quality,ImageWidth,ImageHeight,ScaleImage,ScaleProportions
- General:StoreFile,FileName,Timeout
The server automatically validates parameters against ConvertAPI's OpenAPI specification before conversion.
In addition to a self-hosted MCP server, this repository provides a Claude Code plugin that connects Claude to ConvertAPI via MCP.
- Convert files between different formats directly from Claude
- Automate document and image processing, extraxction, and transformations
- "Convert this PDF to DOCX"
- "Merge these PDF files and apply a [Draft] watermark"
- "Redact sensitive financial information on this PDF"
- "Make this PDF print-ready with bleed and cropmarks"
- Install plugin in Claude Code
- Authenticate via OAuth
Contributions are welcome! Please feel free to submit a Pull Request.
This project is licensed under the MIT License - see the LICENSE file for details.
- ConvertAPI Documentation
- Model Context Protocol Specification
- ConvertAPI .NET SDK
- Built with theModelContextProtocol.NETlibrary
- Powered byConvertAPI
- ConvertAPI support:support@convertapi.com
- GitHub Issues:Report an issue
MCP server for BulkRender — generate bulk DOCX and PDF documents from Claude, Cursor, Windsurf, and any MCP-compatible AI assistant
ConvertAPI MCP Hosted Server exposes document converters and tools as discoverable tools for MCP-compatible AI clients using OAuth for authentication.
Analyze files and extract Indicators of Compromise (IOCs) by interacting with the Joe Sandbox Cloud service.
Convert files (DOCX, XLSX, PPTX, images), HTML, and Markdown to pixel-perfect PDFs — npx stdio or hosted Streamable HTTP, free API key in one click.
Automate Affinity Designer tasks like document manipulation, layer management, and exports using AI.
Manipulate Adventure Game Studio (AGS) compiled room (.crm) files to enable AI-powered game development.
MCP server for Audacity 3.x with 131 tools — effects, cleanup, mastering, format conversion, transcription.
Production-grade MCP server that lets AI assistants control AutoCAD on Windows via natural language — draw lines, circles, rectangles, manage layers, calculate areas, and export PDFs through the AutoCAD COM API.
A simple and efficient MCP server for Base64 encoding and decoding of text and images.
MCP server for AI-assisted STEP CAD inspection, geometry queries, PMI hints, and revision comparison
AModel Context Protocol (MCP)server that provides AI assistants with powerful file format conversion capabilities through theConvertAPIservice. Convert documents, images, spreadsheets, presentations, and more between 200+ file formats with OpenAPI-driven parameter validation.
- 🔄Universal File Conversion- Convert between 200+ file formats (PDF, DOCX, XLSX, JPG, PNG, HTML, and more)
- ✅OpenAPI-Driven Validation- Dynamic parameter validation against ConvertAPI's live OpenAPI specification
- 🎯Comprehensive Parameters- Supports all ConvertAPI parameters including PageSize, PageOrientation, Quality, StoreFile, etc.
- 🤖AI-Ready- Seamlessly integrates with Claude Desktop, Cline, and other MCP-compatible AI assistants
- 📦Local- Supports local file operations
- .NET 9.0 SDK or later
- A ConvertAPI account and API Token (Get one free)
Windows (PowerShell):$env:CONVERTAPI_TOKEN = "your_api_token_here" $env:CONVERTAPI_BASE_URI = "https://v2.convertapi.com"
Linux/macOS:export CONVERTAPI_TOKEN="your_api_token_here" export CONVERTAPI_BASE_URI="https://v2.convertapi.com"
Set the following in your application configuration:
Local Mode (with file download):dotnet run --project "CA.MCP.Local"
Add to yourclaude_desktop_config.json:
{ "mcpServers": { "convertapi": { "command": "dotnet", "args": [ "run", "--project", "C:\\Path\\To\\CA.MCP.Local\\CA.MCP.Local.csproj", "--no-build" ], "env": { "CONVERTAPI_TOKEN": "your_api_token_here", "CONVERTAPI_BASE_URI": "https://v2.convertapi.com" } } } }
{ "convertapi": { "command": "dotnet", "args": [ "run", "--project", "/path/to/CA.MCP.Local", "--no-build" ], "env": { "CONVERTAPI_TOKEN": "your_api_token_here", "CONVERTAPI_BASE_URI": "https://v2.convertapi.com" } } }
Prefer a Hosted MCP? (No Setup Required)
If you do not want to install .NET or run your own server, you can use thehosted ConvertAPI MCPinstead.
Just configure your MCP client to use the hosted endpoint and provide your ConvertAPI API Token.
{ "mcpServers": { "convertapi": { "url": "https://mcp.convertapi.io", "env": { "CONVERTAPI_TOKEN": "your_api_token_here" } } } }
That’s it. Your AI agent can immediately start converting documents across 200+ formats using structured MCP tool calls.
If you need full control, private networking, or custom deployment, continue with the self-hosted setup.
Dynamically converts files between formats with OpenAPI-driven parameter validation.
- fromFormat(required) - Source format (e.g., "docx", "xlsx", "jpg")
- toFormat(required) - Target format (e.g., "pdf", "png", "html")
- parameters(optional) - Conversion parameters as key-value pairs
- fileParameters(optional) - Files to convert with parameter names
- outputDirectory(optional) - Directory to save converted files (Local mode only)
Convert this Word document to PDF: • From: docx • To: pdf • File: C:\Documents\report.docx • Parameters: PageSize=A4, PageOrientation=portrait
Provides information about ConvertAPI capabilities, supported formats, and usage guidelines.
ConvertAPI supports 200+ file formats across multiple categories:
- Documents: PDF, DOCX, DOC, RTF, TXT, ODT, PAGES
- Spreadsheets: XLSX, XLS, CSV, ODS, NUMBERS
- Presentations: PPTX, PPT, ODP, KEY
- Images: JPG, PNG, GIF, BMP, TIFF, SVG, WEBP, ICO
- Web: HTML, MHTML, MHT
- eBooks: EPUB, MOBI, AZW3
- Archives: ZIP, RAR, 7Z
- And many more...
Depending on the conversion type, you can use parameters such as:
- PDF Options:PageSize,PageOrientation,MarginTop,MarginBottom,MarginLeft,MarginRight
- Image Options:Quality,ImageWidth,ImageHeight,ScaleImage,ScaleProportions
- General:StoreFile,FileName,Timeout
The server automatically validates parameters against ConvertAPI's OpenAPI specification before conversion.
In addition to a self-hosted MCP server, this repository provides a Claude Code plugin that connects Claude to ConvertAPI via MCP.
- Convert files between different formats directly from Claude
- Automate document and image processing, extraxction, and transformations
- "Convert this PDF to DOCX"
- "Merge these PDF files and apply a [Draft] watermark"
- "Redact sensitive financial information on this PDF"
- "Make this PDF print-ready with bleed and cropmarks"
- Install plugin in Claude Code
- Authenticate via OAuth
Contributions are welcome! Please feel free to submit a Pull Request.
This project is licensed under the MIT License - see the LICENSE file for details.
- ConvertAPI Documentation
- Model Context Protocol Specification
- ConvertAPI .NET SDK
- Built with theModelContextProtocol.NETlibrary
- Powered byConvertAPI
- ConvertAPI support:support@convertapi.com
- GitHub Issues:Report an issue
MCP server for BulkRender — generate bulk DOCX and PDF documents from Claude, Cursor, Windsurf, and any MCP-compatible AI assistant
ConvertAPI MCP Hosted Server exposes document converters and tools as discoverable tools for MCP-compatible AI clients using OAuth for authentication.
Analyze files and extract Indicators of Compromise (IOCs) by interacting with the Joe Sandbox Cloud service.
Convert files (DOCX, XLSX, PPTX, images), HTML, and Markdown to pixel-perfect PDFs — npx stdio or hosted Streamable HTTP, free API key in one click.
Automate Affinity Designer tasks like document manipulation, layer management, and exports using AI.
Manipulate Adventure Game Studio (AGS) compiled room (.crm) files to enable AI-powered game development.
MCP server for Audacity 3.x with 131 tools — effects, cleanup, mastering, format conversion, transcription.
Production-grade MCP server that lets AI assistants control AutoCAD on Windows via natural language — draw lines, circles, rectangles, manage layers, calculate areas, and export PDFs through the AutoCAD COM API.
A simple and efficient MCP server for Base64 encoding and decoding of text and images.
MCP server for AI-assisted STEP CAD inspection, geometry queries, PMI hints, and revision comparison
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.




