@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 +33 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.js +134 -301
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
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