diff --git a/litellm/proxy/_experimental/mcp_server/server.py b/litellm/proxy/_experimental/mcp_server/server.py index d063363e215..8e4f0492bf7 100644 --- a/litellm/proxy/_experimental/mcp_server/server.py +++ b/litellm/proxy/_experimental/mcp_server/server.py @@ -2710,20 +2710,7 @@ if MCP_AVAILABLE: await server.run(streams[0], streams[1], options) except Exception as session_e: verbose_logger.exception(f"Error in SSE session: {session_e}") - except HTTPException: - raise - except Exception as e: - verbose_logger.exception(f"Error handling MCP request: {e}") - # Instead of re-raising, try to send a graceful error response - try: - # Send a proper HTTP error response instead of letting the exception bubble up - from starlette.responses import JSONResponse - from starlette.status import HTTP_500_INTERNAL_SERVER_ERROR - error_response = JSONResponse( - status_code=HTTP_500_INTERNAL_SERVER_ERROR, - content={"error": "MCP request failed", "details": str(e)}, - ) except HTTPException: raise except Exception as e: