converteverything-mcp 2.0.0 → 2.0.2

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 +248 -13
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -9,7 +9,7 @@ An MCP (Model Context Protocol) server that enables AI assistants like Claude to
9
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
10
 
11
11
  - **No ads, no BS** — Clean interface, fast conversions
12
- - **Actually free tier** — 5 conversions/day, no credit card required
12
+ - **Actually free tier** — 20 conversions/day with free account, no credit card required
13
13
  - **Serious file size limits** — Up to 10GB per file (try finding that elsewhere)
14
14
  - **Privacy-first** — Files auto-delete, no data mining
15
15
  - **API access** — Because you're reading an MCP README, you probably want this
@@ -17,6 +17,10 @@ Tired of sketchy converter websites with popup ads and "premium" upsells? We bui
17
17
  ## Features
18
18
 
19
19
  - **100+ Supported Formats**: Audio, video, image (including RAW camera formats), document, ebook, data, 3D, font, archive, and CAD files
20
+ - **File Compression**: Compress images, videos, and PDFs with quality presets
21
+ - **Archive Creation**: Create ZIP, TAR, 7z archives from multiple files
22
+ - **File Sharing**: Generate shareable links and send files via email
23
+ - **Cloud Import**: Import files from Google Drive, Dropbox, OneDrive, and Box
20
24
  - **Simple Integration**: Works with Claude Desktop, Claude Code, and any MCP-compatible client
21
25
  - **Conversion Options**: Fine-tune output quality, resolution, bitrate, and more
22
26
  - **Secure**: Uses your personal API key, no data stored on third-party servers beyond conversion processing
