mcp-prompt-optimizer 3.1.0 → 3.1.1

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 CHANGED
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
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
+ ## [3.1.1] - 2026-04-10
9
+
10
+ ### Changed
11
+ - 💰 **Pricing Alignment**: Updated README to reflect current subscription tiers and optimization quotas.
12
+ - 📦 **Version Bump**: Incremented version to v3.1.1 to resolve npm publishing conflict with existing v3.1.0 on the registry.
13
+
8
14
  ## [3.0.1] - 2025-12-09
9
15
 
10
16
  ### Fixed
package/README.md CHANGED
@@ -1,6 +1,7 @@
1
- # MCP Prompt Optimizer v3.0.3
1
+ # MCP Prompt Optimizer v3.1.1
2
+
3
+ 🚀 **Professional cloud-based MCP server** for AI-powered prompt optimization with intelligent context detection, template management, team collaboration, and enterprise-grade reliability. Starting at $0/month.
2
4
 
3
- 🚀 **Professional cloud-based MCP server** for AI-powered prompt optimization with intelligent context detection, template management, team collaboration, and enterprise-grade reliability. Starting at $2.99/month.
4
5
 
5
6
  ## ✨ Key Features
6
7
 
@@ -120,7 +121,7 @@ To address this effectively:
120
121
 
121
122
  ## 🧠 AI Context Detection
122
123
 
123
- The server automatically detects your prompt type and routes it to the appropriate optimization template. You can also specify `ai_context` manually in the tool call.
124
+ The server automatically detects your prompt type and routes it to the appropriate optimization template.
124
125
 
125
126
  | Context | `ai_context` value | Example patterns |
126
127
  |---|---|---|
@@ -133,6 +134,11 @@ The server automatically detects your prompt type and routes it to the appropria
133
134
  | Creative writing | `creative_writing` | `story`, `poem`, `script`, `blog`, `copywriting` |
134
135
  | Email & communication | `human_communication` | `email`, `letter`, `memo`, `formal`, `reply` |
135
136
  | Image generation | `image_generation` | `photorealistic`, `midjourney`, `dall-e`, `portrait` |
137
+ | Business & Strategy | `business_strategy` | `market analysis`, `swot`, `business plan` |
138
+ | Technical Strategy | `technical_strategy` | `architecture`, `system design`, `migration plan` |
139
+ | Legal & Compliance | `legal_compliance` | `contract`, `gdpr`, `terms of service`, `audit` |
140
+ | Medical & Health | `medical_healthcare` | `clinical`, `diagnosis`, `treatment`, `hipaa` |
141
+ | Education | `educational_content` | `lesson plan`, `syllabus`, `curriculum`, `quiz` |
136
142
  | General | `general_assistant` | Everything else |
137
143
 
138
144
  ### Image Generation
@@ -308,11 +314,11 @@ Configure custom models in the WebUI and the MCP server uses them automatically.
308
314
 
309
315
  ## 💰 Subscription Plans
310
316
 
311
- | Plan | Price | Optimizations/month | Team members |
312
- |---|---|---|---|
313
- | 🎯 Explorer | $2.99/mo | 5,000 | 1 |
314
- | 🎨 Creator | $25.99/mo | 18,000 | 2 + 3 keys |
315
- | 🚀 Innovator | $69.99/mo | 75,000 | 5 + 10 keys |
317
+ | Plan | Price | Optimizations/month | CE Credits | Team members |
318
+ |---|---|---|---|---|
319
+ | 🎯 Explorer | $2.99/mo | 20 | 5 | 1 |
320
+ | 🎨 Creator | $29/mo | 18,000 | 30 | 2 + 1 key |
321
+ | 🚀 Innovator | $99/mo | 75,000 | Unlimited | 5 + 10 keys |
316
322
 
317
323
  🆓 **Free trial:** 5 optimizations with full feature access.
318
324
 
package/index.js CHANGED
@@ -114,7 +114,9 @@ class MCPPromptOptimizer {
114
114
  type: "string",
115
115
  enum: [
116
116
  "human_communication", "llm_interaction", "image_generation", "technical_automation",
117
- "structured_output", "code_generation", "api_automation"
117
+ "structured_output", "code_generation", "api_automation", "data_analysis",
118
+ "creative_writing", "business_strategy", "technical_strategy", "academic_research",
119
+ "legal_compliance", "medical_healthcare", "educational_content"
118
120
  ],
119
121
  description: "The context for the AI's task (auto-detected if not specified with enhanced detection)"
120
122
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-prompt-optimizer",
3
- "version": "3.1.0",
3
+ "version": "3.1.1",
4
4
  "description": "Professional cloud-based MCP server for AI-powered prompt optimization with intelligent context detection, Bayesian optimization, AG-UI real-time optimization, template auto-save, optimization insights, personal model configuration via WebUI, team collaboration, enterprise-grade features, production resilience, and startup validation. Universal compatibility with Claude Desktop, Cursor, Windsurf, and 17+ MCP clients.",
5
5
  "main": "index.js",
6
6
  "bin": {