From 51457541b06e53e344e87a36853122c5bfdfc3c3 Mon Sep 17 00:00:00 2001 From: Ishaan Jaffer Date: Sat, 4 Oct 2025 12:37:12 -0700 Subject: [PATCH] fix add allowed tools --- .../20251004123655_mcp_allowed_tools_column/migration.sql | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 litellm-proxy-extras/litellm_proxy_extras/migrations/20251004123655_mcp_allowed_tools_column/migration.sql diff --git a/litellm-proxy-extras/litellm_proxy_extras/migrations/20251004123655_mcp_allowed_tools_column/migration.sql b/litellm-proxy-extras/litellm_proxy_extras/migrations/20251004123655_mcp_allowed_tools_column/migration.sql new file mode 100644 index 0000000000..bdac1e42bc --- /dev/null +++ b/litellm-proxy-extras/litellm_proxy_extras/migrations/20251004123655_mcp_allowed_tools_column/migration.sql @@ -0,0 +1,3 @@ +-- AlterTable +ALTER TABLE "LiteLLM_MCPServerTable" ADD COLUMN "allowed_tools" TEXT[] DEFAULT ARRAY[]::TEXT[]; +