> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mcp-use.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Sse

> SSE connection management for MCP implementations API Documentation

export const RandomGradientBackground = ({className, color, children, grayscaled = false}) => {
  const saturation = useMemo(() => {
    if (color) {
      const values = color.split("(")[1].split(")")[0].trim().split(/\s+/);
      return parseFloat(values[1] || "0");
    }
    return grayscaled ? 0 : 0.2;
  }, [color, grayscaled]);
  const lightness = useMemo(() => {
    if (color) {
      const values = color.split("(")[1].split(")")[0].trim().split(/\s+/);
      return parseFloat(values[0] || "0.5");
    }
    return grayscaled ? 0.3 : 0.4;
  }, [color, grayscaled]);
  const randomHue = useMemo(() => {
    if (color) {
      const values = color.split("(")[1].split(")")[0].trim().split(/\s+/);
      return parseFloat(values[2] || "0");
    }
    return Math.floor(Math.random() * 360);
  }, [color]);
  const randomColor = useMemo(() => {
    if (color) {
      return color;
    }
    return `oklch(${Math.min(lightness, 1)} ${saturation} ${randomHue})`;
  }, [randomHue, saturation, lightness]);
  const lightColor = useMemo(() => {
    return `oklch(${Math.min(lightness * 2, 1)} ${saturation} ${randomHue})`;
  }, [randomHue, saturation, lightness, color]);
  const direction = useMemo(() => {
    return Math.floor(Math.random() * 360);
  }, [randomHue]);
  const brightnessFilter = useMemo(() => {
    return "1000%";
  }, []);
  return <div className={`relative overflow-hidden ${className || ""}`} style={{
    background: `${lightColor}`,
    minHeight: '100%',
    width: '100%'
  }}>
      <div className="absolute inset-0 w-full h-full" style={{
    background: `linear-gradient(${direction}deg, ${randomColor}, transparent), url(https://grainy-gradients.vercel.app/noise.svg)`,
    filter: `contrast(120%) brightness(${brightnessFilter})`,
    backgroundSize: 'cover',
    backgroundRepeat: 'no-repeat'
  }} />
      {children && <div className="relative z-10 w-full h-full">{children}</div>}
    </div>;
};

<Callout type="info" title="Source Code">
  View the source code for this module on GitHub: <a href="https://github.com/mcp-use/mcp-use/blob/main/libraries/python/mcp_use/client/task_managers/sse.py" target="_blank" rel="noopener noreferrer">[https://github.com/mcp-use/mcp-use/blob/main/libraries/python/mcp\_use/client/task\_managers/sse.py](https://github.com/mcp-use/mcp-use/blob/main/libraries/python/mcp_use/client/task_managers/sse.py)</a>
</Callout>

SSE connection management for MCP implementations.

This module provides a connection manager for SSE-based MCP connections
that ensures proper task isolation and resource cleanup.

## SseConnectionManager

<div>
  <RandomGradientBackground className="rounded-lg p-4 w-full h-full rounded-full">
    <div className="text-black">
      <div className="text-black font-bold text-xl mb-2 mt-8"><code className="!text-black">class</code> SseConnectionManager</div>

      Connection manager for SSE-based MCP connections.

      This class handles the proper task isolation for sse\_client context managers
      to prevent the "cancel scope in different task" error. It runs the sse\_client
      in a dedicated task and manages its lifecycle.
    </div>
  </RandomGradientBackground>

  ```python theme={null}
  from mcp_use.client.task_managers.sse import SseConnectionManager
  ```

  <Card type="info">
    ### `method` **init**

    Initialize a new SSE connection manager.

    **Parameters**

    > <ParamField body="url" type="str" required="True">   The SSE endpoint URL </ParamField>
    > <ParamField body="headers" type="dict[str, str] | None" default="None">   Optional HTTP headers </ParamField>
    > <ParamField body="timeout" type="float" default="5">   Timeout for HTTP operations in seconds </ParamField>
    > <ParamField body="sse_read_timeout" type="float" default="300">   Timeout for SSE read operations in seconds </ParamField>
    > <ParamField body="auth" type="httpx.Auth | None" default="None">   Optional httpx.Auth instance for authentication </ParamField>
    > <ParamField body="httpx_client_factory" type="mcp.shared._httpx_utils.McpHttpClientFactory | None" default="None">   Custom HTTPX client factory for MCP </ParamField>

    **Signature**

    ```python wrap theme={null}
    def __init__(url: str, headers: dict[str, str] | None = None, timeout: float = 5, sse_read_timeout: float = 300, auth: httpx.Auth | None = None, httpx_client_factory: mcp.shared._httpx_utils.McpHttpClientFactory | None = None):
    ```
  </Card>
</div>
