mcp-prompt-optimizer 1.0.1 → 1.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.
- package/CHANGELOG.md +40 -1
- package/README.md +4 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,26 @@ All notable changes to the MCP Prompt Optimizer package will be documented in th
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.0.2] - 2025-06-18
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- **CRITICAL**: Fixed pricing information discrepancy in documentation
|
|
12
|
+
- Corrected subscription tier pricing to match backend implementation
|
|
13
|
+
- Updated rate limit documentation for accuracy
|
|
14
|
+
- Resolved conflicting pricing information between different sources
|
|
15
|
+
- Improved documentation consistency across all package files
|
|
16
|
+
|
|
17
|
+
### Documentation
|
|
18
|
+
- Updated README.md with accurate subscription tiers and pricing
|
|
19
|
+
- Clarified rate limiting structure for all subscription levels
|
|
20
|
+
- Enhanced troubleshooting guide for pricing-related questions
|
|
21
|
+
- Improved consistency between npm package docs and web dashboard
|
|
22
|
+
|
|
23
|
+
### Notes
|
|
24
|
+
- This is a documentation-only update with no functional changes
|
|
25
|
+
- Existing API functionality and rate limits remain unchanged
|
|
26
|
+
- Users should verify current pricing at the web dashboard
|
|
27
|
+
|
|
8
28
|
## [1.0.1] - 2025-06-05
|
|
9
29
|
|
|
10
30
|
### Changed
|
|
@@ -68,11 +88,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
68
88
|
|
|
69
89
|
| Package Version | Backend API Version | Deployment URL |
|
|
70
90
|
|-----------------|--------------------|--------------------|
|
|
91
|
+
| 1.0.2 | v0.2.2+ | https://p01--project-optimizer--fvrdk8m9k9j.code.run |
|
|
71
92
|
| 1.0.1 | v0.2.2+ | https://p01--project-optimizer--fvrdk8m9k9j.code.run |
|
|
72
93
|
| 1.0.0 | v0.2.0+ | Placeholder URL (manual configuration required) |
|
|
73
94
|
|
|
74
95
|
## Migration Guide
|
|
75
96
|
|
|
97
|
+
### From 1.0.1 to 1.0.2
|
|
98
|
+
|
|
99
|
+
No breaking changes. This is a documentation-only update.
|
|
100
|
+
|
|
101
|
+
**Update process:**
|
|
102
|
+
```bash
|
|
103
|
+
# Update the package
|
|
104
|
+
npm update -g mcp-prompt-optimizer
|
|
105
|
+
|
|
106
|
+
# Verify new version
|
|
107
|
+
mcp-prompt-optimizer --version
|
|
108
|
+
|
|
109
|
+
# No configuration changes needed
|
|
110
|
+
```
|
|
111
|
+
|
|
76
112
|
### From 1.0.0 to 1.0.1
|
|
77
113
|
|
|
78
114
|
No breaking changes. The update automatically configures the correct backend URL.
|
|
@@ -95,9 +131,12 @@ npm test
|
|
|
95
131
|
|
|
96
132
|
## Known Issues
|
|
97
133
|
|
|
98
|
-
### 1.0.
|
|
134
|
+
### 1.0.2
|
|
99
135
|
- None known at release time
|
|
100
136
|
|
|
137
|
+
### 1.0.1
|
|
138
|
+
- Pricing documentation inconsistency (fixed in 1.0.2)
|
|
139
|
+
|
|
101
140
|
### 1.0.0
|
|
102
141
|
- Required manual backend URL configuration
|
|
103
142
|
- Placeholder URLs in documentation
|
package/README.md
CHANGED
|
@@ -31,7 +31,7 @@ npm install mcp-prompt-optimizer
|
|
|
31
31
|
### 1. Get Your API Key
|
|
32
32
|
|
|
33
33
|
1. Visit [Prompt Optimizer Dashboard](https://promptoptimizer-blog.vercel.app/dashboard)
|
|
34
|
-
2. Subscribe to Creator ($
|
|
34
|
+
2. Subscribe to Explorer ($2.99/month), Creator ($25.99/month), or Innovator ($69.99/month) plan
|
|
35
35
|
3. Generate your API key from the dashboard
|
|
36
36
|
|
|
37
37
|
### 2. Setup
|
|
@@ -192,9 +192,9 @@ Quota Remaining: 195/200
|
|
|
192
192
|
|
|
193
193
|
## Subscription Tiers
|
|
194
194
|
|
|
195
|
-
- **Explorer** ($
|
|
196
|
-
- **Creator** ($
|
|
197
|
-
- **Innovator** ($
|
|
195
|
+
- **Explorer** ($2.99/month): 5,000 optimizations + 1 API key
|
|
196
|
+
- **Creator** ($25.99/month): 18,000 optimizations + 3 API keys + Template history
|
|
197
|
+
- **Innovator** ($69.99/month): 75,000 optimizations + up to 10 API keys + Advanced analytics
|
|
198
198
|
|
|
199
199
|
## Backend Infrastructure
|
|
200
200
|
|