suparank 1.3.0 → 1.3.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/mcp-client/config.js +10 -5
- package/mcp-client/tools/definitions.js +27 -12
- package/package.json +1 -1
package/mcp-client/config.js
CHANGED
|
@@ -20,12 +20,17 @@ export const API_ENDPOINTS = {
|
|
|
20
20
|
// Session expiration (24 hours)
|
|
21
21
|
export const SESSION_EXPIRY_MS = 24 * 60 * 60 * 1000
|
|
22
22
|
|
|
23
|
-
// Tools that are visible in the MCP tool list
|
|
23
|
+
// Tools that are visible in the MCP tool list (ALL 23 tools)
|
|
24
24
|
export const VISIBLE_TOOLS = [
|
|
25
|
-
//
|
|
26
|
-
'
|
|
27
|
-
|
|
28
|
-
'
|
|
25
|
+
// Prompt Tools (11) - Backend API calls
|
|
26
|
+
'keyword_research', 'seo_strategy', 'topical_map', 'content_calendar',
|
|
27
|
+
'content_write', 'image_prompt', 'internal_links', 'schema_generate',
|
|
28
|
+
'geo_optimize', 'quality_check', 'full_pipeline',
|
|
29
|
+
// Action Tools (4) - Local execution
|
|
30
|
+
'generate_image', 'publish_wordpress', 'publish_ghost', 'send_webhook',
|
|
31
|
+
// Orchestrator Tools (8) - Session management
|
|
32
|
+
'create_content', 'save_content', 'publish_content', 'get_session',
|
|
33
|
+
'remove_article', 'clear_session', 'list_content', 'load_content'
|
|
29
34
|
]
|
|
30
35
|
|
|
31
36
|
// Default stats object
|
|
@@ -659,21 +659,36 @@ OUTCOME: Article loaded into session, ready for optimization or re-publishing.`,
|
|
|
659
659
|
]
|
|
660
660
|
|
|
661
661
|
/**
|
|
662
|
-
*
|
|
662
|
+
* ALL tools visible in the MCP tool list (23 total)
|
|
663
663
|
* MCP protocol requires tools to be listed for clients to call them
|
|
664
664
|
*/
|
|
665
665
|
export const VISIBLE_TOOLS = [
|
|
666
|
-
//
|
|
667
|
-
'
|
|
668
|
-
'
|
|
669
|
-
'
|
|
670
|
-
'
|
|
671
|
-
'
|
|
672
|
-
|
|
673
|
-
//
|
|
666
|
+
// Prompt Tools (11) - Backend API calls
|
|
667
|
+
'keyword_research', // Research keywords for SEO
|
|
668
|
+
'seo_strategy', // Create SEO strategy and content brief
|
|
669
|
+
'topical_map', // Design pillar-cluster content architecture
|
|
670
|
+
'content_calendar', // Create editorial calendar
|
|
671
|
+
'content_write', // Write SEO-optimized articles
|
|
672
|
+
'image_prompt', // Create prompts for AI image generation
|
|
673
|
+
'internal_links', // Develop internal linking plan
|
|
674
|
+
'schema_generate', // Generate Schema.org JSON-LD markup
|
|
675
|
+
'geo_optimize', // Optimize for AI search engines (GEO)
|
|
676
|
+
'quality_check', // Pre-publish quality assurance
|
|
677
|
+
'full_pipeline', // Complete 5-phase content pipeline
|
|
678
|
+
|
|
679
|
+
// Action Tools (4) - Local execution with credentials
|
|
680
|
+
'generate_image', // Generate AI images (fal.ai, Gemini, wiro)
|
|
681
|
+
'publish_wordpress', // Publish to WordPress
|
|
682
|
+
'publish_ghost', // Publish to Ghost CMS
|
|
683
|
+
'send_webhook', // Send to Make.com, n8n, Zapier, Slack
|
|
684
|
+
|
|
685
|
+
// Orchestrator Tools (8) - Workflow management
|
|
686
|
+
'create_content', // Main entry point - 4-phase workflow
|
|
674
687
|
'save_content', // Save article to session
|
|
675
|
-
'
|
|
676
|
-
'
|
|
688
|
+
'publish_content', // Publish saved articles
|
|
689
|
+
'get_session', // View session status
|
|
677
690
|
'remove_article', // Remove article from session
|
|
678
|
-
'clear_session'
|
|
691
|
+
'clear_session', // Clear all session content
|
|
692
|
+
'list_content', // List saved content from disk
|
|
693
|
+
'load_content' // Load past content into session
|
|
679
694
|
]
|