converteverything-mcp 2.0.2 → 2.0.3
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/README.md +18 -10
- package/dist/index.js +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -63,7 +63,11 @@ Browse all [audio converters](https://converteverything.io/audio-converters), [v
|
|
|
63
63
|
## Requirements
|
|
64
64
|
|
|
65
65
|
- Node.js 18 or higher
|
|
66
|
-
- ConvertEverything.io API key
|
|
66
|
+
- ConvertEverything.io API key — **100% FREE for all registered users!**
|
|
67
|
+
- Free account: 5 API calls/day
|
|
68
|
+
- Bronze ($5.99/mo): 200 API calls/day
|
|
69
|
+
- Silver ($9.99/mo): 400 API calls/day
|
|
70
|
+
- Gold ($24.99/mo): Unlimited API calls
|
|
67
71
|
|
|
68
72
|
## Installation
|
|
69
73
|
|
|
@@ -87,9 +91,10 @@ npm run build
|
|
|
87
91
|
### 1. Get an API Key
|
|
88
92
|
|
|
89
93
|
1. Sign up at [converteverything.io](https://converteverything.io/register) (it's free)
|
|
90
|
-
2.
|
|
91
|
-
3.
|
|
92
|
-
|
|
94
|
+
2. Go to [API Keys](https://converteverything.io/api-keys) and create a new key
|
|
95
|
+
3. Copy the key (starts with `ce_`)
|
|
96
|
+
|
|
97
|
+
> **API access is 100% free!** All registered users get API access. Free tier: 5 calls/day. [Upgrade](https://converteverything.io/pricing) for more.
|
|
93
98
|
|
|
94
99
|
### 2. Client Configuration
|
|
95
100
|
|
|
@@ -849,19 +854,22 @@ Your subscription tier has a daily conversion limit. [Upgrade to Gold](https://c
|
|
|
849
854
|
|
|
850
855
|
## Pricing
|
|
851
856
|
|
|
852
|
-
API access
|
|
857
|
+
API access is available to all registered users. Here's what you get:
|
|
853
858
|
|
|
854
859
|
| | **Basic** | **Bronze** | **Silver** | **Gold** |
|
|
855
860
|
|---|:---:|:---:|:---:|:---:|
|
|
856
861
|
| **Price** | Free | $5.99/mo | $9.99/mo | $24.99/mo |
|
|
857
862
|
| **Conversions/Day** | 20 | 50 | 100 | **Unlimited** |
|
|
863
|
+
| **API Calls/Day** | 5 | 200 | 400 | Unlimited |
|
|
864
|
+
| **API Rate Limit** | 5/min | 30/min | 60/min | 120/min |
|
|
858
865
|
| **Max File Size** | 500 MB | 2 GB | 5 GB | 10 GB |
|
|
859
|
-
| **Storage Cap** |
|
|
866
|
+
| **Storage Cap** | 5 GB | 150 GB | 250 GB | 650 GB |
|
|
860
867
|
| **File Retention** | 24 hours | 7 days | 15 days | 30 days |
|
|
861
|
-
| **
|
|
862
|
-
| **
|
|
863
|
-
| **
|
|
864
|
-
| **
|
|
868
|
+
| **Compressions/Day** | 20 | 50 | Unlimited | Unlimited |
|
|
869
|
+
| **Archives/Day** | 20 | 50 | Unlimited | Unlimited |
|
|
870
|
+
| **Batch Files** | 20 | 50 | 100 | Unlimited |
|
|
871
|
+
| **Webhooks/Day** | — | — | 100 | Unlimited |
|
|
872
|
+
| **Cloud Import** | — | Google, Dropbox | Google, Dropbox | All providers |
|
|
865
873
|
|
|
866
874
|
👉 **[View Full Pricing](https://converteverything.io/pricing)** | **[Get API Key](https://converteverything.io/api-keys)**
|
|
867
875
|
|
package/dist/index.js
CHANGED
|
@@ -108,10 +108,10 @@ EXAMPLES:
|
|
|
108
108
|
npx ${PACKAGE_NAME} --api-key ce_your_key_here
|
|
109
109
|
npx ${PACKAGE_NAME} -k ce_your_key_here
|
|
110
110
|
|
|
111
|
-
GET AN API KEY:
|
|
111
|
+
GET AN API KEY (100% FREE!):
|
|
112
112
|
1. Sign up at https://converteverything.io/register
|
|
113
|
-
2.
|
|
114
|
-
|
|
113
|
+
2. Create a key at https://converteverything.io/api-keys
|
|
114
|
+
(API access is FREE for all registered users!)
|
|
115
115
|
|
|
116
116
|
MORE INFO:
|
|
117
117
|
https://github.com/converteverything/converteverything-mcp
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "converteverything-mcp",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.3",
|
|
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",
|