npm convertica-mcpstdioMITupdated 1mo ago
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.
O que dá para fazer com convertica?
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.
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-mcp
Claude 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 conversion
License and credits
MIT. Not affiliated with Anthropic; "Convertica" is the service behind convertica.net.
Instalação
Adicione convertica ao seu cliente. Escolha o que você usa.
claude mcp add convertica-mcp -- npx -y convertica-mcpcodex mcp add convertica-mcp -- npx -y convertica-mcpamp mcp add convertica-mcp -- npx -y convertica-mcp{
"mcpServers": {
"convertica-mcp": {
"command": "npx",
"args": [
"-y",
"convertica-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"convertica-mcp": {
"command": "npx",
"args": [
"-y",
"convertica-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"convertica-mcp","command":"npx","args":["-y","convertica-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"convertica-mcp": {
"command": "npx",
"args": [
"-y",
"convertica-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"convertica-mcp": {
"command": "npx",
"args": [
"-y",
"convertica-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"convertica-mcp": {
"command": "npx",
"args": [
"-y",
"convertica-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"convertica-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"convertica-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"convertica-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"convertica-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y convertica-mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
Pontuação
39 / 100
Incompleta
- Documentação25/25
- Manutenção16/25
- Confiança16/20
- Capacidade0/15
- Instalação12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 38 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Histórico de versões
| Versões | Publicada |
|---|---|
| 0.1.3Mais recente | 24 de jul. de 2026 |
| 0.1.2 | 17 de jul. de 2026 |