converteverything-mcp 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +668 -0
- package/dist/client.d.ts +129 -0
- package/dist/client.d.ts.map +1 -0
- package/dist/client.js +594 -0
- package/dist/client.js.map +1 -0
- package/dist/index.d.ts +12 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +1063 -0
- package/dist/index.js.map +1 -0
- package/dist/types.d.ts +128 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +169 -0
- package/dist/types.js.map +1 -0
- package/package.json +57 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024 ConvertEverything.io
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,668 @@
|
|
|
1
|
+
# ConvertEverything MCP Server
|
|
2
|
+
|
|
3
|
+
An MCP (Model Context Protocol) server that enables AI assistants like Claude to convert files between 93+ formats using the [ConvertEverything.io](https://converteverything.io) API.
|
|
4
|
+
|
|
5
|
+
> **"Hey Claude, convert this HEIC to JPG"** — it's that simple.
|
|
6
|
+
|
|
7
|
+
## Why ConvertEverything?
|
|
8
|
+
|
|
9
|
+
Tired of sketchy converter websites with popup ads and "premium" upsells? We built [ConvertEverything.io](https://converteverything.io) for developers and power users who want:
|
|
10
|
+
|
|
11
|
+
- **No ads, no BS** — Clean interface, fast conversions
|
|
12
|
+
- **Actually free tier** — 5 conversions/day, no credit card required
|
|
13
|
+
- **Serious file size limits** — Up to 10GB per file (try finding that elsewhere)
|
|
14
|
+
- **Privacy-first** — Files auto-delete, no data mining
|
|
15
|
+
- **API access** — Because you're reading an MCP README, you probably want this
|
|
16
|
+
|
|
17
|
+
## Features
|
|
18
|
+
|
|
19
|
+
- **93+ Supported Formats**: Audio, video, image, document, ebook, data, 3D, font, archive, and CAD files
|
|
20
|
+
- **Simple Integration**: Works with Claude Desktop, Claude Code, and any MCP-compatible client
|
|
21
|
+
- **Conversion Options**: Fine-tune output quality, resolution, bitrate, and more
|
|
22
|
+
- **Secure**: Uses your personal API key, no data stored on third-party servers beyond conversion processing
|
|
23
|
+
|
|
24
|
+
## Popular Conversions
|
|
25
|
+
|
|
26
|
+
Here's what people actually use this for:
|
|
27
|
+
|
|
28
|
+
| From → To | Use Case | Link |
|
|
29
|
+
|-----------|----------|------|
|
|
30
|
+
| HEIC → JPG | iPhone photos for literally anything else | [HEIC to JPG Converter](https://converteverything.io/converter/heic/jpg) |
|
|
31
|
+
| MOV → MP4 | iPhone videos that actually play everywhere | [MOV to MP4 Converter](https://converteverything.io/converter/mov/mp4) |
|
|
32
|
+
| WEBP → PNG | Google's format → universal format | [WEBP to PNG Converter](https://converteverything.io/converter/webp/png) |
|
|
33
|
+
| MKV → MP4 | Plex/streaming compatibility | [MKV to MP4 Converter](https://converteverything.io/converter/mkv/mp4) |
|
|
34
|
+
| FLAC → MP3 | Audiophile → portable | [FLAC to MP3 Converter](https://converteverything.io/converter/flac/mp3) |
|
|
35
|
+
| PDF → DOCX | Edit that "read-only" document | [PDF to Word Converter](https://converteverything.io/converter/pdf/docx) |
|
|
36
|
+
| XLSX → CSV | Excel → everything else | [Excel to CSV Converter](https://converteverything.io/converter/xlsx/csv) |
|
|
37
|
+
| WAV → MP3 | Studio quality → shareable | [WAV to MP3 Converter](https://converteverything.io/converter/wav/mp3) |
|
|
38
|
+
| PNG → ICO | Favicon time | [PNG to ICO Converter](https://converteverything.io/converter/png/ico) |
|
|
39
|
+
| EPUB → PDF | Ebook → printable | [EPUB to PDF Converter](https://converteverything.io/converter/epub/pdf) |
|
|
40
|
+
|
|
41
|
+
Browse all [audio converters](https://converteverything.io/audio-converters), [video converters](https://converteverything.io/video-converters), [image converters](https://converteverything.io/image-converters), and [document converters](https://converteverything.io/document-converters).
|
|
42
|
+
|
|
43
|
+
## Supported Formats
|
|
44
|
+
|
|
45
|
+
| Category | Formats |
|
|
46
|
+
|----------|---------|
|
|
47
|
+
| **Audio** | mp3, wav, flac, aac, ogg, m4a, wma, aiff, midi, opus, ac3, amr, ape |
|
|
48
|
+
| **Video** | mp4, avi, mkv, mov, webm, wmv, flv, m4v, 3gp, ts, vob, mts, mpeg, m2ts, divx |
|
|
49
|
+
| **Image** | jpg, jpeg, png, gif, webp, bmp, tiff, svg, ico, heic |
|
|
50
|
+
| **Document** | pdf, docx, doc, xlsx, xls, pptx, ppt, txt, md, html, rtf, odt |
|
|
51
|
+
| **Ebook** | epub, mobi, azw3 |
|
|
52
|
+
| **Data** | json, csv, xml, yaml, tsv |
|
|
53
|
+
| **3D** | obj, stl, ply, gltf, glb, dae, fbx, 3ds, blend, usdz, step, iges, ifc |
|
|
54
|
+
| **Font** | ttf, otf, woff, woff2, eot |
|
|
55
|
+
| **Archive** | zip, tar, gz, bz2, 7z |
|
|
56
|
+
|
|
57
|
+
## Requirements
|
|
58
|
+
|
|
59
|
+
- Node.js 18 or higher
|
|
60
|
+
- ConvertEverything.io API key (requires [Silver or Gold subscription](https://converteverything.io/pricing))
|
|
61
|
+
|
|
62
|
+
## Installation
|
|
63
|
+
|
|
64
|
+
### From npm (recommended)
|
|
65
|
+
|
|
66
|
+
```bash
|
|
67
|
+
npm install -g converteverything-mcp
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
### From source
|
|
71
|
+
|
|
72
|
+
```bash
|
|
73
|
+
git clone https://github.com/converteverything/converteverything-mcp.git
|
|
74
|
+
cd converteverything-mcp
|
|
75
|
+
npm install
|
|
76
|
+
npm run build
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
## Configuration
|
|
80
|
+
|
|
81
|
+
### 1. Get an API Key
|
|
82
|
+
|
|
83
|
+
1. Sign up at [converteverything.io](https://converteverything.io/register) (it's free)
|
|
84
|
+
2. Subscribe to [Silver or Gold plan](https://converteverything.io/pricing) for API access
|
|
85
|
+
3. Go to [API Keys](https://converteverything.io/api-keys) and create a new key
|
|
86
|
+
4. Copy the key (starts with `ce_`)
|
|
87
|
+
|
|
88
|
+
### 2. Client Configuration
|
|
89
|
+
|
|
90
|
+
<details>
|
|
91
|
+
<summary><b>Claude Desktop</b></summary>
|
|
92
|
+
|
|
93
|
+
**macOS**: `~/Library/Application Support/Claude/claude_desktop_config.json`
|
|
94
|
+
**Windows**: `%APPDATA%\Claude\claude_desktop_config.json`
|
|
95
|
+
|
|
96
|
+
```json
|
|
97
|
+
{
|
|
98
|
+
"mcpServers": {
|
|
99
|
+
"converteverything": {
|
|
100
|
+
"command": "npx",
|
|
101
|
+
"args": ["-y", "converteverything-mcp", "--api-key", "ce_your_api_key_here"]
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
```
|
|
106
|
+
</details>
|
|
107
|
+
|
|
108
|
+
<details>
|
|
109
|
+
<summary><b>Claude Code (Anthropic CLI)</b></summary>
|
|
110
|
+
|
|
111
|
+
Add to `~/.claude/settings.json`:
|
|
112
|
+
|
|
113
|
+
```json
|
|
114
|
+
{
|
|
115
|
+
"mcpServers": {
|
|
116
|
+
"converteverything": {
|
|
117
|
+
"command": "npx",
|
|
118
|
+
"args": ["-y", "converteverything-mcp", "--api-key", "ce_your_api_key_here"]
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
Or add via CLI:
|
|
125
|
+
```bash
|
|
126
|
+
claude mcp add converteverything -- npx -y converteverything-mcp --api-key ce_your_key
|
|
127
|
+
```
|
|
128
|
+
</details>
|
|
129
|
+
|
|
130
|
+
<details>
|
|
131
|
+
<summary><b>Cursor IDE</b></summary>
|
|
132
|
+
|
|
133
|
+
Add to Cursor settings (`~/.cursor/mcp.json`):
|
|
134
|
+
|
|
135
|
+
```json
|
|
136
|
+
{
|
|
137
|
+
"mcpServers": {
|
|
138
|
+
"converteverything": {
|
|
139
|
+
"command": "npx",
|
|
140
|
+
"args": ["-y", "converteverything-mcp", "--api-key", "ce_your_api_key_here"]
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
```
|
|
145
|
+
</details>
|
|
146
|
+
|
|
147
|
+
<details>
|
|
148
|
+
<summary><b>Windsurf (Codeium)</b></summary>
|
|
149
|
+
|
|
150
|
+
Add to `~/.codeium/windsurf/mcp_config.json`:
|
|
151
|
+
|
|
152
|
+
```json
|
|
153
|
+
{
|
|
154
|
+
"mcpServers": {
|
|
155
|
+
"converteverything": {
|
|
156
|
+
"command": "npx",
|
|
157
|
+
"args": ["-y", "converteverything-mcp", "--api-key", "ce_your_api_key_here"]
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
```
|
|
162
|
+
</details>
|
|
163
|
+
|
|
164
|
+
<details>
|
|
165
|
+
<summary><b>Cline (VS Code Extension)</b></summary>
|
|
166
|
+
|
|
167
|
+
Open Cline settings in VS Code and add to MCP Servers:
|
|
168
|
+
|
|
169
|
+
```json
|
|
170
|
+
{
|
|
171
|
+
"converteverything": {
|
|
172
|
+
"command": "npx",
|
|
173
|
+
"args": ["-y", "converteverything-mcp", "--api-key", "ce_your_api_key_here"]
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
```
|
|
177
|
+
</details>
|
|
178
|
+
|
|
179
|
+
<details>
|
|
180
|
+
<summary><b>Zed Editor</b></summary>
|
|
181
|
+
|
|
182
|
+
Add to `~/.config/zed/settings.json`:
|
|
183
|
+
|
|
184
|
+
```json
|
|
185
|
+
{
|
|
186
|
+
"context_servers": {
|
|
187
|
+
"converteverything": {
|
|
188
|
+
"command": {
|
|
189
|
+
"path": "npx",
|
|
190
|
+
"args": ["-y", "converteverything-mcp", "--api-key", "ce_your_api_key_here"]
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
```
|
|
196
|
+
</details>
|
|
197
|
+
|
|
198
|
+
<details>
|
|
199
|
+
<summary><b>Continue.dev</b></summary>
|
|
200
|
+
|
|
201
|
+
Add to `~/.continue/config.json`:
|
|
202
|
+
|
|
203
|
+
```json
|
|
204
|
+
{
|
|
205
|
+
"experimental": {
|
|
206
|
+
"modelContextProtocolServers": [
|
|
207
|
+
{
|
|
208
|
+
"transport": {
|
|
209
|
+
"type": "stdio",
|
|
210
|
+
"command": "npx",
|
|
211
|
+
"args": ["-y", "converteverything-mcp", "--api-key", "ce_your_api_key_here"]
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
]
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
```
|
|
218
|
+
</details>
|
|
219
|
+
|
|
220
|
+
<details>
|
|
221
|
+
<summary><b>Manual / Generic Usage</b></summary>
|
|
222
|
+
|
|
223
|
+
Run directly from the command line:
|
|
224
|
+
|
|
225
|
+
```bash
|
|
226
|
+
# With API key as argument
|
|
227
|
+
npx converteverything-mcp --api-key ce_your_key
|
|
228
|
+
|
|
229
|
+
# With environment variable
|
|
230
|
+
export CONVERTEVERYTHING_API_KEY=ce_your_key
|
|
231
|
+
npx converteverything-mcp
|
|
232
|
+
|
|
233
|
+
# Short form
|
|
234
|
+
npx converteverything-mcp -k ce_your_key
|
|
235
|
+
```
|
|
236
|
+
|
|
237
|
+
For stdio-based integrations, the server communicates via stdin/stdout using the MCP protocol.
|
|
238
|
+
</details>
|
|
239
|
+
|
|
240
|
+
### Alternative: Environment Variables
|
|
241
|
+
|
|
242
|
+
All clients also support passing the API key via environment variable:
|
|
243
|
+
|
|
244
|
+
```json
|
|
245
|
+
{
|
|
246
|
+
"mcpServers": {
|
|
247
|
+
"converteverything": {
|
|
248
|
+
"command": "npx",
|
|
249
|
+
"args": ["-y", "converteverything-mcp"],
|
|
250
|
+
"env": {
|
|
251
|
+
"CONVERTEVERYTHING_API_KEY": "ce_your_api_key_here"
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
```
|
|
257
|
+
|
|
258
|
+
### CLI Options
|
|
259
|
+
|
|
260
|
+
| Option | Short | Description |
|
|
261
|
+
|--------|-------|-------------|
|
|
262
|
+
| `--api-key` | `-k` | Your ConvertEverything.io API key |
|
|
263
|
+
| `--base-url` | `-u` | Custom API URL (for development) |
|
|
264
|
+
| `--help` | `-h` | Show help message and exit |
|
|
265
|
+
| `--version` | `-v` | Show version number and exit |
|
|
266
|
+
|
|
267
|
+
## Available Tools
|
|
268
|
+
|
|
269
|
+
### `get_supported_formats`
|
|
270
|
+
|
|
271
|
+
Get a list of all supported file formats organized by category.
|
|
272
|
+
|
|
273
|
+
```
|
|
274
|
+
User: What formats can you convert?
|
|
275
|
+
Claude: [Uses get_supported_formats] I can convert between 93+ formats including...
|
|
276
|
+
```
|
|
277
|
+
|
|
278
|
+
### `get_usage`
|
|
279
|
+
|
|
280
|
+
Check your current API usage and limits.
|
|
281
|
+
|
|
282
|
+
```
|
|
283
|
+
User: How many conversions do I have left today?
|
|
284
|
+
Claude: [Uses get_usage] You've used 5 of your 100 daily conversions...
|
|
285
|
+
```
|
|
286
|
+
|
|
287
|
+
### `convert_file`
|
|
288
|
+
|
|
289
|
+
Convert a file from one format to another.
|
|
290
|
+
|
|
291
|
+
```
|
|
292
|
+
User: Convert my-video.mov to mp4
|
|
293
|
+
Claude: [Uses convert_file] Starting conversion...
|
|
294
|
+
```
|
|
295
|
+
|
|
296
|
+
**Parameters:**
|
|
297
|
+
- `file_path` (required): Path to the file to convert
|
|
298
|
+
- `target_format` (required): Target format (e.g., "mp3", "pdf", "png")
|
|
299
|
+
- `options` (optional): Conversion settings (see below)
|
|
300
|
+
|
|
301
|
+
### `convert_base64`
|
|
302
|
+
|
|
303
|
+
Convert a file provided as base64 data.
|
|
304
|
+
|
|
305
|
+
**Parameters:**
|
|
306
|
+
- `data` (required): Base64-encoded file data
|
|
307
|
+
- `filename` (required): Original filename with extension
|
|
308
|
+
- `target_format` (required): Target format
|
|
309
|
+
- `options` (optional): Conversion settings
|
|
310
|
+
|
|
311
|
+
### `get_conversion_status`
|
|
312
|
+
|
|
313
|
+
Check the status of an ongoing conversion.
|
|
314
|
+
|
|
315
|
+
```
|
|
316
|
+
User: Is my conversion done yet?
|
|
317
|
+
Claude: [Uses get_conversion_status] Your conversion is complete and ready to download!
|
|
318
|
+
```
|
|
319
|
+
|
|
320
|
+
### `download_file`
|
|
321
|
+
|
|
322
|
+
Download a completed conversion.
|
|
323
|
+
|
|
324
|
+
**Parameters:**
|
|
325
|
+
- `conversion_id` (required): The conversion ID
|
|
326
|
+
- `save_path` (optional): Path to save the file
|
|
327
|
+
|
|
328
|
+
### `list_presets`
|
|
329
|
+
|
|
330
|
+
Get available conversion presets for quick configuration.
|
|
331
|
+
|
|
332
|
+
```
|
|
333
|
+
User: What presets are available?
|
|
334
|
+
Claude: [Uses list_presets] Here are the available presets:
|
|
335
|
+
- web-optimized: Smaller files, fast loading
|
|
336
|
+
- high-quality: Best quality, larger files
|
|
337
|
+
- balanced: Good quality with reasonable size
|
|
338
|
+
...
|
|
339
|
+
```
|
|
340
|
+
|
|
341
|
+
### `batch_convert`
|
|
342
|
+
|
|
343
|
+
Convert multiple files at once.
|
|
344
|
+
|
|
345
|
+
```
|
|
346
|
+
User: Convert all the WAV files in my project to MP3
|
|
347
|
+
Claude: [Uses batch_convert] Converting 5 files to MP3...
|
|
348
|
+
```
|
|
349
|
+
|
|
350
|
+
**Parameters:**
|
|
351
|
+
- `file_paths` (required): Array of file paths to convert
|
|
352
|
+
- `target_format` (required): Target format for all files
|
|
353
|
+
- `preset` (optional): Use a preset (e.g., "web-optimized")
|
|
354
|
+
- `options` (optional): Conversion settings
|
|
355
|
+
|
|
356
|
+
### `wait_for_conversion`
|
|
357
|
+
|
|
358
|
+
Wait for a conversion to complete with progress polling.
|
|
359
|
+
|
|
360
|
+
```
|
|
361
|
+
User: Convert this large video and let me know when it's done
|
|
362
|
+
Claude: [Uses convert_file, then wait_for_conversion] The conversion is now complete!
|
|
363
|
+
```
|
|
364
|
+
|
|
365
|
+
**Parameters:**
|
|
366
|
+
- `conversion_id` (required): The conversion ID to wait for
|
|
367
|
+
- `poll_interval` (optional): Milliseconds between status checks (default: 2000)
|
|
368
|
+
- `timeout` (optional): Max wait time in milliseconds (default: 300000)
|
|
369
|
+
|
|
370
|
+
### `list_conversions`
|
|
371
|
+
|
|
372
|
+
List your recent conversions with pagination.
|
|
373
|
+
|
|
374
|
+
```
|
|
375
|
+
User: Show me my recent conversions
|
|
376
|
+
Claude: [Uses list_conversions] Here are your last 10 conversions...
|
|
377
|
+
```
|
|
378
|
+
|
|
379
|
+
**Parameters:**
|
|
380
|
+
- `page` (optional): Page number (default: 1)
|
|
381
|
+
- `per_page` (optional): Results per page, 1-100 (default: 10)
|
|
382
|
+
|
|
383
|
+
### `cancel_conversion`
|
|
384
|
+
|
|
385
|
+
Delete a conversion and its associated files. Note: In-progress conversions cannot be cancelled.
|
|
386
|
+
|
|
387
|
+
```
|
|
388
|
+
User: Delete that failed conversion
|
|
389
|
+
Claude: [Uses cancel_conversion] Conversion deleted successfully.
|
|
390
|
+
```
|
|
391
|
+
|
|
392
|
+
**Parameters:**
|
|
393
|
+
- `conversion_id` (required): The conversion ID to delete
|
|
394
|
+
|
|
395
|
+
### `get_file_info`
|
|
396
|
+
|
|
397
|
+
Get file metadata before conversion (size, format, MIME type).
|
|
398
|
+
|
|
399
|
+
```
|
|
400
|
+
User: What's the size of this video file?
|
|
401
|
+
Claude: [Uses get_file_info] The file is 1.2 GB, format: MP4, MIME: video/mp4
|
|
402
|
+
```
|
|
403
|
+
|
|
404
|
+
**Parameters:**
|
|
405
|
+
- `file_path` (required): Path to the file to analyze
|
|
406
|
+
|
|
407
|
+
### `estimate_output_size`
|
|
408
|
+
|
|
409
|
+
Estimate the output file size before conversion.
|
|
410
|
+
|
|
411
|
+
```
|
|
412
|
+
User: How big will this WAV be as MP3?
|
|
413
|
+
Claude: [Uses estimate_output_size] Estimated output: ~15 MB (from 150 MB WAV at 128k bitrate)
|
|
414
|
+
```
|
|
415
|
+
|
|
416
|
+
**Parameters:**
|
|
417
|
+
- `file_path` (required): Path to the source file
|
|
418
|
+
- `target_format` (required): Target format
|
|
419
|
+
- `options` (optional): Conversion options that affect size
|
|
420
|
+
- `preset` (optional): Preset name
|
|
421
|
+
|
|
422
|
+
## Conversion Presets
|
|
423
|
+
|
|
424
|
+
Presets provide pre-configured conversion settings optimized for different use cases. Use them with the `preset` parameter in `convert_file`, `convert_base64`, or `batch_convert`.
|
|
425
|
+
|
|
426
|
+
| Preset | Best For | Details |
|
|
427
|
+
|--------|----------|---------|
|
|
428
|
+
| `web-optimized` | Websites, fast loading | Lower bitrates, smaller dimensions, stripped metadata |
|
|
429
|
+
| `high-quality` | Archival, professional use | Maximum quality settings, minimal compression |
|
|
430
|
+
| `smallest-size` | Email attachments, storage | Aggressive compression, smaller output |
|
|
431
|
+
| `balanced` | General purpose | Good quality with reasonable file sizes |
|
|
432
|
+
| `print-ready` | Physical printing | 300 DPI, printer-quality PDF |
|
|
433
|
+
| `archive` | Long-term storage | Lossless where possible, preserves quality |
|
|
434
|
+
|
|
435
|
+
### Preset Example
|
|
436
|
+
|
|
437
|
+
```
|
|
438
|
+
User: Convert my podcast.wav to MP3 for web
|
|
439
|
+
Claude: [Uses convert_file with preset: "web-optimized"]
|
|
440
|
+
Converting with web-optimized settings (128kbps, 44.1kHz stereo)...
|
|
441
|
+
```
|
|
442
|
+
|
|
443
|
+
```
|
|
444
|
+
User: Convert these photos for print
|
|
445
|
+
Claude: [Uses batch_convert with preset: "print-ready"]
|
|
446
|
+
Converting with print-ready settings (300 DPI, maximum quality)...
|
|
447
|
+
```
|
|
448
|
+
|
|
449
|
+
## Conversion Options
|
|
450
|
+
|
|
451
|
+
### Audio Options
|
|
452
|
+
|
|
453
|
+
Perfect for [MP3 conversions](https://converteverything.io/audio-converters), podcasts, and music:
|
|
454
|
+
|
|
455
|
+
```json
|
|
456
|
+
{
|
|
457
|
+
"bitrate": "320k",
|
|
458
|
+
"sample_rate": 48000,
|
|
459
|
+
"channels": 2,
|
|
460
|
+
"normalize": true
|
|
461
|
+
}
|
|
462
|
+
```
|
|
463
|
+
|
|
464
|
+
### Video Options
|
|
465
|
+
|
|
466
|
+
For [video format conversions](https://converteverything.io/video-converters), streaming, and social media:
|
|
467
|
+
|
|
468
|
+
```json
|
|
469
|
+
{
|
|
470
|
+
"resolution": "1920x1080",
|
|
471
|
+
"fps": 30,
|
|
472
|
+
"crf": 23,
|
|
473
|
+
"preset": "medium",
|
|
474
|
+
"audio_bitrate": "192k",
|
|
475
|
+
"remove_audio": false
|
|
476
|
+
}
|
|
477
|
+
```
|
|
478
|
+
|
|
479
|
+
### Image Options
|
|
480
|
+
|
|
481
|
+
For [image conversions](https://converteverything.io/image-converters), web optimization, and print:
|
|
482
|
+
|
|
483
|
+
```json
|
|
484
|
+
{
|
|
485
|
+
"quality": 90,
|
|
486
|
+
"max_dimension": 2048,
|
|
487
|
+
"strip_metadata": true,
|
|
488
|
+
"dpi": 300
|
|
489
|
+
}
|
|
490
|
+
```
|
|
491
|
+
|
|
492
|
+
### Document Options
|
|
493
|
+
|
|
494
|
+
For [PDF conversions](https://converteverything.io/document-converters) and office documents:
|
|
495
|
+
|
|
496
|
+
```json
|
|
497
|
+
{
|
|
498
|
+
"pdf_quality": "printer",
|
|
499
|
+
"page_size": "a4",
|
|
500
|
+
"orientation": "portrait"
|
|
501
|
+
}
|
|
502
|
+
```
|
|
503
|
+
|
|
504
|
+
## MCP Resources
|
|
505
|
+
|
|
506
|
+
The server exposes format documentation as MCP Resources that AI assistants can read to understand supported formats.
|
|
507
|
+
|
|
508
|
+
| Resource URI | Description |
|
|
509
|
+
|--------------|-------------|
|
|
510
|
+
| `converteverything://formats` | Overview of all format categories |
|
|
511
|
+
| `converteverything://formats/audio` | Audio formats (mp3, wav, flac, etc.) |
|
|
512
|
+
| `converteverything://formats/video` | Video formats (mp4, mkv, mov, etc.) |
|
|
513
|
+
| `converteverything://formats/image` | Image formats (jpg, png, webp, etc.) |
|
|
514
|
+
| `converteverything://formats/document` | Document formats (pdf, docx, etc.) |
|
|
515
|
+
| `converteverything://presets` | Available conversion presets |
|
|
516
|
+
| `converteverything://subscription` | Your current tier, limits, and usage |
|
|
517
|
+
|
|
518
|
+
Resources allow AI assistants to have contextual knowledge about supported formats without making API calls.
|
|
519
|
+
|
|
520
|
+
## MCP Prompts
|
|
521
|
+
|
|
522
|
+
Pre-built prompts for common conversion tasks:
|
|
523
|
+
|
|
524
|
+
| Prompt | Description |
|
|
525
|
+
|--------|-------------|
|
|
526
|
+
| `convert-for-web` | Convert files to web-optimized formats |
|
|
527
|
+
| `batch-convert-folder` | Convert all files in a folder |
|
|
528
|
+
| `optimize-images` | Optimize images for web or print |
|
|
529
|
+
| `convert-video-for-streaming` | Convert video to streaming format |
|
|
530
|
+
| `document-to-pdf` | Convert documents to PDF |
|
|
531
|
+
|
|
532
|
+
## Example Conversations
|
|
533
|
+
|
|
534
|
+
### Convert an image
|
|
535
|
+
|
|
536
|
+
```
|
|
537
|
+
User: Convert screenshot.png to a high-quality JPEG
|
|
538
|
+
Claude: I'll convert that PNG to JPEG for you with high quality settings.
|
|
539
|
+
[Uses convert_file with options: {"quality": 95}]
|
|
540
|
+
The conversion is complete! Your file has been converted to JPEG.
|
|
541
|
+
```
|
|
542
|
+
|
|
543
|
+
### Convert a video
|
|
544
|
+
|
|
545
|
+
```
|
|
546
|
+
User: I need to convert this MOV file to MP4 for web use
|
|
547
|
+
Claude: I'll convert your MOV to MP4 with web-optimized settings.
|
|
548
|
+
[Uses convert_file with options: {"crf": 23, "preset": "medium"}]
|
|
549
|
+
Done! The MP4 is ready for download.
|
|
550
|
+
```
|
|
551
|
+
|
|
552
|
+
### Batch conversion
|
|
553
|
+
|
|
554
|
+
```
|
|
555
|
+
User: Convert all the screenshots in ~/Desktop to JPG for the web
|
|
556
|
+
Claude: [Uses batch_convert with preset: "web-optimized"]
|
|
557
|
+
Converting 12 PNG files to JPG with web-optimized settings...
|
|
558
|
+
All 12 conversions started. I'll monitor their progress.
|
|
559
|
+
[Uses wait_for_conversion for each]
|
|
560
|
+
All done! 12 files converted successfully.
|
|
561
|
+
```
|
|
562
|
+
|
|
563
|
+
### Check conversion history
|
|
564
|
+
|
|
565
|
+
```
|
|
566
|
+
User: What did I convert recently?
|
|
567
|
+
Claude: [Uses list_conversions]
|
|
568
|
+
Here are your last 10 conversions:
|
|
569
|
+
1. report.pdf → docx (completed, 2 hours ago)
|
|
570
|
+
2. video.mov → mp4 (completed, yesterday)
|
|
571
|
+
...
|
|
572
|
+
```
|
|
573
|
+
|
|
574
|
+
### Format inquiry
|
|
575
|
+
|
|
576
|
+
```
|
|
577
|
+
User: What video formats can I convert to?
|
|
578
|
+
Claude: [Uses get_supported_formats]
|
|
579
|
+
You can convert to these video formats: mp4, avi, mkv, mov, webm, wmv, flv, m4v, 3gp, ts, vob, mts, mpeg, m2ts, divx
|
|
580
|
+
```
|
|
581
|
+
|
|
582
|
+
## Security
|
|
583
|
+
|
|
584
|
+
This MCP server:
|
|
585
|
+
- Only uses the public ConvertEverything.io API
|
|
586
|
+
- Requires your personal API key (never shared)
|
|
587
|
+
- Validates all file paths to prevent directory traversal
|
|
588
|
+
- Sanitizes filenames before upload
|
|
589
|
+
- Uses HTTPS for all API communication
|
|
590
|
+
- Does not store any files or credentials
|
|
591
|
+
|
|
592
|
+
Your files are:
|
|
593
|
+
- Encrypted in transit (HTTPS/TLS)
|
|
594
|
+
- Processed on ConvertEverything.io servers
|
|
595
|
+
- Automatically deleted after your tier's retention period (6 hours to 60 days)
|
|
596
|
+
|
|
597
|
+
## Troubleshooting
|
|
598
|
+
|
|
599
|
+
### "API key is required"
|
|
600
|
+
|
|
601
|
+
Make sure you've set the `CONVERTEVERYTHING_API_KEY` environment variable in your MCP configuration.
|
|
602
|
+
|
|
603
|
+
### "Invalid API key format"
|
|
604
|
+
|
|
605
|
+
API keys must start with `ce_`. Get your key from [converteverything.io/api-keys](https://converteverything.io/api-keys).
|
|
606
|
+
|
|
607
|
+
### "Unsupported format"
|
|
608
|
+
|
|
609
|
+
Use `get_supported_formats` to see all available formats. Some format combinations may not be supported.
|
|
610
|
+
|
|
611
|
+
### "Daily limit exceeded"
|
|
612
|
+
|
|
613
|
+
Your subscription tier has a daily conversion limit. [Upgrade to Gold](https://converteverything.io/pricing) for unlimited conversions.
|
|
614
|
+
|
|
615
|
+
## Pricing
|
|
616
|
+
|
|
617
|
+
API access requires a paid subscription. Here's what you get:
|
|
618
|
+
|
|
619
|
+
| | **Silver** | **Gold** |
|
|
620
|
+
|---|:---:|:---:|
|
|
621
|
+
| **Price** | $9.99/mo | $19.99/mo |
|
|
622
|
+
| **Conversions/Day** | 100 | **Unlimited** |
|
|
623
|
+
| **Max File Size** | 5 GB | 10 GB |
|
|
624
|
+
| **File Retention** | 30 days | 60 days |
|
|
625
|
+
| **API Access** | ✅ | ✅ |
|
|
626
|
+
| **Priority Queue** | Normal | **High Priority** |
|
|
627
|
+
| **Bulk Uploads** | 25 files | 50 files |
|
|
628
|
+
|
|
629
|
+
👉 **[View Full Pricing](https://converteverything.io/pricing)**
|
|
630
|
+
|
|
631
|
+
Not ready to commit? The [free tier](https://converteverything.io/register) gives you 5 conversions/day to try it out (web only, no API).
|
|
632
|
+
|
|
633
|
+
## Development
|
|
634
|
+
|
|
635
|
+
```bash
|
|
636
|
+
# Clone the repository
|
|
637
|
+
git clone https://github.com/converteverything/converteverything-mcp.git
|
|
638
|
+
cd converteverything-mcp
|
|
639
|
+
|
|
640
|
+
# Install dependencies
|
|
641
|
+
npm install
|
|
642
|
+
|
|
643
|
+
# Build
|
|
644
|
+
npm run build
|
|
645
|
+
|
|
646
|
+
# Run in development mode
|
|
647
|
+
CONVERTEVERYTHING_API_KEY=ce_your_key npm run dev
|
|
648
|
+
```
|
|
649
|
+
|
|
650
|
+
## License
|
|
651
|
+
|
|
652
|
+
MIT License - see [LICENSE](LICENSE) for details.
|
|
653
|
+
|
|
654
|
+
## Links
|
|
655
|
+
|
|
656
|
+
- 🏠 [ConvertEverything.io](https://converteverything.io) — Main site
|
|
657
|
+
- 📖 [API Documentation](https://converteverything.io/docs) — Full API docs
|
|
658
|
+
- 🔑 [Get API Key](https://converteverything.io/api-keys) — Manage your keys
|
|
659
|
+
- 💰 [Pricing](https://converteverything.io/pricing) — Plans & features
|
|
660
|
+
- 🐛 [GitHub Issues](https://github.com/converteverything/converteverything-mcp/issues) — Report bugs
|
|
661
|
+
- 📧 [Contact](https://converteverything.io/contact) — Get in touch
|
|
662
|
+
|
|
663
|
+
---
|
|
664
|
+
|
|
665
|
+
<p align="center">
|
|
666
|
+
<b>Built with 🔧 by the <a href="https://converteverything.io">ConvertEverything.io</a> team</b><br>
|
|
667
|
+
<sub>Because life's too short for format incompatibility.</sub>
|
|
668
|
+
</p>
|