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.
@@ -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
- // Essential (5) - Main workflow
26
- 'create_content', 'keyword_research', 'generate_image', 'publish_content', 'get_session',
27
- // Session Management (5) - Content lifecycle
28
- 'save_content', 'list_content', 'load_content', 'remove_article', 'clear_session'
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
- * Essential tools shown in the tool list
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
- // Essential (5) - Main workflow
667
- 'create_content', // Main entry point - creates & publishes automatically
668
- 'keyword_research', // Research keywords separately (on-demand)
669
- 'generate_image', // Generate/regenerate images (on-demand)
670
- 'publish_content', // Manual publish trigger (on-demand)
671
- 'get_session', // Check status (on-demand)
672
-
673
- // Session Management (5) - Content lifecycle
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
- 'list_content', // List saved content
676
- 'load_content', // Load past content into session
688
+ 'publish_content', // Publish saved articles
689
+ 'get_session', // View session status
677
690
  'remove_article', // Remove article from session
678
- 'clear_session' // Clear all session content
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
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "suparank",
3
- "version": "1.3.0",
3
+ "version": "1.3.2",
4
4
  "description": "AI-powered SEO content creation MCP - generate and publish optimized blog posts with your AI assistant",
5
5
  "type": "module",
6
6
  "bin": {