
Convertapi
- 29 repo stars
- Updated May 12, 2026
- mcparmory/registry
ConvertAPI is an MCP server that converts documents, PDFs, and images across 500+ formats via ConvertAPI.
About
The ConvertAPI MCP server connects your coding agent to ConvertAPI’s conversion service so you can transform office documents, PDFs, and images without writing one-off scripts for every format pair. developers add it when a product needs user uploads converted server-side or when the agent must produce PDFs and previews during feature work. Install through the MCP registry using stdio with uvx or the published container image; you will need a ConvertAPI secret key. It is a focused task tool for the build integrations shelf, not a full document pipeline framework—pair it with your own storage and auth. The advertised 500+ formats cover most SaaS export and preview needs without maintaining native libraries locally.
- Convert files across 500+ document, PDF, and image formats
- Backed by ConvertAPI via mcparmory-convertapi package v1.0.4
- Stdio MCP with uvx or Docker OCI image deployment
- Useful for onboarding flows, invoicing, and thumbnail generation from agents
- Registry entry from mcparmory/registry on GitHub
Convertapi by the numbers
- Data as of Jul 26, 2026 (Skillselion catalog sync)
claude mcp add mcparmory-convertapi -- uvx mcparmory-convertapiAdd your badge
Show developers this MCP server is listed on Skillselion. Paste this into your README.
| repo stars | ★ 29 |
|---|---|
| Package | mcparmory-convertapi |
| Transport | STDIO |
| Auth | None |
| Last updated | May 12, 2026 |
| Repository | mcparmory/registry ↗ |
What it does
Convert documents, PDFs, and images between formats from your agent during build or export pipelines.
Who is it for?
Best when you're adding upload-to-PDF, image resizing, or office-to-PDF features and already use or can adopt ConvertAPI billing.
Skip if: Purely local offline conversion with no third-party API, or teams with strict no-external-data policies for every file.
What you get
Your agent can request conversions through MCP so uploads and exports work across hundreds of formats with one API integration.
- Agent-invokable conversion across 500+ advertised formats
- Stdio MCP connection to ConvertAPI without custom SDK code in-repo
By the numbers
- 500+ supported conversion formats per server description
- Registry version 1.0.4
- PyPI and OCI Docker distribution options
README.md
MCP Armory Registry
Production-ready MCP servers for popular APIs, generated by MCP Blacksmith.
Servers · Install & Usage · Features · How it works · License
MCP servers that connect AI agents to real-world APIs. Each server is a standalone Python package — generated from the upstream OpenAPI spec using MCP Blacksmith and tested against the live API before release. Hosted on MCP Armory or run independently.
Servers
🧠 AI & Machine Learning ElevenLabs · Linkup · Parallel · Perplexity AI · Ragie · Replicate
📊 Analytics Ahrefs · Datadog · Google Analytics · Google Search Console · Linkly · Mixpanel · PostHog
⛓️ Blockchain & Crypto Alchemy NFT
💼 CRM & Sales Apollo
💬 Communication Atlassian Confluence · Google Gmail · MailerSend · Mailtrap · Postmark · Resend · Slack
🗄️ Data & Databases Enigma · Pinecone
🛠️ Developer Tools AgentQL · Apify · Bitbucket · Bright Data · Browserbase · BuiltWith · Canvas · CircleCI · Codacy · Contentful Management · ConvertAPI · E2B · Firecrawl · GitHub · GitLab · LaunchDarkly · Postman · Scrapingant · Semrush AppCenter · Sentry
📄 Documents & Printing PDF.co
🛒 E-commerce Shopify Admin
💰 Finance Alpha Vantage · Polygon · Ramp
👥 HR & Recruiting BambooHR
☁️ Infrastructure Globalping · Grafana · PagerDuty · Rootly · Runpod
⚖️ Legal & Compliance NetLicensing
🗺️ Maps & Location Google Maps Platform · IP2Location.io IP Geolocation · OpenCage Geocoding
📣 Marketing Customer.io Journeys Track · Klaviyo
🎬 Media & Entertainment Canva · Perigon
✅ Productivity Airtable · Asana · Atlassian Jira · ClickUp · Figma · Google Sheets · Miro · Notion · Outline · Shortcut
🔍 Search Algolia Search · Google Search
📦 Storage Box · Files.com · Google Drive
📌 Other Close
More servers are being added continuously.
Install & Usage
Every server is a standalone PyPI package (mcparmory-<server-name>). Each server's own README.md has full credential setup and configuration instructions.
# With uvx (no install needed)
uvx mcparmory-github
# With pip
pip install mcparmory-github
mcparmory-github
MCP client configuration (Claude Desktop, Cursor, Codex, Claude Code):
{
"mcpServers": {
"github": {
"command": "uvx",
"args": ["mcparmory-github"],
"env": {
"BEARER_TOKEN": "ghp_your_token_here"
}
}
}
}
Features
Every server in this registry provides:
- Full API coverage — all endpoints from the OpenAPI spec are exposed as MCP tools
- Authentication — API key, Bearer token, Basic auth, OAuth2, JWT, OpenID Connect, and mutual TLS
- Multi-auth — servers that support multiple auth methods let you configure whichever you prefer
- Pydantic validation — request parameters are validated before sending to the API
- Resilience — configurable retries with exponential backoff, connection pooling, and timeouts
- Response sanitization — optional redaction of sensitive fields from API responses
How servers are generated
Servers are generated by MCP Blacksmith, an automated pipeline that:
- Parses an OpenAPI specification
- Transforms operations through LLM-driven passes (naming, parameter filtering, enhancement, classification)
- Generates a complete MCP server with auth, models, validation, and configuration
- Tests every tool against the live API using an autonomous agent
- Deploys passing servers to this registry
The generator targets Python 3.11+ and uses FastMCP as the MCP framework.
Contributing
Servers are auto-generated — don't edit server code directly. If you find an issue, open a GitHub Issue describing:
- Broken or deprecated endpoints
- Missing or incorrect parameters
- Authentication problems
- Incorrect request/response models
We'll re-generate the affected server with the fix. To request a new server, open an issue with a link to the API's OpenAPI spec or documentation.
License
Each generated server is released under the MIT License. The underlying APIs have their own terms of service — see individual server READMEs for details.
Recommended MCP Servers
How it compares
Remote conversion MCP bridge, not an on-device LibreOffice or ImageMagick skill.
FAQ
Who is com.mcparmory/convertapi for?
Developers and small teams who want agents to convert user files through ConvertAPI during app build and integration work.
When should I use com.mcparmory/convertapi?
Use it when implementing file upload, export, or preview features that need many format pairs without maintaining local converters.
How do I add com.mcparmory/convertapi to my agent?
Register the MCP server with stdio, launch mcparmory-convertapi via uvx or Docker, and configure your ConvertAPI API key in the environment your client expects.