converteverything-mcp 2.0.1 → 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.
Files changed (3) hide show
  1. package/README.md +30 -20
  2. package/dist/index.js +3 -3
  3. 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
@@ -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 (requires [Silver or Gold subscription](https://converteverything.io/pricing))
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. Subscribe to [Silver or Gold plan](https://converteverything.io/pricing) for API access
91
- 3. Go to [API Keys](https://converteverything.io/api-keys) and create a new key
92
- 4. Copy the key (starts with `ce_`)
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,21 +854,26 @@ Your subscription tier has a daily conversion limit. [Upgrade to Gold](https://c
849
854
 
850
855
  ## Pricing
851
856
 
852
- API access requires a paid subscription. Here's what you get:
853
-
854
- | | **Silver** | **Gold** |
855
- |---|:---:|:---:|
856
- | **Price** | $9.99/mo | $19.99/mo |
857
- | **Conversions/Day** | 100 | **Unlimited** |
858
- | **Max File Size** | 5 GB | 10 GB |
859
- | **File Retention** | 30 days | 60 days |
860
- | **API Access** | | |
861
- | **Priority Queue** | Normal | **High Priority** |
862
- | **Bulk Uploads** | 25 files | 50 files |
863
-
864
- 👉 **[View Full Pricing](https://converteverything.io/pricing)**
865
-
866
- Not ready to commit? The [free tier](https://converteverything.io/register) gives you 5 conversions/day to try it out (web only, no API).
857
+ API access is available to all registered users. Here's what you get:
858
+
859
+ | | **Basic** | **Bronze** | **Silver** | **Gold** |
860
+ |---|:---:|:---:|:---:|:---:|
861
+ | **Price** | Free | $5.99/mo | $9.99/mo | $24.99/mo |
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 |
865
+ | **Max File Size** | 500 MB | 2 GB | 5 GB | 10 GB |
866
+ | **Storage Cap** | 5 GB | 150 GB | 250 GB | 650 GB |
867
+ | **File Retention** | 24 hours | 7 days | 15 days | 30 days |
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 |
873
+
874
+ 👉 **[View Full Pricing](https://converteverything.io/pricing)** | **[Get API Key](https://converteverything.io/api-keys)**
875
+
876
+ **Annual plans save 25%** — Gold annual works out to $18.74/month.
867
877
 
868
878
  ## Development
869
879
 
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. Subscribe to Silver ($9.99/mo) or Gold ($19.99/mo)
114
- 3. Create a key at https://converteverything.io/api-keys
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.1",
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",