From 7ac2e590beda842989b89d5ad4433c5db8ba679a Mon Sep 17 00:00:00 2001 From: Ishaan Jaffer Date: Sat, 21 Mar 2026 18:59:20 -0700 Subject: [PATCH] feat(mcp): register LiteLLM_MCPToolsetTable in prisma client initialization --- litellm/proxy/db/prisma_client.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/litellm/proxy/db/prisma_client.py b/litellm/proxy/db/prisma_client.py index c9c0cfe8f68..9de99e70cf4 100644 --- a/litellm/proxy/db/prisma_client.py +++ b/litellm/proxy/db/prisma_client.py @@ -387,7 +387,13 @@ class PrismaManager: else: # Use prisma db push with increased timeout subprocess.run( - ["prisma", "db", "push", "--accept-data-loss"], + [ + "prisma", + "db", + "push", + "--accept-data-loss", + "--skip-generate", + ], timeout=60, check=True, )