mcp-prompt-optimizer 1.0.1 → 1.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/CHANGELOG.md +80 -1
- package/README.md +4 -4
- package/bin/start-server +21 -1
- package/index.js +27 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,45 @@ 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.3] - 2025-06-18
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- **CRITICAL**: Fixed binary execution issue on Windows systems
|
|
12
|
+
- Changed binary configuration to point directly to index.js instead of bin/start-server
|
|
13
|
+
- Resolved issue where global installation commands (--help, --version) failed silently
|
|
14
|
+
- Improved version detection for global installations
|
|
15
|
+
- Fixed Windows batch file generation issues
|
|
16
|
+
|
|
17
|
+
### Improved
|
|
18
|
+
- Enhanced binary path resolution for global installations
|
|
19
|
+
- Added fallback version detection when package.json path resolution fails
|
|
20
|
+
- Better error handling in binary execution
|
|
21
|
+
|
|
22
|
+
### Notes
|
|
23
|
+
- This fix resolves the issue where `mcp-prompt-optimizer --help` and `mcp-prompt-optimizer --version` returned no output
|
|
24
|
+
- Existing functionality remains unchanged
|
|
25
|
+
- No breaking changes to API or configuration
|
|
26
|
+
|
|
27
|
+
## [1.0.2] - 2025-06-18
|
|
28
|
+
|
|
29
|
+
### Fixed
|
|
30
|
+
- **CRITICAL**: Fixed pricing information discrepancy in documentation
|
|
31
|
+
- Corrected subscription tier pricing to match backend implementation
|
|
32
|
+
- Updated rate limit documentation for accuracy
|
|
33
|
+
- Resolved conflicting pricing information between different sources
|
|
34
|
+
- Improved documentation consistency across all package files
|
|
35
|
+
|
|
36
|
+
### Documentation
|
|
37
|
+
- Updated README.md with accurate subscription tiers and pricing
|
|
38
|
+
- Clarified rate limiting structure for all subscription levels
|
|
39
|
+
- Enhanced troubleshooting guide for pricing-related questions
|
|
40
|
+
- Improved consistency between npm package docs and web dashboard
|
|
41
|
+
|
|
42
|
+
### Notes
|
|
43
|
+
- This is a documentation-only update with no functional changes
|
|
44
|
+
- Existing API functionality and rate limits remain unchanged
|
|
45
|
+
- Users should verify current pricing at the web dashboard
|
|
46
|
+
|
|
8
47
|
## [1.0.1] - 2025-06-05
|
|
9
48
|
|
|
10
49
|
### Changed
|
|
@@ -68,11 +107,44 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
68
107
|
|
|
69
108
|
| Package Version | Backend API Version | Deployment URL |
|
|
70
109
|
|-----------------|--------------------|--------------------|
|
|
110
|
+
| 1.0.3 | v0.2.2+ | https://p01--project-optimizer--fvrdk8m9k9j.code.run |
|
|
111
|
+
| 1.0.2 | v0.2.2+ | https://p01--project-optimizer--fvrdk8m9k9j.code.run |
|
|
71
112
|
| 1.0.1 | v0.2.2+ | https://p01--project-optimizer--fvrdk8m9k9j.code.run |
|
|
72
113
|
| 1.0.0 | v0.2.0+ | Placeholder URL (manual configuration required) |
|
|
73
114
|
|
|
74
115
|
## Migration Guide
|
|
75
116
|
|
|
117
|
+
### From 1.0.2 to 1.0.3
|
|
118
|
+
|
|
119
|
+
No breaking changes. This update fixes binary execution issues on Windows systems.
|
|
120
|
+
|
|
121
|
+
**Update process:**
|
|
122
|
+
```bash
|
|
123
|
+
# Update the package
|
|
124
|
+
npm update -g mcp-prompt-optimizer
|
|
125
|
+
|
|
126
|
+
# Verify new version and functionality
|
|
127
|
+
mcp-prompt-optimizer --version
|
|
128
|
+
mcp-prompt-optimizer --help
|
|
129
|
+
|
|
130
|
+
# No configuration changes needed
|
|
131
|
+
```
|
|
132
|
+
|
|
133
|
+
### From 1.0.1 to 1.0.2
|
|
134
|
+
|
|
135
|
+
No breaking changes. This is a documentation-only update.
|
|
136
|
+
|
|
137
|
+
**Update process:**
|
|
138
|
+
```bash
|
|
139
|
+
# Update the package
|
|
140
|
+
npm update -g mcp-prompt-optimizer
|
|
141
|
+
|
|
142
|
+
# Verify new version
|
|
143
|
+
mcp-prompt-optimizer --version
|
|
144
|
+
|
|
145
|
+
# No configuration changes needed
|
|
146
|
+
```
|
|
147
|
+
|
|
76
148
|
### From 1.0.0 to 1.0.1
|
|
77
149
|
|
|
78
150
|
No breaking changes. The update automatically configures the correct backend URL.
|
|
@@ -95,9 +167,16 @@ npm test
|
|
|
95
167
|
|
|
96
168
|
## Known Issues
|
|
97
169
|
|
|
98
|
-
### 1.0.
|
|
170
|
+
### 1.0.3
|
|
99
171
|
- None known at release time
|
|
100
172
|
|
|
173
|
+
### 1.0.2
|
|
174
|
+
- Binary execution issues on Windows (fixed in 1.0.3)
|
|
175
|
+
|
|
176
|
+
### 1.0.1
|
|
177
|
+
- Pricing documentation inconsistency (fixed in 1.0.2)
|
|
178
|
+
- Binary execution issues on Windows (fixed in 1.0.3)
|
|
179
|
+
|
|
101
180
|
### 1.0.0
|
|
102
181
|
- Required manual backend URL configuration
|
|
103
182
|
- 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
|
|
package/bin/start-server
CHANGED
|
@@ -1,2 +1,22 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
|
|
2
|
+
|
|
3
|
+
// More robust binary that handles global installation better
|
|
4
|
+
const path = require('path');
|
|
5
|
+
|
|
6
|
+
// Determine the correct path to index.js
|
|
7
|
+
let indexPath;
|
|
8
|
+
if (__dirname.includes('node_modules')) {
|
|
9
|
+
// Running from global installation
|
|
10
|
+
indexPath = path.join(__dirname, '..', 'index.js');
|
|
11
|
+
} else {
|
|
12
|
+
// Running from local development
|
|
13
|
+
indexPath = path.join(__dirname, '..', 'index.js');
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
try {
|
|
17
|
+
require(indexPath);
|
|
18
|
+
} catch (error) {
|
|
19
|
+
console.error('Failed to start MCP Prompt Optimizer:', error.message);
|
|
20
|
+
console.error('Please try: npm install -g mcp-prompt-optimizer@latest');
|
|
21
|
+
process.exit(1);
|
|
22
|
+
}
|
package/index.js
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
const MCPServer = require('./lib/mcp-protocol');
|
|
4
4
|
const Config = require('./lib/config');
|
|
5
|
+
const path = require('path');
|
|
5
6
|
|
|
6
7
|
async function setup() {
|
|
7
8
|
const readline = require('readline');
|
|
@@ -158,8 +159,32 @@ async function showHelp() {
|
|
|
158
159
|
}
|
|
159
160
|
|
|
160
161
|
async function showVersion() {
|
|
161
|
-
|
|
162
|
-
|
|
162
|
+
try {
|
|
163
|
+
// Try multiple paths to find package.json when installed globally
|
|
164
|
+
let packageJson;
|
|
165
|
+
const possiblePaths = [
|
|
166
|
+
path.join(__dirname, 'package.json'), // Local development
|
|
167
|
+
path.join(__dirname, '..', 'package.json'), // When run from bin/
|
|
168
|
+
path.join(process.cwd(), 'package.json'), // Current directory
|
|
169
|
+
];
|
|
170
|
+
|
|
171
|
+
for (const packagePath of possiblePaths) {
|
|
172
|
+
try {
|
|
173
|
+
packageJson = require(packagePath);
|
|
174
|
+
break;
|
|
175
|
+
} catch (e) {
|
|
176
|
+
continue;
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
if (packageJson && packageJson.version) {
|
|
181
|
+
console.log(`mcp-prompt-optimizer v${packageJson.version}`);
|
|
182
|
+
} else {
|
|
183
|
+
console.log('mcp-prompt-optimizer v1.0.2 (version detection failed)');
|
|
184
|
+
}
|
|
185
|
+
} catch (error) {
|
|
186
|
+
console.log('mcp-prompt-optimizer v1.0.2 (version detection failed)');
|
|
187
|
+
}
|
|
163
188
|
}
|
|
164
189
|
|
|
165
190
|
// Main execution
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-prompt-optimizer",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Local MCP server for Prompt Optimizer API",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"preferGlobal": true,
|
|
7
7
|
"bin": {
|
|
8
|
-
"mcp-prompt-optimizer": "
|
|
8
|
+
"mcp-prompt-optimizer": "index.js"
|
|
9
9
|
},
|
|
10
10
|
"scripts": {
|
|
11
11
|
"start": "node index.js",
|