@wisewandtools/mcp-server 2.0.12 โ†’ 2.0.14

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 CHANGED
@@ -445,10 +445,31 @@ All through natural conversation! ๐ŸŽ‰
445
445
  ### ๐Ÿ” Content Discovery & Automation (6 tools)
446
446
 
447
447
  **Content Discovery:**
448
- - `discover_content` - AI-powered content topic and keyword discovery
448
+ - `discover_content` - AI-powered content topic and keyword discovery with automatic project configuration inheritance
449
449
  - `get_discover_result` - Get discovery results and suggestions
450
450
  - `run_discovery` - Execute content discovery process
451
451
 
452
+ #### discover_content - Parameter Inheritance
453
+
454
+ The `apply_project_brief_config` parameter (required, default: `false`) enables automatic inheritance of all project brief settings:
455
+
456
+ **When `apply_project_brief_config: true`:**
457
+ - **Content features**: FAQ, TOC, images, inline images, summaries, info tables, bullet lists, blockquotes
458
+ - **Internal linking**: WordPress links, indexed pages, custom link lists
459
+ - **Style settings**: Persona, colors, formatting preferences
460
+ - **SEO settings**: Keywords, language, country targeting
461
+
462
+ **Example:**
463
+ ```javascript
464
+ mcp__wisewand__discover_content({
465
+ subject: "French cooking techniques",
466
+ project_id: "989a3838-03d2-4dcc-b288-685c421bc112",
467
+ apply_project_brief_config: true, // Inherits all 25+ project settings
468
+ lang: "fr",
469
+ country: "fr"
470
+ })
471
+ ```
472
+
452
473
  **RSS Automation:**
453
474
  - `create_rss_trigger` - Create automated RSS-to-content trigger
454
475
  - `get_rss_trigger` - Get RSS trigger configuration and status
@@ -727,6 +748,17 @@ MIT License - see [LICENSE](LICENSE) file for details
727
748
 
728
749
  ## Changelog
729
750
 
751
+ ### v2.0.12 (2026-02-11) - Production Ready
752
+ - ๐Ÿ› **Fixed**: `apply_project_brief_config` parameter handling in `discover_content`
753
+ - ๐Ÿงน **Cleaned**: Removed debug logging for production
754
+ - โœ… **Verified**: 100% parameter inheritance across all article types
755
+
756
+ ### v2.0.11 (2026-02-09)
757
+ - ๐Ÿ” **Added**: Comprehensive debugging for parameter troubleshooting
758
+
759
+ ### v2.0.10 (2026-02-09)
760
+ - ๐Ÿ”ง **Fixed**: Made `apply_project_brief_config` a required parameter in schema
761
+
730
762
  ### v1.2.0 (2025-09-30) - COMPLETE API COVERAGE
731
763
  - ๐Ÿš€ **COMPLETE**: Added 26 missing MCP tools - now 43 total (100% API coverage)!
732
764
  - โœจ **NEW CATEGORY**: Connections tools (5) - list, get, create, update, delete
package/dist/index.d.ts CHANGED
@@ -296,7 +296,6 @@ declare class WisewandMCPServer {
296
296
  private productPagesHandler;
297
297
  private discoverHandler;
298
298
  private rssHandler;
299
- private updatePostsHandler;
300
299
  private transactionsHandler;
301
300
  private jobsHandler;
302
301
  private resourceHandler;