@@ -421,6 +425,235 @@ Claude: [Uses estimate_output_size] Estimated output: ~15 MB (from 150 MB WAV at
421
425
  - `options` (optional): Conversion options that affect size
422
426
  - `preset` (optional): Preset name
423
427
 
428
+ ---
429
+
430
+ ## Compression Tools
431
+
432
+ ### `compress_image`
433
+
434
+ Compress an image file to reduce file size.
435
+
436
+ ```
437
+ User: Compress this photo to make it smaller for email
438
+ Claude: [Uses compress_image] Compressed from 5.2 MB to 1.1 MB (79% reduction)
439
+ ```
440
+
441
+ **Parameters:**
442
+ - `file_path` (required): Path to the image file
443
+ - `quality` (optional): Quality level 1-100 (default: 80)
444
+ - `max_dimension` (optional): Max width/height in pixels
445
+
446
+ ### `compress_video`
447
+
448
+ Compress a video file to reduce file size.
449
+
450
+ ```
451
+ User: Make this video smaller for uploading
452
+ Claude: [Uses compress_video] Compressed from 500 MB to 85 MB
453
+ ```
454
+
455
+ **Parameters:**
456
+ - `file_path` (required): Path to the video file
457
+ - `crf` (optional): Quality 0-51, lower is better (default: 28)
458
+ - `preset` (optional): Speed preset (ultrafast, fast, medium, slow)
459
+ - `max_resolution` (optional): Max resolution (e.g., "1920x1080", "720p")
460
+ - `remove_audio` (optional): Remove audio track
461
+
462
+ ### `compress_pdf`
463
+
464
+ Compress a PDF file to reduce file size.
465
+
466
+ ```
467
+ User: This PDF is too large to email, can you compress it?
468
+ Claude: [Uses compress_pdf] Compressed from 25 MB to 3.2 MB
469
+ ```
470
+
471
+ **Parameters:**
472
+ - `file_path` (required): Path to the PDF file
473
+ - `quality` (optional): Quality level 1-100 (default: 80)
474
+
475
+ ### `get_compression_usage`
476
+
477
+ Check your compression usage and limits.
478
+
479
+ ```
480
+ User: How many compressions do I have left?
481
+ Claude: [Uses get_compression_usage] You've used 15 of 100 compressions today
482
+ ```
483
+
484
+ ---
485
+
486
+ ## Archive Tools
487
+
488
+ ### `create_archive`
489
+
490
+ Create an archive from multiple files.
491
+
492
+ ```
493
+ User: Zip up all these project files
494
+ Claude: [Uses create_archive] Created project.zip with 12 files (45 MB)
495
+ ```
496
+
497
+ **Parameters:**
498
+ - `file_paths` (required): Array of file paths to include
499
+ - `output_format` (optional): zip, tar, tar.gz, tar.bz2, or 7z (default: zip)
500
+ - `archive_name` (optional): Custom name for the archive
501
+ - `compression_level` (optional): 1-9 (default: 6)
502
+
503
+ ---
504
+
505
+ ## Advanced Conversion Tools
506
+
507
+ ### `reconvert`
508
+
509
+ Re-run a previous conversion with different settings.
510
+
511
+ ```
512
+ User: Can you redo that last conversion but with higher quality?
513
+ Claude: [Uses reconvert] Re-converting with quality set to 95...
514
+ ```
515
+
516
+ **Parameters:**
517
+ - `conversion_id` (required): ID of the previous conversion
518
+ - `target_format` (optional): New target format
519
+ - `options` (optional): New conversion options
520
+
521
+ ### `get_thumbnail`
522
+
523
+ Get a thumbnail preview for a conversion.
524
+
525
+ ```
526
+ User: Show me a preview of that converted image
527
+ Claude: [Uses get_thumbnail] Here's a thumbnail preview...
528
+ ```
529
+
530
+ **Parameters:**
531
+ - `conversion_id` (required): The conversion ID
532
+ - `save_path` (optional): Path to save the thumbnail
533
+
534
+ ### `batch_convert_api`
535
+
536
+ True batch conversion using the API's batch endpoint (more efficient for large batches).
537
+
538
+ ```
539
+ User: Convert all 50 of these files to PDF
540
+ Claude: [Uses batch_convert_api] Batch started with ID batch_abc123...
541
+ ```
542
+
543
+ **Parameters:**
544
+ - `file_paths` (required): Array of file paths
545
+ - `target_format` (required): Target format for all files
546
+ - `options` (optional): Conversion options
547
+
548
+ ### `get_batch_status`
549
+
550
+ Check the status of a batch conversion.
551
+
552
+ ```
553
+ User: How's that batch conversion going?
554
+ Claude: [Uses get_batch_status] 45 of 50 complete, 5 still processing...
555
+ ```
556
+
557
+ **Parameters:**
558
+ - `batch_id` (required): The batch ID
559
+
560
+ ---
561
+
562
+ ## File Sharing Tools
563
+
564
+ ### `list_my_files`
565
+
566
+ List your shareable files.
567
+
568
+ ```
569
+ User: What files do I have available to share?
570
+ Claude: [Uses list_my_files] You have 5 files ready to share...
571
+ ```
572
+
573
+ **Parameters:**
574
+ - `page` (optional): Page number (default: 1)
575
+ - `per_page` (optional): Results per page (default: 20)
576
+
577
+ ### `create_share_link`
578
+
579
+ Create a shareable download link for a file.
580
+
581
+ ```
582
+ User: Generate a link I can share for that converted video
583
+ Claude: [Uses create_share_link] Here's your shareable link: https://converteverything.io/s/abc123
584
+ ```
585
+
586
+ **Parameters:**
587
+ - `conversion_id` (required): The conversion ID
588
+ - `expires_hours` (optional): Hours until link expires (default: 24)
589
+
590
+ ### `share_via_email`
591
+
592
+ Share a file directly via email.
593
+
594
+ ```
595
+ User: Email that PDF to john@example.com
596
+ Claude: [Uses share_via_email] Email sent to john@example.com with download link
597
+ ```
598
+
599
+ **Parameters:**
600
+ - `conversion_id` (required): The conversion ID
601
+ - `recipient_email` (required): Email address to send to
602
+ - `message` (optional): Custom message to include
603
+
604
+ ---
605
+
606
+ ## Cloud Import Tools
607
+
608
+ ### `list_cloud_providers`
609
+
610
+ List available cloud storage providers.
611
+
612
+ ```
613
+ User: What cloud services can I import from?
614
+ Claude: [Uses list_cloud_providers] You can import from Google Drive, Dropbox, OneDrive, and Box
615
+ ```
616
+
617
+ ### `list_cloud_connections`
618
+
619
+ List your connected cloud storage accounts.
620
+
621
+ ```
622
+ User: What cloud accounts do I have connected?
623
+ Claude: [Uses list_cloud_connections] You have Google Drive (user@gmail.com) connected
624
+ ```
625
+
626
+ ### `list_cloud_files`
627
+
628
+ Browse files in a connected cloud storage account.
629
+
630
+ ```
631
+ User: Show me the files in my Google Drive
632
+ Claude: [Uses list_cloud_files] Here are your Google Drive files...
633
+ ```
634
+
635
+ **Parameters:**
636
+ - `connection_id` (required): Cloud connection ID
637
+ - `folder_id` (optional): Folder to browse (root if not specified)
638
+ - `page_token` (optional): For pagination
639
+
640
+ ### `import_from_cloud`
641
+
642
+ Import a file from cloud storage for conversion.
643
+
644
+ ```
645
+ User: Import that video from my Dropbox and convert it to MP4
646
+ Claude: [Uses import_from_cloud, then convert_file] Importing and converting...
647
+ ```
648
+
649
+ **Parameters:**
650
+ - `connection_id` (required): Cloud connection ID
651
+ - `file_id` (required): Cloud file ID
652
+ - `target_format` (optional): Convert immediately after import
653
+ - `options` (optional): Conversion options (if converting)
654
+
655
+ ---
656
+
424
657
  ## Conversion Presets
425
658
 
426
659
  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`.
@@ -616,21 +849,23 @@ Your subscription tier has a daily conversion limit. [Upgrade to Gold](https://c
616
849
 
617
850
  ## Pricing
618
851
 
619
- API access requires a paid subscription. Here's what you get:
852
+ API access requires Silver or Gold subscription. Here's what you get:
620
853
 
621
- | | **Silver** | **Gold** |
622
- |---|:---:|:---:|
623
- | **Price** | $9.99/mo | $19.99/mo |
624
- | **Conversions/Day** | 100 | **Unlimited** |
625
- | **Max File Size** | 5 GB | 10 GB |
626
- | **File Retention** | 30 days | 60 days |
627
- | **API Access** | | |
628
- | **Priority Queue** | Normal | **High Priority** |
629
- | **Bulk Uploads** | 25 files | 50 files |
854
+ | | **Basic** | **Bronze** | **Silver** | **Gold** |
855
+ |---|:---:|:---:|:---:|:---:|
856
+ | **Price** | Free | $5.99/mo | $9.99/mo | $24.99/mo |
857
+ | **Conversions/Day** | 20 | 50 | 100 | **Unlimited** |
858
+ | **Max File Size** | 500 MB | 2 GB | 5 GB | 10 GB |
859
+ | **Storage Cap** | | 150 GB | 250 GB | 650 GB |
860
+ | **File Retention** | 24 hours | 7 days | 15 days | 30 days |
861
+ | **API Access** | | | ✅ 100/day | ✅ Unlimited |
862
+ | **Cloud Import** | | Google, Dropbox | Google, Dropbox | All providers |
863
+ | **Compressions/Day** | 20 | 50 | 100 | Unlimited |
864
+ | **Batch Files** | 5 | 10 | 25 | 50 |
630
865
 
631
- 👉 **[View Full Pricing](https://converteverything.io/pricing)**
866
+ 👉 **[View Full Pricing](https://converteverything.io/pricing)** | **[Get API Key](https://converteverything.io/api-keys)**
632
867
 
633
- Not ready to commit? The [free tier](https://converteverything.io/register) gives you 5 conversions/day to try it out (web only, no API).
868
+ **Annual plans save 25%** Gold annual works out to $18.74/month.
634
869
 
635
870
  ## Development
636
871
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "converteverything-mcp",
3
- "version": "2.0.0",
3
+ "version": "2.0.2",
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",