converteverything-mcp 2.0.4 → 2.0.5

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.
Files changed (2) hide show
  1. package/README.md +18 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -69,6 +69,19 @@ Browse all [audio converters](https://converteverything.io/audio-converters), [v
69
69
  - Silver ($9.99/mo): 400 API calls/day
70
70
  - Gold ($24.99/mo): Unlimited API calls
71
71
 
72
+ ### File Retention
73
+
74
+ Converted files are stored temporarily. Use the `retention_hours` parameter to control how long files are kept:
75
+
76
+ | Tier | Max Retention |
77
+ |------|---------------|
78
+ | Free/Basic | 24 hours |
79
+ | Bronze | 7 days (168 hours) |
80
+ | Silver | 15 days (360 hours) |
81
+ | Gold | 30 days (720 hours) |
82
+
83
+ Default retention is 24 hours if not specified.
84
+
72
85
  ## Installation
73
86
 
74
87
  ### From npm (recommended)
@@ -447,6 +460,7 @@ Claude: [Uses compress_image] Compressed from 5.2 MB to 1.1 MB (79% reduction)
447
460
  - `file_path` (required): Path to the image file
448
461
  - `quality` (optional): Quality level 1-100 (default: 80)
449
462
  - `max_dimension` (optional): Max width/height in pixels
463
+ - `retention_hours` (optional): File retention 1-720 hours (default: 24, max based on tier)
450
464
 
451
465
  ### `compress_video`
452
466
 
@@ -463,6 +477,7 @@ Claude: [Uses compress_video] Compressed from 500 MB to 85 MB
463
477
  - `preset` (optional): Speed preset (ultrafast, fast, medium, slow)
464
478
  - `max_resolution` (optional): Max resolution (e.g., "1920x1080", "720p")
465
479
  - `remove_audio` (optional): Remove audio track
480
+ - `retention_hours` (optional): File retention 1-720 hours (default: 24, max based on tier)
466
481
 
467
482
  ### `compress_pdf`
468
483
 
@@ -475,7 +490,8 @@ Claude: [Uses compress_pdf] Compressed from 25 MB to 3.2 MB
475
490
 
476
491
  **Parameters:**
477
492
  - `file_path` (required): Path to the PDF file
478
- - `quality` (optional): Quality level 1-100 (default: 80)
493
+ - `quality` (optional): Compression quality: low, medium, high (default: medium)
494
+ - `retention_hours` (optional): File retention 1-720 hours (default: 24, max based on tier)
479
495
 
480
496
  ### `get_compression_usage`
481
497
 
@@ -504,6 +520,7 @@ Claude: [Uses create_archive] Created project.zip with 12 files (45 MB)
504
520
  - `output_format` (optional): zip, tar, tar.gz, tar.bz2, or 7z (default: zip)
505
521
  - `archive_name` (optional): Custom name for the archive
506
522
  - `compression_level` (optional): 1-9 (default: 6)
523
+ - `retention_hours` (optional): File retention 1-720 hours (default: 24, max based on tier)
507
524
 
508
525
  ---
509
526
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "converteverything-mcp",
3
- "version": "2.0.4",
3
+ "version": "2.0.5",
4
4
  "description": "MCP server for ConvertEverything.io - Convert, compress, and share files between 100+ formats using AI assistants",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",