suparank 1.2.9 → 1.3.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/mcp-client/config.js +10 -5
- 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
|