From 9edd66855f3d58941095793204713fdd025fdd29 Mon Sep 17 00:00:00 2001 From: Ishaan Jaffer Date: Thu, 19 Feb 2026 12:14:13 -0800 Subject: [PATCH] add openapi transport type constant --- ui/litellm-dashboard/src/components/mcp_tools/types.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/litellm-dashboard/src/components/mcp_tools/types.tsx b/ui/litellm-dashboard/src/components/mcp_tools/types.tsx index 8da73efd831..6856322b53f 100644 --- a/ui/litellm-dashboard/src/components/mcp_tools/types.tsx +++ b/ui/litellm-dashboard/src/components/mcp_tools/types.tsx @@ -22,6 +22,7 @@ export const TRANSPORT = { SSE: "sse", HTTP: "http", STDIO: "stdio", + OPENAPI: "openapi", }; export const handleTransport = (transport?: string | null): string => {