From debea99414895c043f4cd324b19c85047cbf8e6a Mon Sep 17 00:00:00 2001 From: "Jugal D. Bhatt" <55304795+jugaldb@users.noreply.github.com> Date: Wed, 9 Jul 2025 02:57:24 +0530 Subject: [PATCH] change correct separator (#12430) --- litellm/proxy/_experimental/mcp_server/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm/proxy/_experimental/mcp_server/utils.py b/litellm/proxy/_experimental/mcp_server/utils.py index ac969560e7c..241a3e20d3e 100644 --- a/litellm/proxy/_experimental/mcp_server/utils.py +++ b/litellm/proxy/_experimental/mcp_server/utils.py @@ -9,7 +9,7 @@ import importlib LITELLM_MCP_SERVER_NAME = "litellm-mcp-server" LITELLM_MCP_SERVER_VERSION = "1.0.0" LITELLM_MCP_SERVER_DESCRIPTION = "MCP Server for LiteLLM" -MCP_TOOL_PREFIX_SEPARATOR = "/" +MCP_TOOL_PREFIX_SEPARATOR = "-" MCP_TOOL_PREFIX_FORMAT = "{server_name}{separator}{tool_name}" def is_mcp_available() -> bool: