From f47387f47bd58f276df0d45b960e2b262079371e Mon Sep 17 00:00:00 2001 From: Nathan Cochran Date: Mon, 22 Jun 2026 16:48:42 -0400 Subject: [PATCH] Disable new ghost-database skill in proxied docs MCP tools --- internal/tiger/cmd/config_test.go | 6 +++--- internal/tiger/config/config.go | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/internal/tiger/cmd/config_test.go b/internal/tiger/cmd/config_test.go index b438c57e..62ed5179 100644 --- a/internal/tiger/cmd/config_test.go +++ b/internal/tiger/cmd/config_test.go @@ -94,7 +94,7 @@ password_storage: pgpass "console_url": "https://console.cloud.tigerdata.com", "gateway_url": "https://console.cloud.tigerdata.com/api", "docs_mcp": "true", - "docs_mcp_url": "https://mcp.tigerdata.com/docs", + "docs_mcp_url": "https://mcp.tigerdata.com/docs?disabled_skills=ghost-database", "service_id": "test-service", "output": "table", "analytics": "false", @@ -144,7 +144,7 @@ password_storage: keyring "console_url": "https://console.cloud.tigerdata.com", "gateway_url": "https://console.cloud.tigerdata.com/api", "docs_mcp": true, - "docs_mcp_url": "https://mcp.tigerdata.com/docs", + "docs_mcp_url": "https://mcp.tigerdata.com/docs?disabled_skills=ghost-database", "service_id": "", "color": true, "output": "json", @@ -201,7 +201,7 @@ password_storage: keyring "console_url": "https://console.cloud.tigerdata.com", "gateway_url": "https://console.cloud.tigerdata.com/api", "docs_mcp": true, - "docs_mcp_url": "https://mcp.tigerdata.com/docs", + "docs_mcp_url": "https://mcp.tigerdata.com/docs?disabled_skills=ghost-database", "service_id": "", "color": true, "output": "yaml", diff --git a/internal/tiger/config/config.go b/internal/tiger/config/config.go index 9bbcad1f..e34a1db9 100644 --- a/internal/tiger/config/config.go +++ b/internal/tiger/config/config.go @@ -61,7 +61,7 @@ const ( DefaultConsoleURL = "https://console.cloud.tigerdata.com" DefaultDebug = false DefaultDocsMCP = true - DefaultDocsMCPURL = "https://mcp.tigerdata.com/docs" + DefaultDocsMCPURL = "https://mcp.tigerdata.com/docs?disabled_skills=ghost-database" DefaultGatewayURL = "https://console.cloud.tigerdata.com/api" DefaultOutput = "table" DefaultPasswordStorage = "keyring"